• Skip to content
  • Skip to link menu
Trinity API Reference
  • Trinity API Reference
  • tdeio/tdeio
 

tdeio/tdeio

pastedialog.h
00001 /* This file is part of the KDE libraries
00002    Copyright (C) 2005 David Faure <faure@kde.org>
00003 
00004    This library is free software; you can redistribute it and/or
00005    modify it under the terms of the GNU Library General Public
00006    License version 2 as published by the Free Software Foundation.
00007 
00008    This library is distributed in the hope that it will be useful,
00009    but WITHOUT ANY WARRANTY; without even the implied warranty of
00010    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
00011    Library General Public License for more details.
00012 
00013    You should have received a copy of the GNU Library General Public License
00014    along with this library; see the file COPYING.LIB.  If not, write to
00015    the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
00016    Boston, MA 02110-1301, USA.
00017 */
00018 
00019 #ifndef PASTEDIALOG_H
00020 #define PASTEDIALOG_H
00021 
00022 #include <kdialogbase.h>
00023 
00024 class TQComboBox;
00025 class KLineEdit;
00026 class TQLabel;
00027 
00028 namespace TDEIO {
00029 
00035 class PasteDialog : public KDialogBase
00036 {
00037     Q_OBJECT
00038 public:
00039     PasteDialog( const TQString &caption, const TQString &label,
00040                  const TQString &value, const TQStringList& items,
00041                  TQWidget *parent, bool clipboard );
00042 
00043     TQString lineEditText() const;
00044     int comboItem() const;
00045     bool clipboardChanged() const { return m_clipboardChanged; }
00046 
00047 private slots:
00048     void slotClipboardDataChanged();
00049 
00050 private:
00051     TQLabel* m_label;
00052     KLineEdit* m_lineEdit;
00053     TQComboBox* m_comboBox;
00054     bool m_clipboardChanged;
00055 
00056     class Private;
00057     Private* d;
00058 };
00059 
00060 } // namespace
00061 
00062 
00063 #endif /* PASTEDIALOG_H */
00064 

tdeio/tdeio

Skip menu "tdeio/tdeio"
  • Main Page
  • Modules
  • Namespace List
  • Class Hierarchy
  • Alphabetical List
  • Class List
  • File List
  • Namespace Members
  • Class Members
  • Related Pages

tdeio/tdeio

Skip menu "tdeio/tdeio"
  • arts
  • dcop
  • dnssd
  • interfaces
  •   kspeech
  •     interface
  •     library
  •   tdetexteditor
  • kate
  • kded
  • kdoctools
  • kimgio
  • kjs
  • libtdemid
  • libtdescreensaver
  • tdeabc
  • tdecmshell
  • tdecore
  • tdefx
  • tdehtml
  • tdeinit
  • tdeio
  •   bookmarks
  •   httpfilter
  •   kpasswdserver
  •   kssl
  •   tdefile
  •   tdeio
  •   tdeioexec
  • tdeioslave
  •   http
  • tdemdi
  •   tdemdi
  • tdenewstuff
  • tdeparts
  • tdeprint
  • tderandr
  • tderesources
  • tdespell2
  • tdesu
  • tdeui
  • tdeunittest
  • tdeutils
  • tdewallet
Generated for tdeio/tdeio by doxygen 1.7.6.1
This website is maintained by Timothy Pearson.