mirror of
https://github.com/linuxdeepin/dde-dock.git
synced 2025-06-04 09:23:03 +00:00
18 lines
275 B
C++
18 lines
275 B
C++
#ifndef PLACEHOLDERITEM_H
|
|
#define PLACEHOLDERITEM_H
|
|
|
|
#include "dockitem.h"
|
|
|
|
class PlaceholderItem : public DockItem
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit PlaceholderItem(QWidget *parent = 0);
|
|
|
|
private:
|
|
void mousePressEvent(QMouseEvent *e);
|
|
};
|
|
|
|
#endif // PLACEHOLDERITEM_H
|