summaryrefslogtreecommitdiffstats
path: root/qtjava/javalib/org/kde/qt/QApplication.java
blob: 171536ab270050ecb8b10ccb8916c72c3d498ac5 (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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
//Auto-generated by kalyptus. DO NOT EDIT.
package org.kde.qt;

import org.kde.qt.Qt;
import java.util.ArrayList;

/**
 See {@link TQApplicationSignals} for signals emitted by TQApplication
*/
public class TQApplication extends TQObject  {
	protected TQApplication(Class dummy){super((Class) null);}
	public static final int Tty = 0;
	public static final int GuiClient = 1;
	public static final int GuiServer = 2;

	public static final int NormalColors = 0;
	public static final int CustomColors = 1;

	public static final int NormalColor = 0;
	public static final int CustomColor = 1;
	public static final int ManyColor = 2;

	public static final int DefaultCodec = 0;
	public static final int UnicodeUTF8 = 1;

	public native TQMetaObject metaObject();
	public native String className();
	public TQApplication(String[] argv) {
		super((Class) null);
		newTQApplication(argv);
	}
	private native void newTQApplication(String[] argv);
	public TQApplication(String[] argv, boolean GUIenabled) {
		super((Class) null);
		newTQApplication(argv,GUIenabled);
	}
	private native void newTQApplication(String[] argv, boolean GUIenabled);
	public TQApplication(String[] argv, int arg3) {
		super((Class) null);
		newTQApplication(argv,arg3);
	}
	private native void newTQApplication(String[] argv, int arg3);
	public native int type();
	public native TQWidget mainWidget();
	public native void setMainWidget(TQWidget arg1);
	public native void polish(TQWidget arg1);
	public native TQWidget focusWidget();
	public native TQWidget activeWindow();
	public native int exec();
	public native void processEvents();
	public native void processEvents(int maxtime);
	public native void processOneEvent();
	public native boolean hasPendingEvents();
	public native int enter_loop();
	public native void exit_loop();
	public native int loopLevel();
	public native boolean notify(TQObject arg1, TQEvent arg2);
	public native void setDefaultCodec(TQTextCodec arg1);
	public native TQTextCodec defaultCodec();
	public native void installTranslator(TQTranslator arg1);
	public native void removeTranslator(TQTranslator arg1);
	public native String translate(String context, String key, String comment, int encoding);
	public native String translate(String context, String key, String comment);
	public native String translate(String context, String key);
	public native String applicationDirPath();
	public native String applicationFilePath();
	public native boolean isSessionRestored();
	public native String sessionId();
	public native String sessionKey();
	public native void commitData(TQSessionManager sm);
	public native void saveState(TQSessionManager sm);
	public native void wakeUpGuiThread();
	public native void quit();
	public native void closeAllWindows();
	public native void aboutTQt();
	public static native String tr(String arg1, String arg2);
	public static native String tr(String arg1);
	public static native TQStyle style();
	public static native void setStyle(TQStyle arg1);
	public static native TQStyle setStyle(String arg1);
	public static native int colorMode();
	public static native void setColorMode(int arg1);
	public static native int colorSpec();
	public static native void setColorSpec(int arg1);
	public static native TQCursor overrideCursor();
	public static native void setOverrideCursor(TQCursor arg1, boolean replace);
	public static native void setOverrideCursor(TQCursor arg1);
	public static native void restoreOverrideCursor();
	public static native boolean hasGlobalMouseTracking();
	public static native void setGlobalMouseTracking(boolean enable);
	public static native TQPalette palette(TQWidget arg1);
	public static native TQPalette palette();
	public static native void setPalette(TQPalette arg1, boolean informWidgets, String className);
	public static native void setPalette(TQPalette arg1, boolean informWidgets);
	public static native void setPalette(TQPalette arg1);
	public static native TQFont font(TQWidget arg1);
	public static native TQFont font();
	public static native void setFont(TQFont arg1, boolean informWidgets, String className);
	public static native void setFont(TQFont arg1, boolean informWidgets);
	public static native void setFont(TQFont arg1);
	public static native TQFontMetrics fontMetrics();
	public static native ArrayList allWidgets();
	public static native ArrayList topLevelWidgets();
	public static native TQDesktopWidget desktop();
	public static native TQWidget activePopupWidget();
	public static native TQWidget activeModalWidget();
	public static native TQClipboard clipboard();
	public static native TQWidget widgetAt(int x, int y, boolean child);
	public static native TQWidget widgetAt(int x, int y);
	public static native TQWidget widgetAt(TQPoint arg1, boolean child);
	public static native TQWidget widgetAt(TQPoint arg1);
	public static native TQEventLoop eventLoop();
	public static native void exit(int retcode);
	public static native void exit();
	public static native boolean sendEvent(TQObject receiver, TQEvent event);
	public static native void postEvent(TQObject receiver, TQEvent event);
	public static native void sendPostedEvents(TQObject receiver, int event_type);
	public static native void sendPostedEvents();
	public static native void removePostedEvents(TQObject receiver);
	public static native boolean startingUp();
	public static native boolean closingDown();
	public static native void flushX();
	public static native void flush();
	public static native void syncX();
	public static native void beep();
	public static native void setWinStyleHighlightColor(TQColor c);
	public static native TQColor winStyleHighlightColor();
	public static native void setDesktopSettingsAware(boolean arg1);
	public static native boolean desktopSettingsAware();
	public static native void setCursorFlashTime(int arg1);
	public static native int cursorFlashTime();
	public static native void setDoubleClickInterval(int arg1);
	public static native int doubleClickInterval();
	public static native void setWheelScrollLines(int arg1);
	public static native int wheelScrollLines();
	public static native void setGlobalStrut(TQSize arg1);
	public static native TQSize globalStrut();
	public static native void setLibraryPaths(String[] arg1);
	public static native ArrayList libraryPaths();
	public static native void addLibraryPath(String arg1);
	public static native void removeLibraryPath(String arg1);
	public static native void setStartDragTime(int ms);
	public static native int startDragTime();
	public static native void setStartDragDistance(int l);
	public static native int startDragDistance();
	public static native void setReverseLayout(boolean b);
	public static native boolean reverseLayout();
	public static native int horizontalAlignment(int align);
	public static native boolean isEffectEnabled(int arg1);
	public static native void setEffectEnabled(int arg1, boolean enable);
	public static native void setEffectEnabled(int arg1);
	public native boolean event(TQEvent arg1);
	/** Deletes the wrapped C++ instance */
	protected native void finalize() throws InternalError;
	/** Delete the wrapped C++ instance ahead of finalize() */
	public native void dispose();
	/** Has the wrapped C++ instance been deleted? */
	public native boolean isDisposed();
	public native String[] args();

}