You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
117 lines
4.3 KiB
117 lines
4.3 KiB
//Auto-generated by kalyptus. DO NOT EDIT.
|
|
package org.trinitydesktop.qt;
|
|
|
|
import org.trinitydesktop.qt.Qt;
|
|
|
|
/**
|
|
See {@link TQDockWindowSignals} for signals emitted by TQDockWindow
|
|
*/
|
|
public class TQDockWindow extends TQFrame {
|
|
protected TQDockWindow(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 TQMetaObject metaObject();
|
|
public native String className();
|
|
public TQDockWindow(int p, TQWidget parent, String name, int f) {
|
|
super((Class) null);
|
|
newTQDockWindow(p,parent,name,f);
|
|
}
|
|
private native void newTQDockWindow(int p, TQWidget parent, String name, int f);
|
|
public TQDockWindow(int p, TQWidget parent, String name) {
|
|
super((Class) null);
|
|
newTQDockWindow(p,parent,name);
|
|
}
|
|
private native void newTQDockWindow(int p, TQWidget parent, String name);
|
|
public TQDockWindow(int p, TQWidget parent) {
|
|
super((Class) null);
|
|
newTQDockWindow(p,parent);
|
|
}
|
|
private native void newTQDockWindow(int p, TQWidget parent);
|
|
public TQDockWindow(int p) {
|
|
super((Class) null);
|
|
newTQDockWindow(p);
|
|
}
|
|
private native void newTQDockWindow(int p);
|
|
public TQDockWindow() {
|
|
super((Class) null);
|
|
newTQDockWindow();
|
|
}
|
|
private native void newTQDockWindow();
|
|
public TQDockWindow(TQWidget parent, String name, int f) {
|
|
super((Class) null);
|
|
newTQDockWindow(parent,name,f);
|
|
}
|
|
private native void newTQDockWindow(TQWidget parent, String name, int f);
|
|
public TQDockWindow(TQWidget parent, String name) {
|
|
super((Class) null);
|
|
newTQDockWindow(parent,name);
|
|
}
|
|
private native void newTQDockWindow(TQWidget parent, String name);
|
|
public TQDockWindow(TQWidget parent) {
|
|
super((Class) null);
|
|
newTQDockWindow(parent);
|
|
}
|
|
private native void newTQDockWindow(TQWidget parent);
|
|
public native void setWidget(TQWidget w);
|
|
public native TQWidget widget();
|
|
public native int place();
|
|
public native TQDockArea 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 TQSize fixedExtent();
|
|
public native void setNewLine(boolean b);
|
|
public native boolean newLine();
|
|
public native int orientation();
|
|
public native TQSize sizeHint();
|
|
public native TQSize minimumSize();
|
|
public native TQSize minimumSizeHint();
|
|
public native TQBoxLayout boxLayout();
|
|
public native void setOpaqueMoving(boolean b);
|
|
public native boolean opaqueMoving();
|
|
public native boolean eventFilter(TQObject o, TQEvent e);
|
|
public native void undock(TQWidget 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(TQResizeEvent e);
|
|
public native void showEvent(TQShowEvent e);
|
|
protected native void hideEvent(TQHideEvent e);
|
|
protected native void contextMenuEvent(TQContextMenuEvent e);
|
|
protected native void drawFrame(TQPainter arg1);
|
|
protected native void drawContents(TQPainter arg1);
|
|
public native boolean event(TQEvent 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();
|
|
}
|