You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
547 B
C++
40 lines
547 B
C++
#ifndef DOCK_H
|
|
#define DOCK_H
|
|
|
|
#include <QObject>
|
|
#include <QMetaEnum>
|
|
#include <QMetaType>
|
|
|
|
namespace Latte {
|
|
|
|
class Dock {
|
|
Q_GADGET
|
|
|
|
public:
|
|
Dock() = delete;
|
|
~Dock() {}
|
|
|
|
enum Visibility {
|
|
AlwaysVisible = 0,
|
|
AutoHide,
|
|
DodgeActive,
|
|
DodgeMaximized,
|
|
DodgeAllWindows
|
|
};
|
|
Q_ENUM(Visibility)
|
|
|
|
enum Alignment {
|
|
Center = 0,
|
|
Left,
|
|
Right,
|
|
Top,
|
|
Bottom,
|
|
Double = 10
|
|
};
|
|
Q_ENUM(Alignment)
|
|
|
|
};
|
|
|
|
}//end of namespace
|
|
#endif
|