mirror of
https://gitgud.io/wackyideas/aerothemeplasma-kde6.git
synced 2024-08-15 00:43:45 +00:00
56 lines
895 B
C
56 lines
895 B
C
|
/*
|
||
|
* SPDX-FileCopyrightText: 2014 Hugo Pereira Da Costa <hugo.pereira@free.fr>
|
||
|
*
|
||
|
* SPDX-License-Identifier: GPL-2.0-or-later
|
||
|
*/
|
||
|
|
||
|
#pragma once
|
||
|
|
||
|
#include <QApplication>
|
||
|
#include <QEvent>
|
||
|
#include <QObject>
|
||
|
|
||
|
#include "breezestyleconfigdata.h"
|
||
|
|
||
|
namespace Breeze
|
||
|
{
|
||
|
class Mnemonics : public QObject
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
//* constructor
|
||
|
explicit Mnemonics(QObject *parent)
|
||
|
: QObject(parent)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
//* set mode
|
||
|
void setMode(int);
|
||
|
|
||
|
//* event filter
|
||
|
bool eventFilter(QObject *, QEvent *) override;
|
||
|
|
||
|
//* true if mnemonics are enabled
|
||
|
bool enabled() const
|
||
|
{
|
||
|
return _enabled;
|
||
|
}
|
||
|
|
||
|
//* alignment flag
|
||
|
int textFlags() const
|
||
|
{
|
||
|
return _enabled ? Qt::TextShowMnemonic : Qt::TextHideMnemonic;
|
||
|
}
|
||
|
|
||
|
protected:
|
||
|
//* set enable state
|
||
|
void setEnabled(bool);
|
||
|
|
||
|
private:
|
||
|
//* enable state
|
||
|
bool _enabled = true;
|
||
|
};
|
||
|
|
||
|
}
|