diff options
Diffstat (limited to 'qtjava/javalib/org/kde/qt/QDesktopWidget.java')
-rw-r--r-- | qtjava/javalib/org/kde/qt/QDesktopWidget.java | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/qtjava/javalib/org/kde/qt/QDesktopWidget.java b/qtjava/javalib/org/kde/qt/QDesktopWidget.java new file mode 100644 index 00000000..e147bbdd --- /dev/null +++ b/qtjava/javalib/org/kde/qt/QDesktopWidget.java @@ -0,0 +1,44 @@ +//Auto-generated by kalyptus. DO NOT EDIT. +package org.kde.qt; + +import org.kde.qt.Qt; + +/** + See {@link QDesktopWidgetSignals} for signals emitted by QDesktopWidget +*/ +public class QDesktopWidget extends QWidget { + protected QDesktopWidget(Class dummy){super((Class) null);} + public native QMetaObject metaObject(); + public native String className(); + public QDesktopWidget() { + super((Class) null); + newQDesktopWidget(); + } + private native void newQDesktopWidget(); + public native boolean isVirtualDesktop(); + public native int numScreens(); + public native int primaryScreen(); + public native int screenNumber(QWidget 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 static native String tr(String arg1, String arg2); + public static native String tr(String arg1); + protected native void resizeEvent(QResizeEvent e); + /** 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(); +} |