• Skip to content
  • Skip to link menu
Trinity API Reference
  • Trinity API Reference
  • tdeui
 

tdeui

  • tdeui
kinputdialog.h
1/*
2 Copyright (C) 2003 Nadeem Hasan <nhasan@kde.org>
3
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 as published by the Free Software Foundation; either
7 version 2 of the License, or (at your option) any later version.
8
9 This library is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 Library General Public License for more details.
13
14 You should have received a copy of the GNU Library General Public License
15 along with this library; see the file COPYING.LIB. If not, write to
16 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
17 Boston, MA 02110-1301, USA.
18*/
19
20#ifndef KINPUTDIALOG_H
21#define KINPUTDIALOG_H
22
23// #include <tqt.h>
24
25#include <kdialogbase.h>
26
27class TQValidator;
28
29class KLineEdit;
30class KIntSpinBox;
31class KDoubleSpinBox;
32class KComboBox;
33class KTextEdit;
34class KInputDialogPrivate;
35
48class TDEUI_EXPORT KInputDialog : public KDialogBase
49{
50 TQ_OBJECT
51
52 private:
53
58 KInputDialog( const TQString &caption, const TQString &label,
59 const TQString &value, TQWidget *parent, const char *name,
60 TQValidator *validator, const TQString &mask );
61 KInputDialog( const TQString &caption, const TQString &label,
62 const TQString &value, TQWidget *parent, const char *name );
63 KInputDialog( const TQString &caption, const TQString &label, int value,
64 int minValue, int maxValue, int step, int base, TQWidget *parent,
65 const char *name );
66 KInputDialog( const TQString &caption, const TQString &label, double value,
67 double minValue, double maxValue, double step, int decimals,
68 TQWidget *parent, const char *name );
69 KInputDialog( const TQString &caption, const TQString &label,
70 const TQStringList &list, int current, bool editable, TQWidget *parent,
71 const char *name );
72 KInputDialog( const TQString &caption, const TQString &label,
73 const TQStringList &list, const TQStringList &select, bool editable,
74 TQWidget *parent, const char *name );
75
76 ~KInputDialog();
77
78 KLineEdit *lineEdit() const;
79 KIntSpinBox *intSpinBox() const;
80 KDoubleSpinBox *doubleSpinBox() const;
81 KComboBox *comboBox() const;
82 TDEListBox *listBox() const;
83 KTextEdit *textEdit() const;
84
85 private slots:
86
87 void slotEditTextChanged( const TQString& );
88 void slotUpdateButtons( const TQString& );
89
90 public:
91
119 static TQString getText( const TQString &caption, const TQString &label,
120 const TQString &value=TQString::null, bool *ok=0, TQWidget *parent=0,
121 const char *name=0, TQValidator *validator=0,
122 const TQString &mask=TQString::null );
123
132 static TQString text( const TQString &caption, const TQString &label,
133 const TQString &value=TQString::null, bool *ok=0, TQWidget *parent=0,
134 const char *name=0, TQValidator *validator=0,
135 const TQString &mask=TQString::null,
136 const TQString& whatsThis=TQString::null );
137
156 static TQString getMultiLineText( const TQString &caption,
157 const TQString &label, const TQString &value=TQString::null,
158 bool *ok=0, TQWidget *parent=0, const char *name=0 );
159
183
184 static int getInteger( const TQString &caption, const TQString &label,
185 int value=0, int minValue=-2147483647, int maxValue=2147483647,
186 int step=1, int base=10, bool *ok=0, TQWidget *parent=0,
187 const char *name=0 );
188
193 static int getInteger( const TQString &caption, const TQString &label,
194 int value=0, int minValue=-2147483647, int maxValue=2147483647,
195 int step=1, bool *ok=0, TQWidget *parent=0, const char *name=0 );
196
220 static double getDouble( const TQString &caption, const TQString &label,
221 double value=0, double minValue=-2147483647,
222 double maxValue=2147483647, double step=0.1, int decimals=1,
223 bool *ok=0, TQWidget *parent=0, const char *name=0 );
224
229 static double getDouble( const TQString &caption, const TQString &label,
230 double value=0, double minValue=-2147483647,
231 double maxValue=2147483647, int decimals=1, bool *ok=0,
232 TQWidget *parent=0, const char *name=0 );
233
254 static TQString getItem( const TQString &caption, const TQString &label,
255 const TQStringList &list, int current=0, bool editable=false,
256 bool *ok=0, TQWidget *parent=0, const char *name=0 );
257
278 static TQStringList getItemList( const TQString &caption,
279 const TQString &label, const TQStringList &list=TQStringList(),
280 const TQStringList &select=TQStringList(), bool multiple=false,
281 bool *ok=0, TQWidget *parent=0, const char *name=0 );
282
283 private:
284
285 KInputDialogPrivate* const d;
286 friend class KInputDialogPrivate;
287};
288
289#endif // KINPUTDIALOG_H
KComboBox
An enhanced combo box.
Definition kcombobox.h:152
KDialogBase::KDialogBase
KDialogBase(TQWidget *parent=0, const char *name=0, bool modal=true, const TQString &caption=TQString::null, int buttonMask=Ok|Apply|Cancel, ButtonCode defaultButton=Ok, bool separator=false, const KGuiItem &user1=KGuiItem(), const KGuiItem &user2=KGuiItem(), const KGuiItem &user3=KGuiItem())
Constructor for the standard mode where you must specify the main widget with setMainWidget() .
Definition kdialogbase.cpp:99
KDoubleSpinBox
A spin box for fractional numbers.
Definition knuminput.h:838
KInputDialog::getDouble
static double getDouble(const TQString &caption, const TQString &label, double value=0, double minValue=-2147483647, double maxValue=2147483647, double step=0.1, int decimals=1, bool *ok=0, TQWidget *parent=0, const char *name=0)
Static convenience function to get a floating point number from the user.
Definition kinputdialog.cpp:338
KInputDialog::getInteger
static int getInteger(const TQString &caption, const TQString &label, int value=0, int minValue=-2147483647, int maxValue=2147483647, int step=1, int base=10, bool *ok=0, TQWidget *parent=0, const char *name=0)
Static convenience function to get an integer from the user.
Definition kinputdialog.cpp:311
KInputDialog::getItemList
static TQStringList getItemList(const TQString &caption, const TQString &label, const TQStringList &list=TQStringList(), const TQStringList &select=TQStringList(), bool multiple=false, bool *ok=0, TQWidget *parent=0, const char *name=0)
Static convenience function to let the user select one or more items from a listbox.
Definition kinputdialog.cpp:390
KInputDialog::getItem
static TQString getItem(const TQString &caption, const TQString &label, const TQStringList &list, int current=0, bool editable=false, bool *ok=0, TQWidget *parent=0, const char *name=0)
Static convenience function to let the user select an item from a list.
Definition kinputdialog.cpp:365
KInputDialog::text
static TQString text(const TQString &caption, const TQString &label, const TQString &value=TQString::null, bool *ok=0, TQWidget *parent=0, const char *name=0, TQValidator *validator=0, const TQString &mask=TQString::null, const TQString &whatsThis=TQString::null)
Same as getText except it provides an extra parameter to specify a TQWhatsThis text for the input wid...
Definition kinputdialog.cpp:267
KInputDialog::getMultiLineText
static TQString getMultiLineText(const TQString &caption, const TQString &label, const TQString &value=TQString::null, bool *ok=0, TQWidget *parent=0, const char *name=0)
Static convenience function to get a multiline string from the user.
Definition kinputdialog.cpp:293
KInputDialog::getText
static TQString getText(const TQString &caption, const TQString &label, const TQString &value=TQString::null, bool *ok=0, TQWidget *parent=0, const char *name=0, TQValidator *validator=0, const TQString &mask=TQString::null)
Static convenience function to get a string from the user.
Definition kinputdialog.cpp:259
KIntSpinBox
A TQSpinBox with support for arbitrary base numbers.
Definition knuminput.h:708
KLineEdit
An enhanced TQLineEdit widget for inputting text.
Definition klineedit.h:146
KTextEdit
A KDE'ified QTextEdit.
Definition ktextedit.h:44
TDEListBox
A variant of TQListBox that honors KDE's system-wide settings.
Definition tdelistbox.h:41

tdeui

Skip menu "tdeui"
  • Main Page
  • Namespace List
  • Class Hierarchy
  • Alphabetical List
  • Class List
  • File List
  • Namespace Members
  • Class Members
  • Related Pages

tdeui

Skip menu "tdeui"
  • 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 tdeui by doxygen 1.15.0
This website is maintained by Timothy Pearson.