summaryrefslogtreecommitdiffstats
path: root/kdejava/koala/org/kde/koala/KSSLCertBox.java
diff options
context:
space:
mode:
Diffstat (limited to 'kdejava/koala/org/kde/koala/KSSLCertBox.java')
-rw-r--r--kdejava/koala/org/kde/koala/KSSLCertBox.java64
1 files changed, 64 insertions, 0 deletions
diff --git a/kdejava/koala/org/kde/koala/KSSLCertBox.java b/kdejava/koala/org/kde/koala/KSSLCertBox.java
new file mode 100644
index 00000000..0918d760
--- /dev/null
+++ b/kdejava/koala/org/kde/koala/KSSLCertBox.java
@@ -0,0 +1,64 @@
+//Auto-generated by kalyptus. DO NOT EDIT.
+package org.kde.koala;
+
+import org.kde.qt.Qt;
+import org.kde.qt.QtSupport;
+import org.kde.qt.QWidget;
+import org.kde.qt.QScrollView;
+
+/**
+
+ KDE SSL Certificate Box
+ This class creates a widget which formats and displays the contents of an
+ SSL X.509 certificate. That is, it takes the "subject" of the certificate
+ and displays everything contained therein.
+ @author George Staikos <staikos@kde.org>
+
+ @short KDE SSL Certificate Box.
+ @see KSSLInfoDlg
+
+*/
+public class KSSLCertBox extends QScrollView {
+ protected KSSLCertBox(Class dummy){super((Class) null);}
+ /**
+ Construct a certificate box
+ @param parent the parent widget
+ @param name the internal name of this instance
+ @param f widget flags for the object
+ @short Construct a certificate box
+ */
+ public KSSLCertBox(QWidget parent, String name, int f) {
+ super((Class) null);
+ newKSSLCertBox(parent,name,f);
+ }
+ private native void newKSSLCertBox(QWidget parent, String name, int f);
+ public KSSLCertBox(QWidget parent, String name) {
+ super((Class) null);
+ newKSSLCertBox(parent,name);
+ }
+ private native void newKSSLCertBox(QWidget parent, String name);
+ public KSSLCertBox(QWidget parent) {
+ super((Class) null);
+ newKSSLCertBox(parent);
+ }
+ private native void newKSSLCertBox(QWidget parent);
+ public KSSLCertBox() {
+ super((Class) null);
+ newKSSLCertBox();
+ }
+ private native void newKSSLCertBox();
+ /**
+ Change the contents of the widget
+ @param certName the name ("subject") of the certificate
+ @param mailCatcher the widget which catches the url open events
+ @short Change the contents of the widget
+ */
+ public native void setValues(String certName, QWidget mailCatcher);
+ public native void setValues(String certName);
+ /** 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();
+}