summaryrefslogtreecommitdiffstats
path: root/tdejava/koala/org/trinitydesktop/koala/KBugReport.java
diff options
context:
space:
mode:
Diffstat (limited to 'tdejava/koala/org/trinitydesktop/koala/KBugReport.java')
-rw-r--r--tdejava/koala/org/trinitydesktop/koala/KBugReport.java103
1 files changed, 103 insertions, 0 deletions
diff --git a/tdejava/koala/org/trinitydesktop/koala/KBugReport.java b/tdejava/koala/org/trinitydesktop/koala/KBugReport.java
new file mode 100644
index 00000000..11622e29
--- /dev/null
+++ b/tdejava/koala/org/trinitydesktop/koala/KBugReport.java
@@ -0,0 +1,103 @@
+//Auto-generated by kalyptus. DO NOT EDIT.
+package org.trinitydesktop.koala;
+
+import org.trinitydesktop.qt.Qt;
+import org.trinitydesktop.qt.TQMetaObject;
+import org.trinitydesktop.qt.QtSupport;
+import org.trinitydesktop.qt.TQWidget;
+
+/**
+
+ All the information needed by the dialog box
+ (program name, version, bug-report address, etc.)
+ comes from the TDEAboutData class.
+ Make sure you create an instance of TDEAboutData and pass it
+ to TDECmdLineArgs.
+ @author David Faure <faure@kde.org>
+
+ @short A dialog box for sending bug reports.
+
+*/
+public class KBugReport extends KDialogBase {
+ protected KBugReport(Class dummy){super((Class) null);}
+ public native TQMetaObject metaObject();
+ public native String className();
+ /**
+ Creates a bug-report dialog.
+ Note that you shouldn't have to do this manually,
+ since KHelpMenu takes care of the menu item
+ for "Report Bug..." and of creating a KBugReport dialog.
+ @short Creates a bug-report dialog.
+ */
+ public KBugReport(TQWidget parent, boolean modal, TDEAboutData aboutData) {
+ super((Class) null);
+ newKBugReport(parent,modal,aboutData);
+ }
+ private native void newKBugReport(TQWidget parent, boolean modal, TDEAboutData aboutData);
+ public KBugReport(TQWidget parent, boolean modal) {
+ super((Class) null);
+ newKBugReport(parent,modal);
+ }
+ private native void newKBugReport(TQWidget parent, boolean modal);
+ public KBugReport(TQWidget parent) {
+ super((Class) null);
+ newKBugReport(parent);
+ }
+ private native void newKBugReport(TQWidget parent);
+ public KBugReport() {
+ super((Class) null);
+ newKBugReport();
+ }
+ private native void newKBugReport();
+ /**
+ A complete copy of the bug report
+ @return String copy of the bug report.
+
+ @short A complete copy of the bug report
+ */
+ protected native String text();
+ /**
+ Attempt to e-mail the bug report.
+ @return true on success
+
+ @short Attempt to e-mail the bug report.
+ */
+ protected native boolean sendBugReport();
+ /**
+ "Configure email" has been clicked - this calls tdecmshell System/email
+ @short "Configure email" has been clicked - this calls tdecmshell System/email
+ */
+ protected native void slotConfigureEmail();
+ /**
+ Sets the "From" field from the e-mail configuration
+ Called at creation time, but also after "Configure email" is closed.
+ @short Sets the "From" field from the e-mail configuration Called at creation time, but also after "Configure email" is closed.
+ */
+ protected native void slotSetFrom();
+ /**
+ OK has been clicked
+ @short OK has been clicked
+ */
+ protected native void slotOk();
+ /**
+ Cancel has been clicked
+ @short Cancel has been clicked
+ */
+ protected native void slotCancel();
+ /**
+ Application combo selection changed (and was activated)
+ @short Application combo selection changed (and was activated)
+ */
+ protected native void appChanged(int arg1);
+ /**
+ Update the url to match the current os, compiler, selected app, etc
+ @short Update the url to match the current os, compiler, selected app, etc
+ */
+ protected native void updateURL();
+ /** 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();
+}