fix tricky regression noticed by Vyacheslav Tokarev on Google Reader.
[kdelibs.git] / kio / kio / pastedialog.h
blobab5ee9c898b4d91d6d41c2720e2065edd63d9bd8
1 /* This file is part of the KDE libraries
2 Copyright (C) 2005 David Faure <faure@kde.org>
4 This library is free software; you can redistribute it and/or
5 modify it under the terms of the GNU Library General Public
6 License version 2 as published by the Free Software Foundation.
8 This library is distributed in the hope that it will be useful,
9 but WITHOUT ANY WARRANTY; without even the implied warranty of
10 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 Library General Public License for more details.
13 You should have received a copy of the GNU Library General Public License
14 along with this library; see the file COPYING.LIB. If not, write to
15 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
16 Boston, MA 02110-1301, USA.
19 #ifndef PASTEDIALOG_H
20 #define PASTEDIALOG_H
22 #include <kdialog.h>
24 class KComboBox;
25 class KLineEdit;
26 class QLabel;
28 namespace KIO {
30 /**
31 * @internal
32 * Internal class used by paste.h. DO NOT USE.
34 class PasteDialog : public KDialog
36 Q_OBJECT
37 public:
38 PasteDialog( const QString &caption, const QString &label,
39 const QString &value, const QStringList& items,
40 QWidget *parent, bool clipboard );
42 QString lineEditText() const;
43 int comboItem() const;
44 bool clipboardChanged() const { return m_clipboardChanged; }
46 private Q_SLOTS:
47 void slotClipboardDataChanged();
49 private:
50 QLabel* m_label;
51 KLineEdit* m_lineEdit;
52 KComboBox* m_comboBox;
53 bool m_clipboardChanged;
55 class Private;
56 Private* d;
59 } // namespace
62 #endif /* PASTEDIALOG_H */