summaryrefslogtreecommitdiff
path: root/noncore/apps/opie-reader/CloseDialog.h
blob: 54aaf1c246f6bd7962ff0d4e5c93d3dcb44d6522 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
/****************************************************************************
** Form interface generated from reading ui file 'Prefs.ui'
**
** Created: Tue Feb 11 23:53:32 2003
**      by:  The User Interface Compiler (uic)
**
** WARNING! All changes made in this file will be lost!
****************************************************************************/
#ifndef __CLOSEDIALOG_H
#define __CLOSEDIALOG_H

#include <qvariant.h>
#include <qwidget.h>
#include <qtabdialog.h>
#include <qtabwidget.h>
#include <qspinbox.h>
#include <qcheckbox.h>
#include <qcombobox.h>
#include <qlineedit.h>
//#include <qpe/menubutton.h>
#include <qvbuttongroup.h>

class QVBoxLayout; 
class QHBoxLayout; 
class QGridLayout; 
//class QCheckBox;
class QLabel;
//class QSpinBox;

class CCloseDialog : public QDialog
{
Q_OBJECT
    QCheckBox *file, *marks, *config;
#ifndef USEQPE
    void keyPressEvent(QKeyEvent* e)
	{
	    switch (e->key())
	    {
		case Key_Escape:
		    e->accept();
		    reject();
		    break;
		case Key_Space:
		case Key_Return:
		    e->accept();
		    accept();
		    break;
		default:
		    QWidget::keyPressEvent(e);
	    }
	}
#endif
 public:
 CCloseDialog(const QString&, bool fs = true, QWidget* parent = 0, const char* name = 0);
    ~CCloseDialog() {}
    bool delFile() { return file->isChecked(); }
    bool delMarks() { return marks->isChecked(); }
    bool delConfig() { return config->isChecked(); }

};
#endif // CPREFS_H