diff options
Diffstat (limited to 'doc/html/lineedits-example.html')
-rw-r--r-- | doc/html/lineedits-example.html | 104 |
1 files changed, 52 insertions, 52 deletions
diff --git a/doc/html/lineedits-example.html b/doc/html/lineedits-example.html index c470dabe2..08f2be656 100644 --- a/doc/html/lineedits-example.html +++ b/doc/html/lineedits-example.html @@ -63,8 +63,8 @@ public: LineEdits( <a href="tqwidget.html">TQWidget</a> *parent = 0, const char *name = 0 ); protected: - <a href="ntqlineedit.html">TQLineEdit</a> *lined1, *lined2, *lined3, *lined4, *lined5; - <a href="ntqcombobox.html">TQComboBox</a> *combo1, *combo2, *combo3, *combo4, *combo5; + <a href="tqlineedit.html">TQLineEdit</a> *lined1, *lined2, *lined3, *lined4, *lined5; + <a href="tqcombobox.html">TQComboBox</a> *combo1, *combo2, *combo3, *combo4, *combo5; protected slots: void slotEchoChanged( int ); @@ -91,8 +91,8 @@ protected slots: #include "lineedits.h" -#include <<a href="qlineedit-h.html">ntqlineedit.h</a>> -#include <<a href="qcombobox-h.html">ntqcombobox.h</a>> +#include <<a href="tqlineedit-h.html">tqlineedit.h</a>> +#include <<a href="tqcombobox-h.html">tqcombobox.h</a>> #include <<a href="qframe-h.html">ntqframe.h</a>> #include <<a href="qvalidator-h.html">ntqvalidator.h</a>> #include <<a href="tqlabel-h.html">tqlabel.h</a>> @@ -120,17 +120,17 @@ protected slots: <a name="x169"></a> row1-><a href="qboxlayout.html#addWidget">addWidget</a>( label ); // Create a Combobox with three items... - combo1 = new <a href="ntqcombobox.html">TQComboBox</a>( FALSE, this ); + combo1 = new <a href="tqcombobox.html">TQComboBox</a>( FALSE, this ); row1-><a href="qboxlayout.html#addWidget">addWidget</a>( combo1 ); -<a name="x171"></a> combo1-><a href="ntqcombobox.html#insertItem">insertItem</a>( "Normal" ); - combo1-><a href="ntqcombobox.html#insertItem">insertItem</a>( "Password" ); - combo1-><a href="ntqcombobox.html#insertItem">insertItem</a>( "No Echo" ); +<a name="x171"></a> combo1-><a href="tqcombobox.html#insertItem">insertItem</a>( "Normal" ); + combo1-><a href="tqcombobox.html#insertItem">insertItem</a>( "Password" ); + combo1-><a href="tqcombobox.html#insertItem">insertItem</a>( "No Echo" ); // ...and connect the activated() TQ_SIGNAL with the slotEchoChanged() TQ_SLOT to be able // to react when an item is selected -<a name="x170"></a> <a href="tqobject.html#connect">connect</a>( combo1, TQ_SIGNAL( <a href="ntqcombobox.html#activated">activated</a>( int ) ), this, TQ_SLOT( slotEchoChanged( int ) ) ); +<a name="x170"></a> <a href="tqobject.html#connect">connect</a>( combo1, TQ_SIGNAL( <a href="tqcombobox.html#activated">activated</a>( int ) ), this, TQ_SLOT( slotEchoChanged( int ) ) ); // insert the first LineEdit - lined1 = new <a href="ntqlineedit.html">TQLineEdit</a>( this ); + lined1 = new <a href="tqlineedit.html">TQLineEdit</a>( this ); box-><a href="qboxlayout.html#addWidget">addWidget</a>( lined1 ); // another widget which is used for layouting @@ -142,16 +142,16 @@ protected slots: row2-><a href="qboxlayout.html#addWidget">addWidget</a>( label ); // A second Combobox with again three items... - combo2 = new <a href="ntqcombobox.html">TQComboBox</a>( FALSE, this ); + combo2 = new <a href="tqcombobox.html">TQComboBox</a>( FALSE, this ); row2-><a href="qboxlayout.html#addWidget">addWidget</a>( combo2 ); - combo2-><a href="ntqcombobox.html#insertItem">insertItem</a>( "No Validator" ); - combo2-><a href="ntqcombobox.html#insertItem">insertItem</a>( "Integer Validator" ); - combo2-><a href="ntqcombobox.html#insertItem">insertItem</a>( "Double Validator" ); + combo2-><a href="tqcombobox.html#insertItem">insertItem</a>( "No Validator" ); + combo2-><a href="tqcombobox.html#insertItem">insertItem</a>( "Integer Validator" ); + combo2-><a href="tqcombobox.html#insertItem">insertItem</a>( "Double Validator" ); // ...and again the activated() TQ_SIGNAL gets connected with a TQ_SLOT - <a href="tqobject.html#connect">connect</a>( combo2, TQ_SIGNAL( <a href="ntqcombobox.html#activated">activated</a>( int ) ), this, TQ_SLOT( slotValidatorChanged( int ) ) ); + <a href="tqobject.html#connect">connect</a>( combo2, TQ_SIGNAL( <a href="tqcombobox.html#activated">activated</a>( int ) ), this, TQ_SLOT( slotValidatorChanged( int ) ) ); // and the second LineEdit - lined2 = new <a href="ntqlineedit.html">TQLineEdit</a>( this ); + lined2 = new <a href="tqlineedit.html">TQLineEdit</a>( this ); box-><a href="qboxlayout.html#addWidget">addWidget</a>( lined2 ); // yet another widget which is used for layouting @@ -163,16 +163,16 @@ protected slots: row3-><a href="qboxlayout.html#addWidget">addWidget</a>( label ); // A combo box for setting alignment - combo3 = new <a href="ntqcombobox.html">TQComboBox</a>( FALSE, this ); + combo3 = new <a href="tqcombobox.html">TQComboBox</a>( FALSE, this ); row3-><a href="qboxlayout.html#addWidget">addWidget</a>( combo3 ); - combo3-><a href="ntqcombobox.html#insertItem">insertItem</a>( "Left" ); - combo3-><a href="ntqcombobox.html#insertItem">insertItem</a>( "Centered" ); - combo3-><a href="ntqcombobox.html#insertItem">insertItem</a>( "Right" ); + combo3-><a href="tqcombobox.html#insertItem">insertItem</a>( "Left" ); + combo3-><a href="tqcombobox.html#insertItem">insertItem</a>( "Centered" ); + combo3-><a href="tqcombobox.html#insertItem">insertItem</a>( "Right" ); // ...and again the activated() TQ_SIGNAL gets connected with a TQ_SLOT - <a href="tqobject.html#connect">connect</a>( combo3, TQ_SIGNAL( <a href="ntqcombobox.html#activated">activated</a>( int ) ), this, TQ_SLOT( slotAlignmentChanged( int ) ) ); + <a href="tqobject.html#connect">connect</a>( combo3, TQ_SIGNAL( <a href="tqcombobox.html#activated">activated</a>( int ) ), this, TQ_SLOT( slotAlignmentChanged( int ) ) ); // and the third lineedit - lined3 = new <a href="ntqlineedit.html">TQLineEdit</a>( this ); + lined3 = new <a href="tqlineedit.html">TQLineEdit</a>( this ); box-><a href="qboxlayout.html#addWidget">addWidget</a>( lined3 ); // exactly the same for the fourth @@ -184,19 +184,19 @@ protected slots: row4-><a href="qboxlayout.html#addWidget">addWidget</a>( label ); // A combo box for choosing an input mask - combo4 = new <a href="ntqcombobox.html">TQComboBox</a>( FALSE, this ); + combo4 = new <a href="tqcombobox.html">TQComboBox</a>( FALSE, this ); row4-><a href="qboxlayout.html#addWidget">addWidget</a>( combo4 ); - combo4-><a href="ntqcombobox.html#insertItem">insertItem</a>( "No mask" ); - combo4-><a href="ntqcombobox.html#insertItem">insertItem</a>( "Phone number" ); - combo4-><a href="ntqcombobox.html#insertItem">insertItem</a>( "ISO date" ); - combo4-><a href="ntqcombobox.html#insertItem">insertItem</a>( "License key" ); + combo4-><a href="tqcombobox.html#insertItem">insertItem</a>( "No mask" ); + combo4-><a href="tqcombobox.html#insertItem">insertItem</a>( "Phone number" ); + combo4-><a href="tqcombobox.html#insertItem">insertItem</a>( "ISO date" ); + combo4-><a href="tqcombobox.html#insertItem">insertItem</a>( "License key" ); // ...this time we use the activated( const <a href="tqstring.html">TQString</a> & ) signal - <a href="tqobject.html#connect">connect</a>( combo4, TQ_SIGNAL( <a href="ntqcombobox.html#activated">activated</a>( int ) ), + <a href="tqobject.html#connect">connect</a>( combo4, TQ_SIGNAL( <a href="tqcombobox.html#activated">activated</a>( int ) ), this, TQ_SLOT( slotInputMaskChanged( int ) ) ); // and the fourth lineedit - lined4 = new <a href="ntqlineedit.html">TQLineEdit</a>( this ); + lined4 = new <a href="tqlineedit.html">TQLineEdit</a>( this ); box-><a href="qboxlayout.html#addWidget">addWidget</a>( lined4 ); // last widget used for layouting @@ -208,14 +208,14 @@ protected slots: (void)new <a href="tqlabel.html">TQLabel</a>( "Read-Only: ", row5 ); // A combo box for setting alignment - combo5 = new <a href="ntqcombobox.html">TQComboBox</a>( FALSE, row5 ); - combo5-><a href="ntqcombobox.html#insertItem">insertItem</a>( "False" ); - combo5-><a href="ntqcombobox.html#insertItem">insertItem</a>( "True" ); + combo5 = new <a href="tqcombobox.html">TQComboBox</a>( FALSE, row5 ); + combo5-><a href="tqcombobox.html#insertItem">insertItem</a>( "False" ); + combo5-><a href="tqcombobox.html#insertItem">insertItem</a>( "True" ); // ...and again the activated() TQ_SIGNAL gets connected with a TQ_SLOT - <a href="tqobject.html#connect">connect</a>( combo5, TQ_SIGNAL( <a href="ntqcombobox.html#activated">activated</a>( int ) ), this, TQ_SLOT( slotReadOnlyChanged( int ) ) ); + <a href="tqobject.html#connect">connect</a>( combo5, TQ_SIGNAL( <a href="tqcombobox.html#activated">activated</a>( int ) ), this, TQ_SLOT( slotReadOnlyChanged( int ) ) ); // and the last lineedit - lined5 = new <a href="ntqlineedit.html">TQLineEdit</a>( this ); + lined5 = new <a href="tqlineedit.html">TQLineEdit</a>( this ); box-><a href="qboxlayout.html#addWidget">addWidget</a>( lined5 ); // give the first LineEdit the focus at the beginning @@ -234,13 +234,13 @@ void <a name="f220"></a>LineEdits::slotEchoChanged( int i ) { switch ( i ) { case 0: -<a name="x176"></a> lined1-><a href="ntqlineedit.html#setEchoMode">setEchoMode</a>( TQLineEdit::Normal ); +<a name="x176"></a> lined1-><a href="tqlineedit.html#setEchoMode">setEchoMode</a>( TQLineEdit::Normal ); break; case 1: - lined1-><a href="ntqlineedit.html#setEchoMode">setEchoMode</a>( TQLineEdit::Password ); + lined1-><a href="tqlineedit.html#setEchoMode">setEchoMode</a>( TQLineEdit::Password ); break; case 2: - lined1-><a href="ntqlineedit.html#setEchoMode">setEchoMode</a>( TQLineEdit::NoEcho ); + lined1-><a href="tqlineedit.html#setEchoMode">setEchoMode</a>( TQLineEdit::NoEcho ); break; } @@ -261,18 +261,18 @@ void <a name="f221"></a>LineEdits::slotValidatorChanged( int i ) { switch ( i ) { case 0: -<a name="x180"></a> lined2-><a href="ntqlineedit.html#setValidator">setValidator</a>( 0 ); +<a name="x180"></a> lined2-><a href="tqlineedit.html#setValidator">setValidator</a>( 0 ); break; case 1: - lined2-><a href="ntqlineedit.html#setValidator">setValidator</a>( new <a href="qintvalidator.html">TQIntValidator</a>( lined2 ) ); + lined2-><a href="tqlineedit.html#setValidator">setValidator</a>( new <a href="qintvalidator.html">TQIntValidator</a>( lined2 ) ); break; case 2: - lined2-><a href="ntqlineedit.html#setValidator">setValidator</a>( new <a href="qdoublevalidator.html">TQDoubleValidator</a>( -999.0, 999.0, 2, + lined2-><a href="tqlineedit.html#setValidator">setValidator</a>( new <a href="qdoublevalidator.html">TQDoubleValidator</a>( -999.0, 999.0, 2, lined2 ) ); break; } -<a name="x179"></a> lined2-><a href="ntqlineedit.html#setText">setText</a>( "" ); +<a name="x179"></a> lined2-><a href="tqlineedit.html#setText">setText</a>( "" ); lined2-><a href="tqwidget.html#setFocus">setFocus</a>(); } @@ -289,13 +289,13 @@ void <a name="f222"></a>LineEdits::slotAlignmentChanged( int i ) { switch ( i ) { case 0: -<a name="x174"></a> lined3-><a href="ntqlineedit.html#setAlignment">setAlignment</a>( TQLineEdit::AlignLeft ); +<a name="x174"></a> lined3-><a href="tqlineedit.html#setAlignment">setAlignment</a>( TQLineEdit::AlignLeft ); break; case 1: - lined3-><a href="ntqlineedit.html#setAlignment">setAlignment</a>( TQLineEdit::AlignCenter ); + lined3-><a href="tqlineedit.html#setAlignment">setAlignment</a>( TQLineEdit::AlignCenter ); break; case 2: - lined3-><a href="ntqlineedit.html#setAlignment">setAlignment</a>( TQLineEdit::AlignRight ); + lined3-><a href="tqlineedit.html#setAlignment">setAlignment</a>( TQLineEdit::AlignRight ); break; } @@ -314,18 +314,18 @@ void <a name="f223"></a>LineEdits::slotInputMaskChanged( int i ) { switch( i ) { case 0: -<a name="x177"></a> lined4-><a href="ntqlineedit.html#setInputMask">setInputMask</a>( <a href="tqstring.html#TQString-null">TQString::null</a> ); +<a name="x177"></a> lined4-><a href="tqlineedit.html#setInputMask">setInputMask</a>( <a href="tqstring.html#TQString-null">TQString::null</a> ); break; case 1: - lined4-><a href="ntqlineedit.html#setInputMask">setInputMask</a>( "+99 99 99 99 99;_" ); + lined4-><a href="tqlineedit.html#setInputMask">setInputMask</a>( "+99 99 99 99 99;_" ); break; case 2: - lined4-><a href="ntqlineedit.html#setInputMask">setInputMask</a>( "0000-00-00" ); - lined4-><a href="ntqlineedit.html#setText">setText</a>( "00000000" ); -<a name="x175"></a> lined4-><a href="ntqlineedit.html#setCursorPosition">setCursorPosition</a>( 0 ); + lined4-><a href="tqlineedit.html#setInputMask">setInputMask</a>( "0000-00-00" ); + lined4-><a href="tqlineedit.html#setText">setText</a>( "00000000" ); +<a name="x175"></a> lined4-><a href="tqlineedit.html#setCursorPosition">setCursorPosition</a>( 0 ); break; case 3: - lined4-><a href="ntqlineedit.html#setInputMask">setInputMask</a>( ">AAAAA-AAAAA-AAAAA-AAAAA-AAAAA;#" ); + lined4-><a href="tqlineedit.html#setInputMask">setInputMask</a>( ">AAAAA-AAAAA-AAAAA-AAAAA-AAAAA;#" ); break; } lined4-><a href="tqwidget.html#setFocus">setFocus</a>(); @@ -342,10 +342,10 @@ void <a name="f224"></a>LineEdits::slotReadOnlyChanged( int i ) { switch ( i ) { case 0: -<a name="x178"></a> lined5-><a href="ntqlineedit.html#setReadOnly">setReadOnly</a>( FALSE ); +<a name="x178"></a> lined5-><a href="tqlineedit.html#setReadOnly">setReadOnly</a>( FALSE ); break; case 1: - lined5-><a href="ntqlineedit.html#setReadOnly">setReadOnly</a>( TRUE ); + lined5-><a href="tqlineedit.html#setReadOnly">setReadOnly</a>( TRUE ); break; } |