aboutsummaryrefslogtreecommitdiffstats
path: root/importdetaildialog.h
diff options
context:
space:
mode:
Diffstat (limited to 'importdetaildialog.h')
-rw-r--r--importdetaildialog.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/importdetaildialog.h b/importdetaildialog.h
index f4d05de..06b8040 100644
--- a/importdetaildialog.h
+++ b/importdetaildialog.h
@@ -37,6 +37,9 @@ class ImportDetailDialog : public QDialog
public:
ImportDetailDialog(GpgME::GpgContext* ctx, KeyList* keyList, gpgme_import_result_t result, QWidget *parent = 0);
+private slots:
+ void showHideDetails();
+
private:
void createGeneralInfoBox();
void createKeyInfoBox();
@@ -45,11 +48,12 @@ private:
KeyList *mKeyList;
QGroupBox *generalInfoBox;
QGroupBox *keyInfoBox;
- QDialogButtonBox *okButtonBox;
QVBoxLayout *mvbox;
+ QPushButton *detailButton;
QGridLayout *generalInfoBoxLayout;
QGridLayout *keyInfoBoxLayout;
gpgme_import_result_t mResult;
+ bool detailsShown;
};
#endif // __IMPORTDETAILSDIALOG_H__