summaryrefslogtreecommitdiffstats
path: root/kdejava/koala/org/kde/koala/KMdi.java
blob: a948d85a8167e0866704bad0934044f28d88f4a3 (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
//Auto-generated by kalyptus. DO NOT EDIT.
package org.kde.koala;

import org.kde.qt.Qt;
import org.kde.qt.QtSupport;

/**
 
		@short A namespace for the KMDI library.

*/
public class KMdi {
	/**	 extent Qt events
				@short   extent Qt events 
		@see org.kde.qt.TQCustomEvent
		@see org.kde.qt.TQEvent#User
		@see <pre>
		@see #boolean
		@see B_MyWidget#event(
		@see org.kde.qt.TQEvent*
		@see #e)
		@see #if(
		@see #e#type
		@see org.kde.qt.TQEvent#Type(TQEvent#User
		@see #int(KMdi#EV_Move)))
		@see </pre>
	*/
	public static final int EV_Move = 1;
	public static final int EV_DragBegin = 2;
	public static final int EV_DragEnd = 3;
	public static final int EV_ResizeBegin = 4;
	public static final int EV_ResizeEnd = 5;

	/**	
		 During KMdiMainFrm.addWindow the enum AddWindowFlags is used to determine how the view is initialy being added to the MDI system
		   		@short    During KMdiMainFrm.addWindow the enum AddWindowFlags is used to determine how the view is initialy being added to the MDI system
	*/
	public static final int StandardAdd = 0;
	public static final int Maximize = 1;
	public static final int Minimize = 2;
	public static final int Hide = 4;
	public static final int Detach = 8;
	public static final int ToolWindow = 16;
	public static final int UseKMdiSizeHint = 32;
	public static final int AddWindowFlags = 0xff;

	public static final int Win95Look = 0;
	public static final int KDE1Look = 1;
	public static final int KDELook = 2;
	public static final int KDELaptopLook = 3;

	public static final int UndefinedMode = 0;
	public static final int ToplevelMode = 1;
	public static final int ChildframeMode = 2;
	public static final int TabPageMode = 3;
	public static final int IDEAlMode = 4;

	public static final int AlwaysShowTabs = 0;
	public static final int ShowWhenMoreThanOneTab = 1;
	public static final int NeverShowTabs = 2;

	/**	
		 The style of the toolview tabs
		 \since 3.3
		   		@short    The style of the toolview tabs  \since 3.
	*/
	public static final int IconOnly = 0;
	public static final int TextOnly = 1;
	public static final int TextAndIcon = 3;

}