certmanager
certificateinfowidget.h00001
00002
00003
00004
00005
00006
00007
00008
00009 #ifndef CERTIFICATEINFOWIDGET_H
00010 #define CERTIFICATEINFOWIDGET_H
00011
00012 #include <qvariant.h>
00013 #include <qwidget.h>
00014
00015 class QVBoxLayout;
00016 class QHBoxLayout;
00017 class QGridLayout;
00018 class QSpacerItem;
00019 class QFrame;
00020 class QTabWidget;
00021 class QListView;
00022 class QListViewItem;
00023 class QTextEdit;
00024 class QPushButton;
00025 class QLabel;
00026
00027 class CertificateInfoWidget : public QWidget
00028 {
00029 Q_OBJECT
00030
00031 public:
00032 CertificateInfoWidget( QWidget* parent = 0, const char* name = 0, WFlags fl = 0 );
00033 ~CertificateInfoWidget();
00034
00035 QFrame* Frame3;
00036 QTabWidget* tabWidget;
00037 QWidget* tab;
00038 QListView* listView;
00039 QTextEdit* textView;
00040 QWidget* tab_2;
00041 QListView* pathView;
00042 QWidget* dump;
00043 QTextEdit* dumpView;
00044 QPushButton* importButton;
00045 QLabel* TextLabel1;
00046
00047 protected:
00048 QGridLayout* CertificateInfoWidgetLayout;
00049 QSpacerItem* Spacer2;
00050 QGridLayout* tabLayout;
00051 QGridLayout* tabLayout_2;
00052 QVBoxLayout* dumpLayout;
00053
00054 protected slots:
00055 virtual void languageChange();
00056
00057 };
00058
00059 #endif // CERTIFICATEINFOWIDGET_H
|