You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdebindings/qtjava/javalib/org/kde/qt/QDockWindow.java

117 lines
4.2 KiB
Java

//Auto-generated by kalyptus. DO NOT EDIT.
package org.kde.qt;
import org.kde.qt.Qt;
/**
See {@link QDockWindowSignals} for signals emitted by QDockWindow
*/
public class QDockWindow extends QFrame {
protected QDockWindow(Class dummy){super((Class) null);}
public static final int InDock = 0;
public static final int OutsideDock = 1;
public static final int Never = 0;
public static final int Docked = 1;
public static final int Undocked = 2;
public static final int Always = Docked|Undocked;
public native QMetaObject metaObject();
public native String className();
public QDockWindow(int p, QWidget parent, String name, int f) {
super((Class) null);
newQDockWindow(p,parent,name,f);
}
private native void newQDockWindow(int p, QWidget parent, String name, int f);
public QDockWindow(int p, QWidget parent, String name) {
super((Class) null);
newQDockWindow(p,parent,name);
}
private native void newQDockWindow(int p, QWidget parent, String name);
public QDockWindow(int p, QWidget parent) {
super((Class) null);
newQDockWindow(p,parent);
}
private native void newQDockWindow(int p, QWidget parent);
public QDockWindow(int p) {
super((Class) null);
newQDockWindow(p);
}
private native void newQDockWindow(int p);
public QDockWindow() {
super((Class) null);
newQDockWindow();
}
private native void newQDockWindow();
public QDockWindow(QWidget parent, String name, int f) {
super((Class) null);
newQDockWindow(parent,name,f);
}
private native void newQDockWindow(QWidget parent, String name, int f);
public QDockWindow(QWidget parent, String name) {
super((Class) null);
newQDockWindow(parent,name);
}
private native void newQDockWindow(QWidget parent, String name);
public QDockWindow(QWidget parent) {
super((Class) null);
newQDockWindow(parent);
}
private native void newQDockWindow(QWidget parent);
public native void setWidget(QWidget w);
public native QWidget widget();
public native int place();
public native QDockArea area();
public native void setCloseMode(int m);
public native boolean isCloseEnabled();
public native int closeMode();
public native void setResizeEnabled(boolean b);
public native void setMovingEnabled(boolean b);
public native boolean isResizeEnabled();
public native boolean isMovingEnabled();
public native void setHorizontallyStretchable(boolean b);
public native void setVerticallyStretchable(boolean b);
public native boolean isHorizontallyStretchable();
public native boolean isVerticallyStretchable();
public native void setHorizontalStretchable(boolean b);
public native void setVerticalStretchable(boolean b);
public native boolean isHorizontalStretchable();
public native boolean isVerticalStretchable();
public native boolean isStretchable();
public native void setOffset(int o);
public native int offset();
public native void setFixedExtentWidth(int w);
public native void setFixedExtentHeight(int h);
public native QSize fixedExtent();
public native void setNewLine(boolean b);
public native boolean newLine();
public native int orientation();
public native QSize sizeHint();
public native QSize minimumSize();
public native QSize minimumSizeHint();
public native QBoxLayout boxLayout();
public native void setOpaqueMoving(boolean b);
public native boolean opaqueMoving();
public native boolean eventFilter(QObject o, QEvent e);
public native void undock(QWidget w);
public native void undock();
public native void dock();
public native void setOrientation(int o);
public native void setCaption(String s);
public static native String tr(String arg1, String arg2);
public static native String tr(String arg1);
protected native void resizeEvent(QResizeEvent e);
public native void showEvent(QShowEvent e);
protected native void hideEvent(QHideEvent e);
protected native void contextMenuEvent(QContextMenuEvent e);
protected native void drawFrame(QPainter arg1);
protected native void drawContents(QPainter arg1);
public native boolean event(QEvent 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();
}