KIO
pastedialog.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 #ifndef PASTEDIALOG_H
00020 #define PASTEDIALOG_H
00021
00022 #include <kdialog.h>
00023
00024 class KComboBox;
00025 class KLineEdit;
00026 class QLabel;
00027
00028 namespace KIO {
00029
00034 class PasteDialog : public KDialog
00035 {
00036 Q_OBJECT
00037 public:
00038 PasteDialog( const QString &caption, const QString &label,
00039 const QString &value, const QStringList& items,
00040 QWidget *parent, bool clipboard );
00041
00042 QString lineEditText() const;
00043 int comboItem() const;
00044 bool clipboardChanged() const { return m_clipboardChanged; }
00045
00046 private Q_SLOTS:
00047 void slotClipboardDataChanged();
00048
00049 private:
00050 QLabel* m_label;
00051 KLineEdit* m_lineEdit;
00052 KComboBox* m_comboBox;
00053 bool m_clipboardChanged;
00054
00055 class Private;
00056 Private* d;
00057 };
00058
00059 }
00060
00061
00062 #endif
00063