summaryrefslogtreecommitdiffstats
path: root/qtjava/javalib/examples/splitter/Test.java
blob: d77bb78d833650abd0a00c4f6bfdf986c4e121c0 (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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
/***************************************************************************
* $Id$
**
* Copyright (C) 1992-2000 Trolltech AS.  All rights reserved.
**
* This file is part of an example program for Qt.  This example
* program may be used, distributed and modified without limitation.
**
****************************************************************************/

import org.trinitydesktop.qt.*;



class Test  extends TQWidget {


Test(TQWidget parent, String name)
{
	this(parent, name, 0);
}

Test(TQWidget parent, String name, int f)
{
    super(parent, name, f);

}

public void paintEvent(TQPaintEvent e)
{
    TQPainter p = new TQPainter(this);
    p.setClipRect(e.rect());
    int d = 1000; //large number
    int x1 = 0;
    int x2 = width()-1;
    int y1 = 0;
    int y2 = height()-1;

    int x = (x1+x2)/2;
    p.drawLine( x, y1, x+d, y1+d   );
    p.drawLine( x, y1, x-d, y1+d   );
    p.drawLine( x, y2, x+d, y2-d   );
    p.drawLine( x, y2, x-d, y2-d   );

    int y = (y1+y2)/2;
    p.drawLine( x1, y, x1+d, y+d   );
    p.drawLine( x1, y, x1+d, y-d   );
    p.drawLine( x2, y, x2-d, y+d   );
    p.drawLine( x2, y, x2-d, y-d   );
	p.end();
}


public static void main(String[] args)
{
    TQApplication a = new TQApplication( args );

    TQSplitter s1 = new TQSplitter( TQSplitter.Vertical, null , "main" );

    TQSplitter s2 = new TQSplitter( TQSplitter.Horizontal, s1, "top" );

    Test t1 = new Test( s2, "topLeft" );
    t1.setBackgroundColor( Qt.blue().light( 180 ) );
    t1.setMinimumSize( 50, 0 );

    Test t2 = new Test( s2, "topRight" );
    t2.setBackgroundColor( Qt.green().light( 180 ) );
    s2.setResizeMode( t2, TQSplitter.KeepSize );
    s2.moveToFirst( t2 );

    TQSplitter s3 = new TQSplitter( TQSplitter.Horizontal,  s1, "bottom" );

    Test t3 = new Test( s3, "bottomLeft" );
    t3.setBackgroundColor( Qt.red() );
    Test t4 = new Test( s3, "bottomMiddle" );
    t4.setBackgroundColor( Qt.white() );

    Test t5 = new Test( s3, "bottomRight" );
    t5.setMaximumHeight( 250 );
    t5.setMinimumSize( 80, 50 );
    t5.setBackgroundColor( Qt.yellow() );

    // Qt/Embedded XOR drawing not yet implemented.
    s1.setOpaqueResize( true );
    s2.setOpaqueResize( true );
    s3.setOpaqueResize( true );

    a.setMainWidget( s1 );
    s1.setCaption("Qt Example - Splitters");
    s1.show();
    int result = a.exec();
    return;
}
	static {
		qtjava.initialize();
	}
}