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.
96 lines
3.9 KiB
Java
96 lines
3.9 KiB
Java
//Auto-generated by kalyptus. DO NOT EDIT.
|
|
package org.kde.koala;
|
|
|
|
import org.kde.qt.Qt;
|
|
import org.kde.qt.TQColor;
|
|
import org.kde.qt.TQMetaObject;
|
|
import org.kde.qt.QtSupport;
|
|
import org.kde.qt.TQPoint;
|
|
import org.kde.qt.TQDragMoveEvent;
|
|
import org.kde.qt.TQMouseEvent;
|
|
import org.kde.qt.TQDropEvent;
|
|
import org.kde.qt.TQIconSet;
|
|
import org.kde.qt.TQWidget;
|
|
import org.kde.qt.TQResizeEvent;
|
|
import org.kde.qt.TQWheelEvent;
|
|
import org.kde.qt.TQTab;
|
|
import org.kde.qt.TQTabWidget;
|
|
|
|
/**
|
|
|
|
\brief A widget containing multiple tabs
|
|
See {@link KTabWidgetSignals} for signals emitted by KTabWidget
|
|
@short \brief A widget containing multiple tabs
|
|
|
|
*/
|
|
public class KTabWidget extends TQTabWidget {
|
|
protected KTabWidget(Class dummy){super((Class) null);}
|
|
public native TQMetaObject metaObject();
|
|
public native String className();
|
|
public KTabWidget(TQWidget parent, String name, int f) {
|
|
super((Class) null);
|
|
newKTabWidget(parent,name,f);
|
|
}
|
|
private native void newKTabWidget(TQWidget parent, String name, int f);
|
|
public KTabWidget(TQWidget parent, String name) {
|
|
super((Class) null);
|
|
newKTabWidget(parent,name);
|
|
}
|
|
private native void newKTabWidget(TQWidget parent, String name);
|
|
public KTabWidget(TQWidget parent) {
|
|
super((Class) null);
|
|
newKTabWidget(parent);
|
|
}
|
|
private native void newKTabWidget(TQWidget parent);
|
|
public KTabWidget() {
|
|
super((Class) null);
|
|
newKTabWidget();
|
|
}
|
|
private native void newKTabWidget();
|
|
public native void setTabColor(TQWidget arg1, TQColor color);
|
|
public native TQColor tabColor(TQWidget arg1);
|
|
public native boolean hoverCloseButtonDelayed();
|
|
public native boolean tabCloseActivatePrevious();
|
|
public native boolean automaticResizeTabs();
|
|
public native void setTabBarHidden(boolean hide);
|
|
public native boolean isTabBarHidden();
|
|
public native void insertTab(TQWidget arg1, String arg2, int index);
|
|
public native void insertTab(TQWidget arg1, String arg2);
|
|
public native void insertTab(TQWidget child, TQIconSet iconset, String label, int index);
|
|
public native void insertTab(TQWidget child, TQIconSet iconset, String label);
|
|
public native void insertTab(TQWidget arg1, TQTab arg2, int index);
|
|
public native void insertTab(TQWidget arg1, TQTab arg2);
|
|
public native void changeTab(TQWidget arg1, String arg2);
|
|
public native void changeTab(TQWidget child, TQIconSet iconset, String label);
|
|
public native String label(int arg1);
|
|
public native String tabLabel(TQWidget arg1);
|
|
public native void setTabLabel(TQWidget arg1, String arg2);
|
|
public native void moveTab(int arg1, int arg2);
|
|
public native void removePage(TQWidget w);
|
|
public native void setTabReorderingEnabled(boolean enable);
|
|
public native void setHoverCloseButton(boolean enable);
|
|
public native void setHoverCloseButtonDelayed(boolean delayed);
|
|
public native void setTabCloseActivatePrevious(boolean previous);
|
|
public native void setAutomaticResizeTabs(boolean enable);
|
|
protected native void mouseDoubleClickEvent(TQMouseEvent e);
|
|
protected native void mousePressEvent(TQMouseEvent arg1);
|
|
protected native void dragMoveEvent(TQDragMoveEvent arg1);
|
|
protected native void dropEvent(TQDropEvent arg1);
|
|
protected native int tabBarWidthForMaxChars(int maxLength);
|
|
protected native void wheelEvent(TQWheelEvent e);
|
|
protected native void resizeEvent(TQResizeEvent arg1);
|
|
protected native void receivedDropEvent(int arg1, TQDropEvent arg2);
|
|
protected native void initiateDrag(int arg1);
|
|
protected native void contextMenu(int arg1, TQPoint arg2);
|
|
protected native void mouseDoubleClick(int arg1);
|
|
protected native void mouseMiddleClick(int arg1);
|
|
protected native void closeRequest(int arg1);
|
|
protected native void wheelDelta(int 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();
|
|
}
|