// // KDE Shortcut config module // // Copyright (c) Mark Donohoe 1998 // Copyright (c) Matthias Ettrich 1998 // Converted to generic key configuration module, Duncan Haldane 1998. #ifndef __KEYCONFIG_H__ #define __KEYCONFIG_H__ #include #include #include #include //#include #include class TQCheckBox; class KeyChooserSpec; class KKeyModule : public TQWidget { Q_OBJECT public: KAccelActions actions; //KAccelActions dict; KeyChooserSpec *kc; KKeyModule( TQWidget *parent, bool isGlobal, bool bSeriesOnly, bool bSeriesNone, const char *name = 0 ); KKeyModule( TQWidget *parent, bool isGlobal, const char *name = 0 ); ~KKeyModule (); protected: void init( bool isGlobal, bool bSeriesOnly, bool bSeriesNone ); public: virtual void load(); //virtual void save(); virtual void defaults(); static void init(); bool writeSettings( const TQString& sGroup, KConfig* pConfig ); bool writeSettingsGlobal( const TQString& sGroup ); public slots: //void slotPreviewScheme( int ); //void slotAdd(); //void slotSave(); //void slotRemove(); void slotKeyChange(); void slotPreferMeta(); //void updateKeys( const KAccelActions* map_P ); //void readSchemeNames(); signals: void keyChange(); //void keysChanged( const KAccelActions* map_P ); protected: TQListBox *sList; TQStringList *sFileList; TQPushButton *addBt; TQPushButton *removeBt; TQCheckBox *preferMetaBt; int nSysSchemes; bool bSeriesOnly; void readScheme( int index=0 ); TQString KeyType; TQString KeyScheme; TQString KeySet; }; class KeyChooserSpec : public KKeyChooser { Q_OBJECT public: KeyChooserSpec( KAccelActions& actions, TQWidget* parent, bool bGlobal ); //void updateKeys( const KAccelActions* map_P ); protected: bool m_bGlobal; }; #endif