2023-02-16 13:51:55 +08:00
|
|
|
// Copyright (C) 2011 ~ 2018 Deepin Technology Co., Ltd.
|
|
|
|
// SPDX-FileCopyrightText: 2018 - 2023 UnionTech Software Technology Co., Ltd.
|
2022-09-06 11:36:55 +08:00
|
|
|
//
|
|
|
|
// SPDX-License-Identifier: LGPL-3.0-or-later
|
2017-09-18 14:33:44 +08:00
|
|
|
|
2016-06-06 11:37:09 +08:00
|
|
|
#ifndef PLACEHOLDERITEM_H
|
|
|
|
#define PLACEHOLDERITEM_H
|
|
|
|
|
|
|
|
#include "dockitem.h"
|
|
|
|
|
|
|
|
class PlaceholderItem : public DockItem
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
explicit PlaceholderItem(QWidget *parent = 0);
|
2016-08-08 09:52:05 +08:00
|
|
|
|
2020-06-13 19:19:30 +08:00
|
|
|
inline ItemType itemType() const override { return Placeholder; }
|
2016-06-06 11:37:09 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // PLACEHOLDERITEM_H
|