mirror of
https://github.com/linuxdeepin/dde-dock.git
synced 2025-06-04 09:23:03 +00:00
22 lines
553 B
C++
22 lines
553 B
C++
#ifndef ATTENTIONCONTAINER_H
|
|
#define ATTENTIONCONTAINER_H
|
|
|
|
#include "abstractcontainer.h"
|
|
|
|
class AttentionContainer : public AbstractContainer
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit AttentionContainer(TrayPlugin *trayPlugin, QWidget *parent = nullptr);
|
|
|
|
FashionTrayWidgetWrapper *takeAttentionWrapper();
|
|
|
|
// AbstractContainer interface
|
|
public:
|
|
bool acceptWrapper(FashionTrayWidgetWrapper *wrapper) override;
|
|
void refreshVisible() override;
|
|
void addWrapper(FashionTrayWidgetWrapper *wrapper) override;
|
|
};
|
|
|
|
#endif // ATTENTIONCONTAINER_H
|