summaryrefslogtreecommitdiffstats
path: root/qtsharp/src/examples/tutorials/t2.cs
blob: 3692e8f476bd7c40b58127fe4868b34793187324 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
// Qt# tutorial 2
// Based on the Qt tutorial
// Implemented by Marcus Urban

using System;
using Qt;

public class Example {

	public static int Main (String[] args)
	{
		TQApplication a = new TQApplication (args);
		
		TQPushButton quit = new TQPushButton ("Quit", null);
		// In C++, the second parameter is 0 (null pointer)
		
		quit.Resize (75, 30);
		quit.SetFont (new TQFont ("Times", 18, TQFont.Weight.Bold));
		// In C++, TQFont::Bold is sufficient
		
		TQObject.Connect ( quit, QtSupport.TQ_SIGNAL ("clicked()"), a, QtSupport.TQ_SLOT ("Quit()") );
		// TQ_SIGNAL and TQ_SLOT are static functions of QtSupport
		
		a.SetMainWidget (quit);
		quit.Show ();
		return a.Exec ();
	}
}