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

96 lines
3.0 KiB

//Auto-generated by kalyptus. DO NOT EDIT.
package org.kde.koala;
import org.kde.qt.Qt;
import org.kde.qt.TQMetaObject;
import org.kde.qt.QtSupport;
import org.kde.qt.TQPixmap;
import org.kde.qt.TQWidget;
import org.kde.qt.TQResizeEvent;
import org.kde.qt.TQWidget;
/**
TDEAboutWidget is the main widget for TDEAboutDialog.
It has a minimum size set.
See {@link TDEAboutWidgetSignals} for signals emitted by TDEAboutWidget
@short TDEAboutWidget is the main widget for TDEAboutDialog.
*/
public class TDEAboutWidget extends TQWidget {
protected TDEAboutWidget(Class dummy){super((Class) null);}
public native TQMetaObject metaObject();
public native String className();
/**
The Qt constructor.
@short The Qt constructor.
*/
public TDEAboutWidget(TQWidget parent, String name) {
super((Class) null);
newTDEAboutWidget(parent,name);
}
private native void newTDEAboutWidget(TQWidget parent, String name);
public TDEAboutWidget(TQWidget parent) {
super((Class) null);
newTDEAboutWidget(parent);
}
private native void newTDEAboutWidget(TQWidget parent);
public TDEAboutWidget() {
super((Class) null);
newTDEAboutWidget();
}
private native void newTDEAboutWidget();
/**
Adjust the minimum size (after setting the properties of the image and
the labels.
@short Adjust the minimum size (after setting the properties of the image and the labels.
*/
public native void adjust();
/**
Sets the image as the application logo.
@short Sets the image as the application logo.
*/
public native void setLogo(TQPixmap arg1);
/**
Sets the author's name and email address.
@short Sets the author's name and email address.
*/
public native void setAuthor(String name, String email, String url, String work);
/**
Sets the maintainers name and email address.
@short Sets the maintainers name and email address.
*/
public native void setMaintainer(String name, String email, String url, String work);
/**
Shows this person as one of the major contributors.
@short Shows this person as one of the major contributors.
*/
public native void addContributor(String name, String email, String url, String work);
/**
Sets the text describing the version.
@short Sets the text describing the version.
*/
public native void setVersion(String name);
/**
The resize event.
@short The resize event.
*/
protected native void resizeEvent(TQResizeEvent arg1);
/**
Catches the signals from the contributors elements.
@short Catches the signals from the contributors elements.
*/
protected native void sendEmailSlot(String name, String email);
/**
Catches the clicked URLs.
@short Catches the clicked URLs.
*/
protected native void openURLSlot(String url);
/** 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();
}