//============================================== // copyright : (C) 2003-2005 by Will Stokes //============================================== // 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 GUI_DIALOGS_SHORTCUTS_H #define GUI_DIALOGS_SHORTCUTS_H #include //===================================== /*! \brief Shortcuts window widget */ //===================================== //====================== class Shortcuts : public QDialog { Q_OBJECT //---------------------- public: Shortcuts( QWidget *parent=0, const char* name=0); //---------------------- signals: void closed(); //---------------------- private slots: void reject(); //---------------------- private: void closeEvent( QCloseEvent* e); //---------------------- }; //====================== #endif //GUI_DIALOGS_SHORTCUTS_H