dbusmenu: Add missing methods for getting QDBusPlatformMenu properties
Similar to the existing methods for QDBusPlatformMenuItem. These methods will be needed for implementing the D-Bus platform menu bar. Change-Id: Iae3a5892b71fa9a7c72c323ee4b3ab2afd7d4d76 Reviewed-by: Shawn Rutledge <shawn.rutledge@theqtcompany.com>
This commit is contained in:
parent
3b0c75316c
commit
68f97cdf5f
@ -138,8 +138,11 @@ public:
|
||||
|
||||
const QString text() const { return m_text; }
|
||||
void setText(const QString &text) Q_DECL_OVERRIDE;
|
||||
QIcon icon() const { return m_icon; }
|
||||
void setIcon(const QIcon &icon) Q_DECL_OVERRIDE;
|
||||
bool isEnabled() const { return m_isEnabled; }
|
||||
void setEnabled(bool enabled) Q_DECL_OVERRIDE;
|
||||
bool isVisible() const { return m_isVisible; }
|
||||
void setVisible(bool visible) Q_DECL_OVERRIDE;
|
||||
void setMinimumWidth(int width) Q_DECL_OVERRIDE { Q_UNUSED(width); }
|
||||
void setFont(const QFont &font) Q_DECL_OVERRIDE { Q_UNUSED(font); }
|
||||
|
Loading…
Reference in New Issue
Block a user