You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdebindings/kdejava/koala/org/kde/koala/KSSLCertBox.java

65 lines
2.0 KiB

//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();
}