AlbumShaper
1.0a3
|
00001 //============================================== 00002 // copyright : (C) 2003-2005 by Will Stokes 00003 //============================================== 00004 // This program is free software; you can redistribute it 00005 // and/or modify it under the terms of the GNU General 00006 // Public License as published by the Free Software 00007 // Foundation; either version 2 of the License, or 00008 // (at your option) any later version. 00009 //============================================== 00010 00011 #ifndef GUI_DIALOGS_SHORTCUTS_H 00012 #define GUI_DIALOGS_SHORTCUTS_H 00013 00014 #include <qdialog.h> 00015 00016 //===================================== 00019 //===================================== 00020 00021 //====================== 00022 class Shortcuts : public QDialog 00023 { 00024 Q_OBJECT 00025 //---------------------- 00026 public: 00027 Shortcuts( QWidget *parent=0, const char* name=0); 00028 //---------------------- 00029 signals: 00030 void closed(); 00031 //---------------------- 00032 private slots: 00033 void reject(); 00034 //---------------------- 00035 private: 00036 void closeEvent( QCloseEvent* e); 00037 //---------------------- 00038 }; 00039 //====================== 00040 00041 #endif //GUI_DIALOGS_SHORTCUTS_H