1 /*
2  *  Copyright (C) 2016 Damir Porobic <https://github.com/damirporobic>
3  *
4  * This program is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation; either version 2 of the License, or
7  * (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program; if not, write to the Free Software
16  * Foundation, Inc., 51 Franklin Street, Fifth Floor,
17  * Boston, MA 02110-1301, USA.
18  *
19  */
20 
21 #ifndef CUSTOMTOOLBUTTON_H
22 #define CUSTOMTOOLBUTTON_H
23 
24 #include <QToolButton>
25 #include <QAction>
26 #include <QMenu>
27 
28 class CustomToolButton : public QToolButton
29 {
30     Q_OBJECT
31 public:
32     explicit CustomToolButton(QWidget *parent = 0);
33     void setButtonText(const QString &text);
34 
35 public slots:
36     void setDefaultAction(QAction *action);
37     void trigger();
38     void refreshText();
39 
40 private:
41     QString mButtonText;
42 };
43 
44 class CustomMenu : public QMenu
45 {
46 public:
47     CustomMenu(QWidget *parent = nullptr);
48 
49 protected:
50     virtual void showEvent(QShowEvent *event) override;
51 };
52 
53 #endif // CUSTOMTOOLBUTTON_H
54