summaryrefslogtreecommitdiffstats
path: root/qtjava/javalib/examples/lineedits/LineEdits.java
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-01-13 11:29:06 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-01-13 11:45:40 +0900
commitfaf33629bb6562a6f43f930afafe4b22e9cdb60b (patch)
tree8fc6dc6d999a3a039ace28db2fe5b96712fa18e0 /qtjava/javalib/examples/lineedits/LineEdits.java
parent0ff7d227c65fecb4fb7482ecd679acb594ef5cf7 (diff)
downloadtdebindings-faf33629bb6562a6f43f930afafe4b22e9cdb60b.tar.gz
tdebindings-faf33629bb6562a6f43f930afafe4b22e9cdb60b.zip
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'qtjava/javalib/examples/lineedits/LineEdits.java')
-rw-r--r--qtjava/javalib/examples/lineedits/LineEdits.java24
1 files changed, 12 insertions, 12 deletions
diff --git a/qtjava/javalib/examples/lineedits/LineEdits.java b/qtjava/javalib/examples/lineedits/LineEdits.java
index f0f00bf1..072e851a 100644
--- a/qtjava/javalib/examples/lineedits/LineEdits.java
+++ b/qtjava/javalib/examples/lineedits/LineEdits.java
@@ -48,9 +48,9 @@ LineEdits( TQWidget parent, String name )
combo1.insertItem( "Normal", -1 );
combo1.insertItem( "Password", -1 );
combo1.insertItem( "No Echo", -1 );
- // ...and connect the activated() SIGNAL with the slotEchoChanged() SLOT to be able
+ // ...and connect the activated() signal with the slotEchoChanged() slot to be able
// to react when an item is selected
- connect( combo1, SIGNAL(" activated( int )"), this, SLOT(" slotEchoChanged( int )") );
+ connect( combo1, TQ_SIGNAL(" activated( int )"), this, TQ_SLOT(" slotEchoChanged( int )") );
// insert the first LineEdit
lined1 = new TQLineEdit( this );
@@ -70,8 +70,8 @@ LineEdits( TQWidget parent, String name )
combo2.insertItem( "No Validator", -1 );
combo2.insertItem( "Integer Validator", -1 );
combo2.insertItem( "Double Validator", -1 );
- // ...and again the activated() SIGNAL gets connected with a SLOT
- connect( combo2, SIGNAL(" activated( int )"), this, SLOT(" slotValidatorChanged( int )") );
+ // ...and again the activated() signal gets connected with a slot
+ connect( combo2, TQ_SIGNAL(" activated( int )"), this, TQ_SLOT(" slotValidatorChanged( int )") );
// and the second LineEdit
lined2 = new TQLineEdit( this );
@@ -91,8 +91,8 @@ LineEdits( TQWidget parent, String name )
combo3.insertItem( "Left", -1 );
combo3.insertItem( "Centered", -1 );
combo3.insertItem( "Right", -1 );
- // ...and again the activated() SIGNAL gets connected with a SLOT
- connect( combo3, SIGNAL(" activated( int )"), this, SLOT(" slotAlignmentChanged( int )") );
+ // ...and again the activated() signal gets connected with a slot
+ connect( combo3, TQ_SIGNAL(" activated( int )"), this, TQ_SLOT(" slotAlignmentChanged( int )") );
// and the third lineedit
lined3 = new TQLineEdit( this );
@@ -110,8 +110,8 @@ LineEdits( TQWidget parent, String name )
combo4 = new TQComboBox( false, row4 );
combo4.insertItem( "False", -1 );
combo4.insertItem( "True", -1 );
- // ...and again the activated() SIGNAL gets connected with a SLOT
- connect( combo4, SIGNAL(" activated( int )"), this, SLOT(" slotReadOnlyChanged( int )") );
+ // ...and again the activated() signal gets connected with a slot
+ connect( combo4, TQ_SIGNAL(" activated( int )"), this, TQ_SLOT(" slotReadOnlyChanged( int )") );
// and the last lineedit
lined4 = new TQLineEdit( this );
@@ -122,7 +122,7 @@ LineEdits( TQWidget parent, String name )
}
/*
- SLOT slotEchoChanged( int i )
+ TQ_SLOT slotEchoChanged( int i )
*
i contains the number of the item which the user has been chosen in the
first Combobox. According to this value, we set the Echo-Mode for the
@@ -147,7 +147,7 @@ void slotEchoChanged( int i )
}
/*
- SLOT slotValidatorChanged( int i )
+ TQ_SLOT slotValidatorChanged( int i )
*
i contains the number of the item which the user has been chosen in the
second Combobox. According to this value, we set a validator for the
@@ -177,7 +177,7 @@ void slotValidatorChanged( int i )
/*
- SLOT slotAlignmentChanged( int i )
+ TQ_SLOT slotAlignmentChanged( int i )
*
i contains the number of the item which the user has been chosen in
the third Combobox. According to this value, we set an alignment
@@ -203,7 +203,7 @@ void slotAlignmentChanged( int i )
/*
- SLOT slotReadOnlyChanged( int i )
+ TQ_SLOT slotReadOnlyChanged( int i )
*
i contains the number of the item which the user has been chosen in
the fourth Combobox. According to this value, we toggle read-only.