diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-05 15:55:57 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-05 15:55:57 -0600 |
commit | 9ba04742771370f59740e32e11c5f3a1e6a1b70a (patch) | |
tree | c81c34dae2b3b1ea73801bf18a960265dc4207f7 /qtjava/javalib/org/kde/qt/QDesktopWidget.java | |
parent | 1a96c45b22d01378202d9dc7ed9c47acd30f966e (diff) | |
download | tdebindings-9ba04742771370f59740e32e11c5f3a1e6a1b70a.tar.gz tdebindings-9ba04742771370f59740e32e11c5f3a1e6a1b70a.zip |
Initial TQt conversion
Diffstat (limited to 'qtjava/javalib/org/kde/qt/QDesktopWidget.java')
-rw-r--r-- | qtjava/javalib/org/kde/qt/QDesktopWidget.java | 42 |
1 files changed, 21 insertions, 21 deletions
diff --git a/qtjava/javalib/org/kde/qt/QDesktopWidget.java b/qtjava/javalib/org/kde/qt/QDesktopWidget.java index e147bbdd..a075b96d 100644 --- a/qtjava/javalib/org/kde/qt/QDesktopWidget.java +++ b/qtjava/javalib/org/kde/qt/QDesktopWidget.java @@ -4,37 +4,37 @@ package org.kde.qt; import org.kde.qt.Qt; /** - See {@link QDesktopWidgetSignals} for signals emitted by QDesktopWidget + See {@link TQDesktopWidgetSignals} for signals emitted by TQDesktopWidget */ -public class QDesktopWidget extends QWidget { - protected QDesktopWidget(Class dummy){super((Class) null);} - public native QMetaObject metaObject(); +public class TQDesktopWidget extends TQWidget { + protected TQDesktopWidget(Class dummy){super((Class) null);} + public native TQMetaObject metaObject(); public native String className(); - public QDesktopWidget() { + public TQDesktopWidget() { super((Class) null); - newQDesktopWidget(); + newTQDesktopWidget(); } - private native void newQDesktopWidget(); + private native void newTQDesktopWidget(); public native boolean isVirtualDesktop(); public native int numScreens(); public native int primaryScreen(); - public native int screenNumber(QWidget widget); + public native int screenNumber(TQWidget widget); public native int screenNumber(); - public native int screenNumber(QPoint arg1); - public native QWidget screen(int screen); - public native QWidget screen(); - public native QRect screenGeometry(int screen); - public native QRect screenGeometry(); - public native QRect screenGeometry(QWidget widget); - public native QRect screenGeometry(QPoint point); - public native QRect availableGeometry(int screen); - public native QRect availableGeometry(); - public native QRect availableGeometry(QWidget widget); - public native QRect availableGeometry(QPoint point); - public native void insertChild(QObject arg1); + public native int screenNumber(TQPoint arg1); + public native TQWidget screen(int screen); + public native TQWidget screen(); + public native TQRect screenGeometry(int screen); + public native TQRect screenGeometry(); + public native TQRect screenGeometry(TQWidget widget); + public native TQRect screenGeometry(TQPoint point); + public native TQRect availableGeometry(int screen); + public native TQRect availableGeometry(); + public native TQRect availableGeometry(TQWidget widget); + public native TQRect availableGeometry(TQPoint point); + public native void insertChild(TQObject arg1); public static native String tr(String arg1, String arg2); public static native String tr(String arg1); - protected native void resizeEvent(QResizeEvent e); + protected native void resizeEvent(TQResizeEvent e); /** Deletes the wrapped C++ instance */ protected native void finalize() throws InternalError; /** Delete the wrapped C++ instance ahead of finalize() */ |