akonadi/clients
connectionpage.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022 #ifndef CONNECTIONPAGE_H
00023 #define CONNECTIONPAGE_H
00024
00025 #include <QtGui/QWidget>
00026
00027 class QTextEdit;
00028
00029 class ConnectionPage : public QWidget
00030 {
00031 Q_OBJECT
00032
00033 public:
00034 explicit ConnectionPage( const QString &identifier, QWidget *parent = 0 );
00035
00036 void showAllConnections( bool );
00037
00038 public Q_SLOTS:
00039 void clear();
00040
00041 private Q_SLOTS:
00042 void connectionDataInput( const QString&, const QString& );
00043 void connectionDataOutput( const QString&, const QString& );
00044
00045 private:
00046 QTextEdit *mDataView;
00047 QString mIdentifier;
00048 bool mShowAllConnections;
00049 };
00050
00051 #endif