summaryrefslogtreecommitdiffstats
path: root/kdejava/koala/org/kde/koala/TDEAboutWidget.java
diff options
context:
space:
mode:
Diffstat (limited to 'kdejava/koala/org/kde/koala/TDEAboutWidget.java')
-rw-r--r--kdejava/koala/org/kde/koala/TDEAboutWidget.java95
1 files changed, 95 insertions, 0 deletions
diff --git a/kdejava/koala/org/kde/koala/TDEAboutWidget.java b/kdejava/koala/org/kde/koala/TDEAboutWidget.java
new file mode 100644
index 00000000..98e39ca1
--- /dev/null
+++ b/kdejava/koala/org/kde/koala/TDEAboutWidget.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.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();
+}