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/KCustomMenuEditor.java

46 lines
1.3 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.QWidget;
/**
*/
public class KCustomMenuEditor extends KDialogBase {
protected KCustomMenuEditor(Class dummy){super((Class) null);}
public native QMetaObject metaObject();
public native String className();
/**
Create a dialog for editing a custom menu
@short Create a dialog for editing a custom menu
*/
public KCustomMenuEditor(QWidget parent) {
super((Class) null);
newKCustomMenuEditor(parent);
}
private native void newKCustomMenuEditor(QWidget parent);
/**
load the custom menu
@short load the custom menu
*/
public native void load(KConfigBase arg1);
/**
save the custom menu
@short save the custom menu
*/
public native void save(KConfigBase arg1);
public native void slotNewItem();
public native void slotRemoveItem();
public native void slotMoveUp();
public native void slotMoveDown();
public native void refreshButton();
/** 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();
}