diff options
author | nils <nils@34ebc366-c3a9-4b3c-9f84-69acf7962910> | 2011-10-16 00:28:55 +0000 |
---|---|---|
committer | nils <nils@34ebc366-c3a9-4b3c-9f84-69acf7962910> | 2011-10-16 00:28:55 +0000 |
commit | a6c1843ed6e8ec767d49e5206c91d2dcc0ba296f (patch) | |
tree | ff2e45ecd92ab12e616a08998ff9c76cc893b2da /settingsdialog.h | |
parent | overload import function to provide keyserverUrl (diff) | |
download | gpg4usb-a6c1843ed6e8ec767d49e5206c91d2dcc0ba296f.tar.gz gpg4usb-a6c1843ed6e8ec767d49e5206c91d2dcc0ba296f.zip |
added keyservertab to settings
git-svn-id: http://cpunk.de/svn/src/gpg4usb/trunk@553 34ebc366-c3a9-4b3c-9f84-69acf7962910
Diffstat (limited to 'settingsdialog.h')
-rwxr-xr-x | settingsdialog.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/settingsdialog.h b/settingsdialog.h index f7a5d8c..bf98cc1 100755 --- a/settingsdialog.h +++ b/settingsdialog.h @@ -106,6 +106,18 @@ private slots: QCheckBox *windowSizeCheckBox; }; + class KeyserverTab : public QWidget + { + Q_OBJECT + public: + KeyserverTab(QWidget *parent = 0); + void setSettings(); + void applySettings(); + + private: + QComboBox *comboBox; + QLabel *label; +}; class SettingsDialog : public QDialog { @@ -116,6 +128,7 @@ public: GeneralTab *generalTab; MimeTab *mimeTab; AppearanceTab *appearanceTab; + KeyserverTab *keyserverTab; public slots: void accept(); |