PageRenderTime 24ms CodeModel.GetById 19ms app.highlight 4ms RepoModel.GetById 0ms app.codeStats 0ms

/guitone-1.0rc5/src/view/dialogs/Dialog.h

#
C Header | 48 lines | 23 code | 8 blank | 17 comment | 0 complexity | 755004bf6266422e0727ef73039920f0 MD5 | raw file
Possible License(s): GPL-3.0
 1/***************************************************************************
 2 *   Copyright (C) 2007 by Thomas Keller                                   *
 3 *   me@thomaskeller.biz                                                   *
 4 *                                                                         *
 5 *   This program is free software; you can redistribute it and/or modify  *
 6 *   it under the terms of the GNU General Public License as published by  *
 7 *   the Free Software Foundation, either version 3 of the License, or     *
 8 *   (at your option) any later version.                                   *
 9 *                                                                         *
10 *   This program is distributed in the hope that it will be useful,       *
11 *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
12 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
13 *   GNU General Public License for more details.                          *
14 *                                                                         *
15 *   You should have received a copy of the GNU General Public License     *
16 *   along with this program.  If not, see <http://www.gnu.org/licenses/>. *
17 ***************************************************************************/
18
19#ifndef DIALOG_H
20#define DIALOG_H
21
22#include <QDialog>
23#include <QHideEvent>
24
25class Dialog : public QDialog
26{
27    Q_OBJECT
28public:
29    Dialog(QWidget *);
30    Dialog(QWidget *, const QString &);
31    ~Dialog();
32    void init();
33    void setStayOnTop();
34    int execDocumentModal();
35
36signals:
37    void dialogHidden();
38
39protected:
40    virtual void hideEvent(QHideEvent *);
41
42private:
43    void restoreState(void);
44    void saveState(void);
45};
46
47#endif
48