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.
87 lines
2.8 KiB
87 lines
2.8 KiB
/***************************************************************************
|
|
begin : Tue Mar 11 19:00:00 CET 2003
|
|
copyright : (C) 2003 by Stefan Asserhall
|
|
email : stefan.asserhall@telia.com
|
|
***************************************************************************/
|
|
|
|
/***************************************************************************
|
|
* *
|
|
* 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 KEYDIALOG_H
|
|
#define KEYDIALOG_H
|
|
|
|
#include <tdeversion.h>
|
|
#include <kglobalaccel.h>
|
|
#include <kkeydialog.h>
|
|
|
|
#include <tqhbuttongroup.h>
|
|
#include <tqwidgetstack.h>
|
|
|
|
class KeyDialog : public KDialogBase
|
|
{
|
|
Q_OBJECT
|
|
|
|
|
|
public:
|
|
/**
|
|
* Constructs a KeyDialog called @p name as a child of @p parent.
|
|
*/
|
|
KeyDialog(KGlobalAccel *keys, KActionCollection *actionCollection, TQWidget *parent = 0, const char* name = 0);
|
|
|
|
/**
|
|
* Destructor. Deletes all resources used by a KeyDialog object.
|
|
*/
|
|
virtual ~KeyDialog();
|
|
|
|
/**
|
|
* This is a member function, provided to allow inserting both global
|
|
* accelerators and actions. It behaves essentially like the functions
|
|
* in KKeyDialog.
|
|
*/
|
|
static int configure(KGlobalAccel *keys, KActionCollection *actionCollection, TQWidget *parent = 0);
|
|
|
|
/**
|
|
* This is a member function, provided to create a global accelerator with
|
|
* standard keys. It behaves like the function in KGlobalAccel.
|
|
*/
|
|
static void insert(KGlobalAccel *keys, const TQString &action, const TQString &label,
|
|
const TQObject *objSlot, const char *methodSlot);
|
|
|
|
private:
|
|
|
|
/**
|
|
* Groups of keys that can be selected in the dialog.
|
|
*/
|
|
enum KeyGroup { NoKeys = 0, StandardKeys = 1, MultimediaKeys = 2 };
|
|
|
|
struct KeyInfo {
|
|
TQString action;
|
|
KShortcut shortcut[3][2];
|
|
};
|
|
|
|
void newDialog(KGlobalAccel *keys, KActionCollection *actionCollection, int selectedButton = 0);
|
|
int configure();
|
|
|
|
private slots:
|
|
void slotKeys(int group);
|
|
void slotDefault();
|
|
|
|
private:
|
|
KActionCollection *m_actionCollection;
|
|
KGlobalAccel *m_keys;
|
|
KKeyChooser *m_pKeyChooser;
|
|
TQHButtonGroup *m_group;
|
|
TQWidgetStack *m_widgetStack;
|
|
|
|
static const KeyInfo keyInfo[];
|
|
static const uint keyInfoCount;
|
|
};
|
|
|
|
#endif // KEYDIALOG_H
|