summaryrefslogtreecommitdiffstats
path: root/kdejava/koala/org/kde/koala/KSSLCertBox.java
blob: 31c7655f1f43f0e5e575a5fe26c8d1ed48d127e2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
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.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 <staikos@kde.org>

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