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.
47 lines
723 B
C++
47 lines
723 B
C++
/*
|
|
SPDX-FileCopyrightText: 2019 Michail Vourlakos <mvourlakos@gmail.com>
|
|
SPDX-License-Identifier: GPL-2.0-or-later
|
|
*/
|
|
|
|
#ifndef PERSISTENTMENU_H
|
|
#define PERSISTENTMENU_H
|
|
|
|
//Qt
|
|
#include <QMenu>
|
|
#include <QMouseEvent>
|
|
|
|
namespace Latte {
|
|
namespace Settings {
|
|
namespace Layout {
|
|
namespace Delegate {
|
|
|
|
class PersistentMenu : public QMenu
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
PersistentMenu(QWidget *parent = nullptr);
|
|
|
|
int masterIndex() const;
|
|
void setMasterIndex(const int &index);
|
|
|
|
protected:
|
|
void setVisible(bool visible) override;
|
|
void mouseReleaseEvent(QMouseEvent *e) override;
|
|
|
|
signals:
|
|
void masterIndexChanged(const int &masterRow);
|
|
|
|
private:
|
|
bool m_blockHide{false};
|
|
|
|
int m_masterIndex{-1};
|
|
|
|
};
|
|
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
#endif
|