summaryrefslogtreecommitdiffabout
path: root/pwmanager/pwmanager/configwndimpl.h
Unidiff
Diffstat (limited to 'pwmanager/pwmanager/configwndimpl.h') (more/less context) (ignore whitespace changes)
-rw-r--r--pwmanager/pwmanager/configwndimpl.h55
1 files changed, 55 insertions, 0 deletions
diff --git a/pwmanager/pwmanager/configwndimpl.h b/pwmanager/pwmanager/configwndimpl.h
new file mode 100644
index 0000000..f67f459
--- a/dev/null
+++ b/pwmanager/pwmanager/configwndimpl.h
@@ -0,0 +1,55 @@
1/***************************************************************************
2 * *
3 * copyright (C) 2003 by Michael Buesch *
4 * email: mbuesch@freenet.de *
5 * *
6 * This program is free software; you can redistribute it and/or modify *
7 * it under the terms of the GNU General Public License version 2 *
8 * as published by the Free Software Foundation. *
9 * *
10 ***************************************************************************/
11
12
13/***************************************************************************
14 * copyright (C) 2004 by Ulf Schenk
15 * This file is originaly based on version 1.0.1 of pwmanager
16 * and was modified to run on embedded devices that run microkde
17 *
18 * $Id$
19 **************************************************************************/
20
21#ifndef CONFIGWNDIMPL_H
22#define CONFIGWNDIMPL_H
23
24#include <qfontdialog.h>
25
26#include "configwnd.h"
27
28/** "add" Window */
29class ConfigWndImpl : public configWnd
30{
31 Q_OBJECT
32public:
33 ConfigWndImpl();
34 ~ConfigWndImpl();
35
36 /** currently selected entry-font */
37 QFont currentEntryFont;
38
39 /** gets the content of permissionLineEdit */
40 int getFilePermissions();
41 /** sets the content of permissionLineEdit */
42 void setFilePermissions(int perm);
43
44public slots:
45 /** OK button pressed */
46 void okButton_slot();
47 /** cancel button pressed */
48 void cancelButton_slot();
49 /** browse autostart file button pressed */
50 void browseAutoStButton_slot();
51 /** select entry-font button pressed */
52 void selEntrFontButton_slot();
53};
54
55#endif