mirror of
https://bitbucket.org/smil3y/kdelibs.git
synced 2025-02-24 19:02:48 +00:00
28 lines
513 B
C++
28 lines
513 B
C++
#ifndef KSELECTACTION_TEST_H
|
|
#define KSELECTACTION_TEST_H
|
|
|
|
#include <kxmlguiwindow.h>
|
|
|
|
class KCodecAction;
|
|
|
|
class CodecActionTest : public KXmlGuiWindow
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
CodecActionTest(QWidget* parent = 0);
|
|
|
|
public Q_SLOTS:
|
|
void triggered(QAction* action);
|
|
void triggered(int index);
|
|
void triggered(const QString& text);
|
|
void triggered(QTextCodec *codec);
|
|
|
|
void slotActionTriggered(bool state);
|
|
|
|
private:
|
|
KCodecAction* m_comboCodec;
|
|
KCodecAction* m_buttonCodec;
|
|
};
|
|
|
|
#endif
|