//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.TQWidget; import org.kde.qt.TQScrollView; /** 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 @short KDE SSL Certificate Box. @see KSSLInfoDlg */ public class KSSLCertBox extends TQScrollView { 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(TQWidget parent, String name, int f) { super((Class) null); newKSSLCertBox(parent,name,f); } private native void newKSSLCertBox(TQWidget parent, String name, int f); public KSSLCertBox(TQWidget parent, String name) { super((Class) null); newKSSLCertBox(parent,name); } private native void newKSSLCertBox(TQWidget parent, String name); public KSSLCertBox(TQWidget parent) { super((Class) null); newKSSLCertBox(parent); } private native void newKSSLCertBox(TQWidget 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, TQWidget 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(); }