summaryrefslogtreecommitdiffstats
path: root/kdejava/koala/org/kde/koala/KAboutWidget.java
diff options
context:
space:
mode:
Diffstat (limited to 'kdejava/koala/org/kde/koala/KAboutWidget.java')
-rw-r--r--kdejava/koala/org/kde/koala/KAboutWidget.java95
1 files changed, 95 insertions, 0 deletions
diff --git a/kdejava/koala/org/kde/koala/KAboutWidget.java b/kdejava/koala/org/kde/koala/KAboutWidget.java
new file mode 100644
index 00000000..75db7b44
--- /dev/null
+++ b/kdejava/koala/org/kde/koala/KAboutWidget.java
@@ -0,0 +1,95 @@
+//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.QPixmap;
+import org.kde.qt.QWidget;
+import org.kde.qt.QResizeEvent;
+import org.kde.qt.QWidget;
+
+/**
+
+ KAboutWidget is the main widget for KAboutDialog.
+ It has a minimum size set.
+ See {@link KAboutWidgetSignals} for signals emitted by KAboutWidget
+ @short KAboutWidget is the main widget for KAboutDialog.
+
+*/
+public class KAboutWidget extends QWidget {
+ protected KAboutWidget(Class dummy){super((Class) null);}
+ public native QMetaObject metaObject();
+ public native String className();
+ /**
+ The Qt constructor.
+ @short The Qt constructor.
+ */
+ public KAboutWidget(QWidget parent, String name) {
+ super((Class) null);
+ newKAboutWidget(parent,name);
+ }
+ private native void newKAboutWidget(QWidget parent, String name);
+ public KAboutWidget(QWidget parent) {
+ super((Class) null);
+ newKAboutWidget(parent);
+ }
+ private native void newKAboutWidget(QWidget parent);
+ public KAboutWidget() {
+ super((Class) null);
+ newKAboutWidget();
+ }
+ private native void newKAboutWidget();
+ /**
+ 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(QPixmap 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(QResizeEvent 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();
+}