summaryrefslogtreecommitdiffstats
path: root/sip/tqt/tqinputdialog.sip
diff options
context:
space:
mode:
authorSlávek Banko <[email protected]>2023-01-03 00:52:18 +0100
committerSlávek Banko <[email protected]>2023-01-20 02:10:39 +0100
commit16434e5519f6224e231bc5f7202f0e495eda7bb7 (patch)
treed0a3bc5f18eb65f89c1e6238dcf579e6c9cb80ad /sip/tqt/tqinputdialog.sip
parent1c362264d328c8886d33061ab992750741f7933a (diff)
downloadpytqt-16434e5519f6224e231bc5f7202f0e495eda7bb7.tar.gz
pytqt-16434e5519f6224e231bc5f7202f0e495eda7bb7.zip
Do rename qt=>tqt on source files, directories and libraries.
Rename pyuic=>pytquic, pylupdate=>pytqlupdate. Do rename qt=>tqt on constants and variables. Do rename QT=>TQT on constants. Signed-off-by: Slávek Banko <[email protected]>
Diffstat (limited to 'sip/tqt/tqinputdialog.sip')
-rw-r--r--sip/tqt/tqinputdialog.sip157
1 files changed, 157 insertions, 0 deletions
diff --git a/sip/tqt/tqinputdialog.sip b/sip/tqt/tqinputdialog.sip
new file mode 100644
index 0000000..f64baa7
--- /dev/null
+++ b/sip/tqt/tqinputdialog.sip
@@ -0,0 +1,157 @@
+// This is the SIP interface definition for TQInputDialog.
+//
+// Copyright (c) 2007
+// Riverbank Computing Limited <[email protected]>
+//
+// This file is part of PyTQt.
+//
+// This copy of PyTQt is free software; you can redistribute it and/or modify it
+// under the terms of the GNU General Public License as published by the Free
+// Software Foundation; either version 2, or (at your option) any later
+// version.
+//
+// PyTQt is supplied in the hope that it will be useful, but WITHOUT ANY
+// WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+// FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
+// details.
+//
+// You should have received a copy of the GNU General Public License along with
+// PyTQt; see the file LICENSE. If not, write to the Free Software Foundation,
+// Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+
+
+%ExportedDoc
+<Sect2><Title>TQInputDialog (TQt v2.1+)</Title>
+<FuncSynopsis>
+ <FuncDef>static TQString <Function>getText</Function></FuncDef>
+ <ParamDef>const TQString &amp;<Parameter>caption</Parameter></ParamDef>
+ <ParamDef>const TQString &amp;<Parameter>label</Parameter></ParamDef>
+ <ParamDef>const TQString &amp;<Parameter>text</Parameter> = TQString::null</ParamDef>
+ <ParamDef>bool *<Parameter>ok</Parameter> = 0</ParamDef>
+ <ParamDef>TQWidget *<Parameter>parent</Parameter> = 0</ParamDef>
+ <ParamDef>const char *<Parameter>name</Parameter> = 0</ParamDef>
+</FuncSynopsis>
+<Para>
+The <Literal>ok</Literal> is not passed and the returned value is a tuple of
+the <Literal>TQString</Literal> result and the <Literal>ok</Literal> flag.
+(TQt v2.1 - v2.3.1)
+</Para>
+
+<FuncSynopsis>
+ <FuncDef>static TQString <Function>getText</Function></FuncDef>
+ <ParamDef>const TQString &amp;<Parameter>caption</Parameter></ParamDef>
+ <ParamDef>const TQString &amp;<Parameter>label</Parameter></ParamDef>
+ <ParamDef>TQLineEdit::EchoMode<Parameter>echo</Parameter></ParamDef>
+ <ParamDef>const TQString &amp;<Parameter>text</Parameter> = TQString::null</ParamDef>
+ <ParamDef>bool *<Parameter>ok</Parameter> = 0</ParamDef>
+ <ParamDef>TQWidget *<Parameter>parent</Parameter> = 0</ParamDef>
+ <ParamDef>const char *<Parameter>name</Parameter> = 0</ParamDef>
+</FuncSynopsis>
+<Para>
+The <Literal>ok</Literal> is not passed and the returned value is a tuple of
+the <Literal>TQString</Literal> result and the <Literal>ok</Literal> flag.
+(TQt v2.2 - v2.3.1)
+</Para>
+
+<FuncSynopsis>
+ <FuncDef>static TQString <Function>getText</Function></FuncDef>
+ <ParamDef>const TQString &amp;<Parameter>caption</Parameter></ParamDef>
+ <ParamDef>const TQString &amp;<Parameter>label</Parameter></ParamDef>
+ <ParamDef>TQLineEdit::EchoMode<Parameter>echo</Parameter> = TQLineEdit::Normal</ParamDef>
+ <ParamDef>const TQString &amp;<Parameter>text</Parameter> = TQString::null</ParamDef>
+ <ParamDef>bool *<Parameter>ok</Parameter> = 0</ParamDef>
+ <ParamDef>TQWidget *<Parameter>parent</Parameter> = 0</ParamDef>
+ <ParamDef>const char *<Parameter>name</Parameter> = 0</ParamDef>
+</FuncSynopsis>
+<Para>
+The <Literal>ok</Literal> is not passed and the returned value is a tuple of
+the <Literal>TQString</Literal> result and the <Literal>ok</Literal> flag.
+(TQt v3+)
+</Para>
+
+<FuncSynopsis>
+ <FuncDef>static int <Function>getInteger</Function></FuncDef>
+ <ParamDef>const TQString &amp;<Parameter>caption</Parameter></ParamDef>
+ <ParamDef>const TQString &amp;<Parameter>label</Parameter></ParamDef>
+ <ParamDef>int <Parameter>num</Parameter> = 0</ParamDef>
+ <ParamDef>int <Parameter>from</Parameter> = -2147483647</ParamDef>
+ <ParamDef>int <Parameter>to</Parameter> = 2147483647</ParamDef>
+ <ParamDef>int <Parameter>step</Parameter> = 1</ParamDef>
+ <ParamDef>bool *<Parameter>ok</Parameter> = 0</ParamDef>
+ <ParamDef>TQWidget *<Parameter>parent</Parameter> = 0</ParamDef>
+ <ParamDef>const char *<Parameter>name</Parameter> = 0</ParamDef>
+</FuncSynopsis>
+<Para>
+The <Literal>ok</Literal> is not passed and the returned value is a tuple of
+the <Literal>int</Literal> result and the <Literal>ok</Literal> flag.
+</Para>
+
+<FuncSynopsis>
+ <FuncDef>static double <Function>getDouble</Function></FuncDef>
+ <ParamDef>const TQString &amp;<Parameter>caption</Parameter></ParamDef>
+ <ParamDef>const TQString &amp;<Parameter>label</Parameter></ParamDef>
+ <ParamDef>double <Parameter>num</Parameter> = 0</ParamDef>
+ <ParamDef>double <Parameter>from</Parameter> = -2147483647</ParamDef>
+ <ParamDef>double <Parameter>to</Parameter> = 2147483647</ParamDef>
+ <ParamDef>int <Parameter>step</Parameter> = 1</ParamDef>
+ <ParamDef>bool *<Parameter>ok</Parameter> = 0</ParamDef>
+ <ParamDef>TQWidget *<Parameter>parent</Parameter> = 0</ParamDef>
+ <ParamDef>const char *<Parameter>name</Parameter> = 0</ParamDef>
+</FuncSynopsis>
+<Para>
+The <Literal>ok</Literal> is not passed and the returned value is a tuple of
+the <Literal>double</Literal> result and the <Literal>ok</Literal> flag.
+</Para>
+
+<FuncSynopsis>
+ <FuncDef>static TQString <Function>getItem</Function></FuncDef>
+ <ParamDef>const TQString &amp;<Parameter>caption</Parameter></ParamDef>
+ <ParamDef>const TQString &amp;<Parameter>label</Parameter></ParamDef>
+ <ParamDef>const TQStringList &<Parameter>list</Parameter></ParamDef>
+ <ParamDef>int <Parameter>current</Parameter> = 0</ParamDef>
+ <ParamDef>bool <Parameter>editable</Parameter> = TRUE</ParamDef>
+ <ParamDef>bool *<Parameter>ok</Parameter> = 0</ParamDef>
+ <ParamDef>TQWidget *<Parameter>parent</Parameter> = 0</ParamDef>
+ <ParamDef>const char *<Parameter>name</Parameter> = 0</ParamDef>
+</FuncSynopsis>
+<Para>
+The <Literal>ok</Literal> is not passed and the returned value is a tuple of
+the <Literal>TQString</Literal> result and the <Literal>ok</Literal> flag.
+</Para>
+</Sect2>
+%End
+
+
+%If (TQt_INPUTDIALOG)
+
+class TQInputDialog : TQDialog
+{
+%TypeHeaderCode
+#include <tqinputdialog.h>
+%End
+
+public:
+ static TQString getText(const TQString &,const TQString &,
+ TQLineEdit::EchoMode = TQLineEdit::Normal,
+ const TQString & = TQString::null,
+ bool * = 0,TQWidget * = 0,const char * = 0);
+
+ static int getInteger(const TQString &,const TQString &,int = 0,
+ int = -2147483647,int = 2147483647,int = 1,
+ bool * = 0,TQWidget * = 0,const char * = 0);
+
+ static double getDouble(const TQString &,const TQString &,
+ double = 0,double = -2147483647,
+ double = 2147483647,int = 1,
+ bool * = 0,TQWidget * = 0,const char * = 0);
+
+ static TQString getItem(const TQString &,const TQString &,
+ const TQStringList &,int = 0,bool = TRUE,
+ bool * = 0,TQWidget * = 0,const char * = 0);
+
+private:
+ TQInputDialog(const TQInputDialog &);
+ ~TQInputDialog();
+};
+
+%End