AlbumShaper  1.0a3
dialogs/shortcuts.h
Go to the documentation of this file.
1 //==============================================
2 // copyright : (C) 2003-2005 by Will Stokes
3 //==============================================
4 // This program is free software; you can redistribute it
5 // and/or modify it under the terms of the GNU General
6 // Public License as published by the Free Software
7 // Foundation; either version 2 of the License, or
8 // (at your option) any later version.
9 //==============================================
10 
11 #ifndef GUI_DIALOGS_SHORTCUTS_H
12 #define GUI_DIALOGS_SHORTCUTS_H
13 
14 #include <qdialog.h>
15 
16 //=====================================
19 //=====================================
20 
21 //======================
22 class Shortcuts : public QDialog
23 {
24 Q_OBJECT
25 //----------------------
26 public:
27  Shortcuts( QWidget *parent=0, const char* name=0);
28 //----------------------
29 signals:
30  void closed();
31 //----------------------
32 private slots:
33  void reject();
34 //----------------------
35 private:
36  void closeEvent( QCloseEvent* e);
37 //----------------------
38 };
39 //======================
40 
41 #endif //GUI_DIALOGS_SHORTCUTS_H
void closeEvent(QCloseEvent *e)
Shortcuts window widget.
Shortcuts(QWidget *parent=0, const char *name=0)
void closed()