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/kdejava/koala/org/kde/koala/KArrowButton.java

86 lines
2.6 KiB

//Auto-generated by kalyptus. DO NOT EDIT.
package org.kde.koala;
import org.kde.qt.Qt;
import org.kde.qt.QMetaObject;
import org.kde.qt.QtSupport;
import org.kde.qt.QSize;
import org.kde.qt.QPainter;
import org.kde.qt.QWidget;
import org.kde.qt.QPushButton;
/**
Draws a button which shows an arrow pointing into a certain direction. The
arrow's alignment on the button depends on the direction it's pointing to,
e.g. a left arrow is aligned at the left border, a upwards arrow at the top
border. This class honors the currently configured KStyle when drawing
the arrow.
@author Frerich Raabe
@short Draws a button with an arrow.
*/
public class KArrowButton extends QPushButton {
protected KArrowButton(Class dummy){super((Class) null);}
public native QMetaObject metaObject();
public native String className();
/**
Constructs an arrow button.
@param parent This button's parent
@param arrow The direction the arrrow should be pointing in
@param name An internal name for this widget
@short Constructs an arrow button.
*/
public KArrowButton(QWidget parent, int arrow, String name) {
super((Class) null);
newKArrowButton(parent,arrow,name);
}
private native void newKArrowButton(QWidget parent, int arrow, String name);
public KArrowButton(QWidget parent, int arrow) {
super((Class) null);
newKArrowButton(parent,arrow);
}
private native void newKArrowButton(QWidget parent, int arrow);
public KArrowButton(QWidget parent) {
super((Class) null);
newKArrowButton(parent);
}
private native void newKArrowButton(QWidget parent);
public KArrowButton() {
super((Class) null);
newKArrowButton();
}
private native void newKArrowButton();
/**
Reimplemented from QPushButton.
@short Reimplemented from QPushButton.
*/
public native QSize sizeHint();
/**
Returns the arrow type
@short Returns the arrow type
*/
public native int arrowType();
public native int arrowTp();
public native void setArrowTp(int tp);
/**
Defines in what direction the arrow is pointing to. Will repaint the
button if necessary.
@param a The direction this arrow should be pointing in
@short Defines in what direction the arrow is pointing to.
*/
public native void setArrowType(int a);
/**
Reimplemented from QPushButton.
@short Reimplemented from QPushButton.
*/
protected native void drawButton(QPainter 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();
}