You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
1.2 KiB
41 lines
1.2 KiB
/*************************************************************************** |
|
* Copyright (C) 2004-2006 by Albert Astals Cid <aacid@kde.org> * |
|
* * |
|
* This program is free software; you can redistribute it and/or modify * |
|
* it under the terms of the GNU General Public License as published by * |
|
* the Free Software Foundation; either version 2 of the License, or * |
|
* (at your option) any later version. * |
|
***************************************************************************/ |
|
|
|
#ifndef TOOLACTION_H |
|
#define TOOLACTION_H |
|
|
|
#include <qlist.h> |
|
#include <qpointer.h> |
|
|
|
#include <KSelectAction> |
|
|
|
class QToolButton; |
|
|
|
class ToolAction : public KSelectAction |
|
{ |
|
Q_OBJECT |
|
|
|
public: |
|
ToolAction( QObject *parent = 0 ); |
|
virtual ~ToolAction(); |
|
|
|
void addAction( QAction *action ); |
|
|
|
protected: |
|
QWidget* createWidget( QWidget *parent ) Q_DECL_OVERRIDE; |
|
|
|
private slots: |
|
void slotNewDefaultAction( QAction *action ); |
|
|
|
private: |
|
QList< QPointer< QToolButton > > m_buttons; |
|
QList< QAction * > m_actions; |
|
}; |
|
|
|
#endif
|
|
|