LMMS
Loading...
Searching...
No Matches
ActionGroup.h
Go to the documentation of this file.
1/*
2 * ActionGroup.h - wrapper around QActionGroup to provide a more useful triggered(int) slot
3 *
4 * Copyright (c) 2014 Lukas W <lukaswhl/at/gmail.com>
5 *
6 * This file is part of LMMS - https://lmms.io
7 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public
10 * License as published by the Free Software Foundation; either
11 * version 2 of the License, or (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public
19 * License along with this program (see COPYING); if not, write to the
20 * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
21 * Boston, MA 02110-1301 USA.
22 *
23 */
24
25#ifndef LMMS_GUI_ACTION_GROUP_H
26#define LMMS_GUI_ACTION_GROUP_H
27
28#include <QActionGroup>
29
30namespace lmms::gui
31{
32
38class ActionGroup : public QActionGroup
39{
40 Q_OBJECT
41public:
42 ActionGroup(QObject* parent);
43
44 QAction* addAction(QAction *a);
45 QAction* addAction(const QString &text);
46 QAction* addAction(const QIcon &icon, const QString &text);
47
48signals:
50 void triggered(int index);
51
52private slots:
53 void actionTriggered_(QAction* action);
54
55private:
56 QList<QAction*> m_actions;
57};
58
59} // namespace lmms::gui
60
61#endif // LMMS_GUI_ACTION_GROUP_H
uint8_t a
Definition Spc_Cpu.h:141
QAction * addAction(QAction *a)
Definition ActionGroup.cpp:35
QList< QAction * > m_actions
Definition ActionGroup.h:56
ActionGroup(QObject *parent)
Definition ActionGroup.cpp:30
void triggered(int index)
This signal is emitted when the action at the given index is triggered.
void actionTriggered_(QAction *action)
Definition ActionGroup.cpp:52
static uintptr_t parent
Definition pugl.h:1644
Definition AudioPortAudio.cpp:223
const char * text
Definition swell-functions.h:167