20 lines
323 B
C
20 lines
323 B
C
|
|
#ifndef TOOLBARLOCATION_H
|
|||
|
|
#define TOOLBARLOCATION_H
|
|||
|
|
|
|||
|
|
#include <QString>
|
|||
|
|
|
|||
|
|
class ToolbarLocation {
|
|||
|
|
public:
|
|||
|
|
ToolbarLocation();
|
|||
|
|
ToolbarLocation(QString toolbar, QString group, int position = -1);
|
|||
|
|
|
|||
|
|
bool isEmpty() const;
|
|||
|
|
private:
|
|||
|
|
QString m_toolbar;
|
|||
|
|
QString m_group;
|
|||
|
|
int m_position = -1;
|
|||
|
|
};
|
|||
|
|
|
|||
|
|
|
|||
|
|
#endif // TOOLBARLOCATION_H
|