diff options
author | Darrell Anderson <humanreadable@yahoo.com> | 2014-01-08 20:06:00 +0100 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2014-01-08 20:06:00 +0100 |
commit | 636f509299122d02087c6fd62e1e4a46dbd22026 (patch) | |
tree | 70e43efceeb5b00e7f19cdac8da44928bd2fb459 /tdejava/koala/org/trinitydesktop/koala/KSSLCertDlg.java | |
parent | 719b61750c08343f530068ed4127623aeac71cf0 (diff) | |
download | tdebindings-636f509299122d02087c6fd62e1e4a46dbd22026.tar.gz tdebindings-636f509299122d02087c6fd62e1e4a46dbd22026.zip |
Rename many classes to avoid conflicts with KDE
Diffstat (limited to 'tdejava/koala/org/trinitydesktop/koala/KSSLCertDlg.java')
-rw-r--r-- | tdejava/koala/org/trinitydesktop/koala/KSSLCertDlg.java | 94 |
1 files changed, 94 insertions, 0 deletions
diff --git a/tdejava/koala/org/trinitydesktop/koala/KSSLCertDlg.java b/tdejava/koala/org/trinitydesktop/koala/KSSLCertDlg.java new file mode 100644 index 00000000..fa9b27f7 --- /dev/null +++ b/tdejava/koala/org/trinitydesktop/koala/KSSLCertDlg.java @@ -0,0 +1,94 @@ +//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; + +/** + + KDE X.509 Certificate Dialog + This class is used to create and display a dialog which contains the user's + X.509 certificates and allows the user to present it during SSL sessions. + @author George Staikos <staikos@kde.org> + + @short KDE X.509 Certificate Dialog. + @see KSSL + +*/ +public class KSSLCertDlg extends KDialog { + protected KSSLCertDlg(Class dummy){super((Class) null);} + public native TQMetaObject metaObject(); + public native String className(); + /** + Construct a KSSL certificate dialog + @param parent the parent widget + @param name the internal name of this instance + @param modal create a modal dialog if set to true + @short Construct a KSSL certificate dialog + */ + public KSSLCertDlg(TQWidget parent, String name, boolean modal) { + super((Class) null); + newKSSLCertDlg(parent,name,modal); + } + private native void newKSSLCertDlg(TQWidget parent, String name, boolean modal); + public KSSLCertDlg(TQWidget parent, String name) { + super((Class) null); + newKSSLCertDlg(parent,name); + } + private native void newKSSLCertDlg(TQWidget parent, String name); + public KSSLCertDlg(TQWidget parent) { + super((Class) null); + newKSSLCertDlg(parent); + } + private native void newKSSLCertDlg(TQWidget parent); + public KSSLCertDlg() { + super((Class) null); + newKSSLCertDlg(); + } + private native void newKSSLCertDlg(); + /** + Setup the dialog. Call this before you display the dialog. + @param certs the list of possible certificates + @param saveChecked save the checked item for the future + @param sendChecked send the checked item to the remote host + @short Setup the dialog. + */ + public native void setupDialog(String[] certs, boolean saveChecked, boolean sendChecked); + public native void setupDialog(String[] certs, boolean saveChecked); + public native void setupDialog(String[] certs); + /** + Obtain the name of the certificate the user wants to send + @return the name of the certificate + + @short Obtain the name of the certificate the user wants to send + */ + public native String getChoice(); + /** + Determine if the user wants to send a certificate. + @return true if the user wants to send a certificate + + @short Determine if the user wants to send a certificate. + */ + public native boolean wantsToSend(); + /** + Determine if the user wants to save the choice for the future. + @return true if the user wants to save the choice. + + @short Determine if the user wants to save the choice for the future. + */ + public native boolean saveChoice(); + /** + Set the hostname that we are connecting to. + @param host the hostname + @short Set the hostname that we are connecting to. + */ + public native void setHost(String host); + /** 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(); +} |