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.
tdebindings/qtjava/javalib/org/trinitydesktop/qt/TQFrame.java

83 lines
2.9 KiB

//Auto-generated by kalyptus. DO NOT EDIT.
package org.trinitydesktop.qt;
import org.trinitydesktop.qt.Qt;
public class TQFrame extends TQWidget {
protected TQFrame(Class dummy){super((Class) null);}
public static final int NoFrame = 0;
public static final int Box = 0x0001;
public static final int Panel = 0x0002;
public static final int WinPanel = 0x0003;
public static final int HLine = 0x0004;
public static final int VLine = 0x0005;
public static final int StyledPanel = 0x0006;
public static final int PopupPanel = 0x0007;
public static final int MenuBarPanel = 0x0008;
public static final int ToolBarPanel = 0x0009;
public static final int LineEditPanel = 0x000a;
public static final int TabWidgetPanel = 0x000b;
public static final int GroupBoxPanel = 0x000c;
public static final int MShape = 0x000f;
public static final int Plain = 0x0010;
public static final int Raised = 0x0020;
public static final int Sunken = 0x0030;
public static final int MShadow = 0x00f0;
public native TQMetaObject metaObject();
public native String className();
public TQFrame(TQWidget parent, String name, int f) {
super((Class) null);
newTQFrame(parent,name,f);
}
private native void newTQFrame(TQWidget parent, String name, int f);
public TQFrame(TQWidget parent, String name) {
super((Class) null);
newTQFrame(parent,name);
}
private native void newTQFrame(TQWidget parent, String name);
public TQFrame(TQWidget parent) {
super((Class) null);
newTQFrame(parent);
}
private native void newTQFrame(TQWidget parent);
public TQFrame() {
super((Class) null);
newTQFrame();
}
private native void newTQFrame();
public native int frameStyle();
public native void setFrameStyle(int arg1);
public native int frameWidth();
public native TQRect contentsRect();
public native boolean lineShapesOk();
public native TQSize sizeHint();
public native int frameShape();
public native void setFrameShape(int arg1);
public native int frameShadow();
public native void setFrameShadow(int arg1);
public native int lineWidth();
public native void setLineWidth(int arg1);
public native int margin();
public native void setMargin(int arg1);
public native int midLineWidth();
public native void setMidLineWidth(int arg1);
public native TQRect frameRect();
public native void setFrameRect(TQRect arg1);
public static native String tr(String arg1, String arg2);
public static native String tr(String arg1);
protected native void paintEvent(TQPaintEvent arg1);
protected native void resizeEvent(TQResizeEvent arg1);
protected native void drawFrame(TQPainter arg1);
protected native void drawContents(TQPainter arg1);
protected native void frameChanged();
public native void styleChange(TQStyle 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();
}