summaryrefslogtreecommitdiffstats
path: root/qtsharp/src/examples/tutorials
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:44:01 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:44:01 +0000
commit479f5f799523bffbcc83dff581a2299c047c6fff (patch)
tree186aae707ed02aac6c7cab2fb14e97f72aca5e36 /qtsharp/src/examples/tutorials
parentf1dbff6145c98324ff82e34448b7483727e8ace4 (diff)
downloadtdebindings-479f5f799523bffbcc83dff581a2299c047c6fff.tar.gz
tdebindings-479f5f799523bffbcc83dff581a2299c047c6fff.zip
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdebindings@1157645 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'qtsharp/src/examples/tutorials')
-rw-r--r--qtsharp/src/examples/tutorials/t1.cs4
-rw-r--r--qtsharp/src/examples/tutorials/t2.cs12
-rw-r--r--qtsharp/src/examples/tutorials/t3.cs14
-rw-r--r--qtsharp/src/examples/tutorials/t4.cs14
-rw-r--r--qtsharp/src/examples/tutorials/t5.cs20
-rw-r--r--qtsharp/src/examples/tutorials/t6.cs28
-rw-r--r--qtsharp/src/examples/tutorials/t7.cs36
7 files changed, 64 insertions, 64 deletions
diff --git a/qtsharp/src/examples/tutorials/t1.cs b/qtsharp/src/examples/tutorials/t1.cs
index 3dc075b1..84c79d38 100644
--- a/qtsharp/src/examples/tutorials/t1.cs
+++ b/qtsharp/src/examples/tutorials/t1.cs
@@ -9,9 +9,9 @@ public class Example {
public static int Main (String[] args)
{
- QApplication a = new QApplication (args);
+ TQApplication a = new TQApplication (args);
- QPushButton hello = new QPushButton ("Hello world!", null);
+ TQPushButton hello = new TQPushButton ("Hello world!", null);
// In C++, the second parameter is 0 (null pointer)
hello.Resize (100, 30);
diff --git a/qtsharp/src/examples/tutorials/t2.cs b/qtsharp/src/examples/tutorials/t2.cs
index 44eb304b..5dbe07d1 100644
--- a/qtsharp/src/examples/tutorials/t2.cs
+++ b/qtsharp/src/examples/tutorials/t2.cs
@@ -9,17 +9,17 @@ public class Example {
public static int Main (String[] args)
{
- QApplication a = new QApplication (args);
+ TQApplication a = new TQApplication (args);
- QPushButton quit = new QPushButton ("Quit", null);
+ TQPushButton quit = new TQPushButton ("Quit", null);
// In C++, the second parameter is 0 (null pointer)
quit.Resize (75, 30);
- quit.SetFont (new QFont ("Times", 18, QFont.Weight.Bold));
- // In C++, QFont::Bold is sufficient
+ quit.SetFont (new TQFont ("Times", 18, TQFont.Weight.Bold));
+ // In C++, TQFont::Bold is sufficient
- QObject.Connect ( quit, QtSupport.SIGNAL ("clicked()"), a, QtSupport.SLOT ("Quit()") );
- // SIGNAL and SLOT are static functions of QtSupport
+ TQObject.Connect ( quit, QtSupport.TQT_SIGNAL ("clicked()"), a, QtSupport.TQT_SLOT ("Quit()") );
+ // TQT_SIGNAL and TQT_SLOT are static functions of QtSupport
a.SetMainWidget (quit);
quit.Show ();
diff --git a/qtsharp/src/examples/tutorials/t3.cs b/qtsharp/src/examples/tutorials/t3.cs
index a1c76ce4..26fece72 100644
--- a/qtsharp/src/examples/tutorials/t3.cs
+++ b/qtsharp/src/examples/tutorials/t3.cs
@@ -10,17 +10,17 @@ public class Example {
public static int Main (String[] args)
{
- QApplication a = new QApplication (args);
+ TQApplication a = new TQApplication (args);
- QVBox box = new QVBox ();
+ TQVBox box = new TQVBox ();
box.Resize (200, 120);
- QPushButton quit = new QPushButton ("Quit", box);
- quit.SetFont (new QFont ("Times", 18, QFont.Weight.Bold));
- // In C++, QFont::Bold is sufficient
+ TQPushButton quit = new TQPushButton ("Quit", box);
+ quit.SetFont (new TQFont ("Times", 18, TQFont.Weight.Bold));
+ // In C++, TQFont::Bold is sufficient
- QObject.Connect ( quit, QtSupport.SIGNAL ("clicked()"), a, QtSupport.SLOT ("Quit()") );
- // SIGNAL and SLOT are static functions of QtSupport
+ TQObject.Connect ( quit, QtSupport.TQT_SIGNAL ("clicked()"), a, QtSupport.TQT_SLOT ("Quit()") );
+ // TQT_SIGNAL and TQT_SLOT are static functions of QtSupport
a.SetMainWidget (box);
box.Show ();
diff --git a/qtsharp/src/examples/tutorials/t4.cs b/qtsharp/src/examples/tutorials/t4.cs
index 5373af19..a8884b92 100644
--- a/qtsharp/src/examples/tutorials/t4.cs
+++ b/qtsharp/src/examples/tutorials/t4.cs
@@ -5,25 +5,25 @@
using System;
using Qt;
-public class MyWidget : QWidget {
+public class MyWidget : TQWidget {
- public MyWidget (QWidget parent, String name) : base (parent, name)
+ public MyWidget (TQWidget parent, String name) : base (parent, name)
// In C++, parent and name have default values of 0 (null pointer)
{
this.SetMinimumSize (200, 120);
this.SetMaximumSize (200, 120);
- QPushButton quit = new QPushButton ("Quit", this, "quit");
+ TQPushButton quit = new TQPushButton ("Quit", this, "quit");
quit.SetGeometry (62, 40, 75, 30);
- quit.SetFont (new QFont ("Times", 18, QFont.Weight.Bold) );
+ quit.SetFont (new TQFont ("Times", 18, TQFont.Weight.Bold) );
- Connect ( quit, SIGNAL ("clicked()"), qApp, SLOT ("Quit()") );
+ Connect ( quit, TQT_SIGNAL ("clicked()"), qApp, TQT_SLOT ("Quit()") );
// In C++, qApp is a global variable. Here it's a property of the QObject
// class, which we inherit, giving the same effect. We also inherit the
// static method connect().
}
- public MyWidget (QWidget parent) : this (parent, "") {}
+ public MyWidget (TQWidget parent) : this (parent, "") {}
public MyWidget () : this (null, "") {}
// Note that it was necessary to use an empty string ("")
// in the above. Using null does not work at runtime.
@@ -33,7 +33,7 @@ public class Example {
public static int Main (String[] args)
{
- QApplication a = new QApplication (args);
+ TQApplication a = new TQApplication (args);
MyWidget w = new MyWidget ();
w.SetGeometry (100, 100, 200, 120);
diff --git a/qtsharp/src/examples/tutorials/t5.cs b/qtsharp/src/examples/tutorials/t5.cs
index 4feadae5..0488969d 100644
--- a/qtsharp/src/examples/tutorials/t5.cs
+++ b/qtsharp/src/examples/tutorials/t5.cs
@@ -5,27 +5,27 @@
using System;
using Qt;
-public class MyWidget : QVBox {
+public class MyWidget : TQVBox {
- public MyWidget (QWidget parent, String name) : base (parent, name)
+ public MyWidget (TQWidget parent, String name) : base (parent, name)
// In C++, parent and name have default values of 0 (null pointer)
{
- QPushButton quit = new QPushButton ("Quit", this, "quit");
- quit.SetFont ( new QFont ("Times", 18, QFont.Weight.Bold) );
+ TQPushButton quit = new TQPushButton ("Quit", this, "quit");
+ quit.SetFont ( new TQFont ("Times", 18, TQFont.Weight.Bold) );
- QObject.Connect ( quit, SIGNAL ("clicked()"), qApp, SLOT ("Quit()") );
+ TQObject.Connect ( quit, TQT_SIGNAL ("clicked()"), qApp, TQT_SLOT ("Quit()") );
- QLCDNumber lcd = new QLCDNumber (2, this, "lcd" );
+ TQLCDNumber lcd = new TQLCDNumber (2, this, "lcd" );
- QSlider slider = new QSlider (Orientation.Horizontal, this, "slider");
+ TQSlider slider = new TQSlider (Orientation.Horizontal, this, "slider");
// Note that Orientation is defined in the Qt class
slider.SetRange (0, 99);
slider.SetValue (0);
- Connect ( slider, SIGNAL ("valueChanged(int)"), lcd, SLOT ("Display(int)") );
+ Connect ( slider, TQT_SIGNAL ("valueChanged(int)"), lcd, TQT_SLOT ("Display(int)") );
}
- public MyWidget (QWidget parent) : this (parent, "") {}
+ public MyWidget (TQWidget parent) : this (parent, "") {}
public MyWidget () : this (null, "") {}
// Note that it was necessary to use an empty string ("")
// in the above. Using null does not work at runtime.
@@ -35,7 +35,7 @@ public class Example {
public static int Main (String[] args)
{
- QApplication a = new QApplication (args);
+ TQApplication a = new TQApplication (args);
MyWidget w = new MyWidget ();
a.SetMainWidget (w);
diff --git a/qtsharp/src/examples/tutorials/t6.cs b/qtsharp/src/examples/tutorials/t6.cs
index 223e0ff1..6fee48e1 100644
--- a/qtsharp/src/examples/tutorials/t6.cs
+++ b/qtsharp/src/examples/tutorials/t6.cs
@@ -5,42 +5,42 @@
using System;
using Qt;
-public class LCDRange : QVBox {
+public class LCDRange : TQVBox {
- public LCDRange (QWidget parent, String name) : base (parent, name)
+ public LCDRange (TQWidget parent, String name) : base (parent, name)
// In C++, parent and name have default values of 0 (null pointer)
{
- QLCDNumber lcd = new QLCDNumber (2, this, "lcd" );
- QSlider slider = new QSlider (Orientation.Horizontal, this, "slider");
+ TQLCDNumber lcd = new TQLCDNumber (2, this, "lcd" );
+ TQSlider slider = new TQSlider (Orientation.Horizontal, this, "slider");
slider.SetRange (0, 99);
slider.SetValue (0);
- Connect ( slider, SIGNAL ("valueChanged(int)"), lcd, SLOT ("Display(int)") );
+ Connect ( slider, TQT_SIGNAL ("valueChanged(int)"), lcd, TQT_SLOT ("Display(int)") );
}
- public LCDRange (QWidget parent) : this (parent, "") {}
+ public LCDRange (TQWidget parent) : this (parent, "") {}
public LCDRange () : this (null, "") {}
// Note that it was necessary to use an empty string ("")
// in the above. Using null does not work at runtime.
}
-public class MyWidget : QVBox {
+public class MyWidget : TQVBox {
- MyWidget (QWidget parent, String name) : base (parent, name)
+ MyWidget (TQWidget parent, String name) : base (parent, name)
{
- QPushButton quit = new QPushButton ("Quit", this, "quit");
- quit.SetFont ( new QFont ("Times", 18, QFont.Weight.Bold) );
+ TQPushButton quit = new TQPushButton ("Quit", this, "quit");
+ quit.SetFont ( new TQFont ("Times", 18, TQFont.Weight.Bold) );
- Connect ( quit, SIGNAL ("clicked()"), qApp, SLOT ("Quit()") );
+ Connect ( quit, TQT_SIGNAL ("clicked()"), qApp, TQT_SLOT ("Quit()") );
- QGrid grid = new QGrid (4, this);
+ TQGrid grid = new TQGrid (4, this);
for ( int c =0; c < 4; c++ )
for ( int r = 0; r < 4; r++ )
new LCDRange (grid);
}
- public MyWidget (QWidget parent) : this (parent, "") {}
+ public MyWidget (TQWidget parent) : this (parent, "") {}
public MyWidget () : this (null, "") {}
}
@@ -48,7 +48,7 @@ public class Example {
public static int Main (String[] args)
{
- QApplication a = new QApplication (args);
+ TQApplication a = new TQApplication (args);
MyWidget w = new MyWidget ();
a.SetMainWidget (w);
diff --git a/qtsharp/src/examples/tutorials/t7.cs b/qtsharp/src/examples/tutorials/t7.cs
index de9011f2..e1891d26 100644
--- a/qtsharp/src/examples/tutorials/t7.cs
+++ b/qtsharp/src/examples/tutorials/t7.cs
@@ -9,23 +9,23 @@ using System;
using Qt;
[DeclareQtSignal ("valueChanged(int)")]
-public class LCDRange : QVBox {
+public class LCDRange : TQVBox {
- QSlider slider;
+ TQSlider slider;
- public LCDRange (QWidget parent, String name) : base (parent, name)
+ public LCDRange (TQWidget parent, String name) : base (parent, name)
// In C++, parent and name have default values of 0 (null pointer)
{
- QLCDNumber lcd = new QLCDNumber (2, this, "lcd" );
- slider = new QSlider (Orientation.Horizontal, this, "slider");
+ TQLCDNumber lcd = new TQLCDNumber (2, this, "lcd" );
+ slider = new TQSlider (Orientation.Horizontal, this, "slider");
slider.SetRange (0, 99);
slider.SetValue (0);
- Connect ( slider, SIGNAL ("valueChanged(int)"), lcd, SLOT ("Display(int)") );
- Connect ( slider, SIGNAL ("valueChanged(int)"), SIGNAL ("valueChanged(int)"));
+ Connect ( slider, TQT_SIGNAL ("valueChanged(int)"), lcd, TQT_SLOT ("Display(int)") );
+ Connect ( slider, TQT_SIGNAL ("valueChanged(int)"), TQT_SIGNAL ("valueChanged(int)"));
}
- public LCDRange (QWidget parent) : this (parent, "") {}
+ public LCDRange (TQWidget parent) : this (parent, "") {}
public LCDRange () : this (null, "") {}
// Note that it was necessary to use an empty string ("")
// in the above. Using null does not work at runtime.
@@ -36,16 +36,16 @@ public class LCDRange : QVBox {
}
}
-public class MyWidget : QVBox {
+public class MyWidget : TQVBox {
- MyWidget (QWidget parent, String name) : base (parent, name)
+ MyWidget (TQWidget parent, String name) : base (parent, name)
{
- QPushButton quit = new QPushButton ("Quit", this, "quit");
- quit.SetFont ( new QFont ("Times", 18, QFont.Weight.Bold) );
+ TQPushButton quit = new TQPushButton ("Quit", this, "quit");
+ quit.SetFont ( new TQFont ("Times", 18, TQFont.Weight.Bold) );
- Connect ( quit, SIGNAL ("clicked()"), qApp, SLOT ("Quit()") );
+ Connect ( quit, TQT_SIGNAL ("clicked()"), qApp, TQT_SLOT ("Quit()") );
- QGrid grid = new QGrid (4, this);
+ TQGrid grid = new TQGrid (4, this);
LCDRange previous = null;
@@ -53,14 +53,14 @@ public class MyWidget : QVBox {
for ( int r = 0; r < 4; r++ ) {
LCDRange lr = new LCDRange (grid);
if (previous != null)
- Connect (lr, SIGNAL ("valueChanged(int)"),
- previous, SLOT ("SetValue(int)") );
+ Connect (lr, TQT_SIGNAL ("valueChanged(int)"),
+ previous, TQT_SLOT ("SetValue(int)") );
previous = lr;
}
}
}
- public MyWidget (QWidget parent) : this (parent, "") {}
+ public MyWidget (TQWidget parent) : this (parent, "") {}
public MyWidget () : this (null, "") {}
}
@@ -68,7 +68,7 @@ public class Example {
public static int Main (String[] args)
{
- QApplication a = new QApplication (args);
+ TQApplication a = new TQApplication (args);
MyWidget w = new MyWidget ();
a.SetMainWidget (w);