diff options
author | Darrell Anderson <[email protected]> | 2014-01-08 20:06:00 +0100 |
---|---|---|
committer | Slávek Banko <[email protected]> | 2014-01-08 20:06:00 +0100 |
commit | 636f509299122d02087c6fd62e1e4a46dbd22026 (patch) | |
tree | 70e43efceeb5b00e7f19cdac8da44928bd2fb459 /tdejava/koala/org/trinitydesktop/koala/KAuthIcon.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/KAuthIcon.java')
-rw-r--r-- | tdejava/koala/org/trinitydesktop/koala/KAuthIcon.java | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/tdejava/koala/org/trinitydesktop/koala/KAuthIcon.java b/tdejava/koala/org/trinitydesktop/koala/KAuthIcon.java new file mode 100644 index 00000000..313eca3c --- /dev/null +++ b/tdejava/koala/org/trinitydesktop/koala/KAuthIcon.java @@ -0,0 +1,48 @@ +//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.TQSize; +import org.trinitydesktop.qt.TQWidget; +import org.trinitydesktop.qt.TQWidget; + +/** + + This is the base class from which different authorization icon widget + which actually do something should be derived. You can use these + widgets to show that the user has (or doesn't have) the ability to do + something, and why that is. + One of the most useful things you can do with this is connect + authChanged(boolean) to setEnabled(boolean) for a widget to turn it on and + off depending on the status of whatever it is you are monitoring. + See {@link KAuthIconSignals} for signals emitted by KAuthIcon + @author Preston Brown <[email protected]> + + @short A base class for authorization icon widgets. + @see KRootPermsIcon + @see KWritePermsIcon + +*/ +public class KAuthIcon extends TQWidget { + protected KAuthIcon(Class dummy){super((Class) null);} + public native TQMetaObject metaObject(); + public native String className(); + /** + Constructor. + @short Constructor. + */ + public native TQSize sizeHint(); + /** + return the status of whatever is being monitored. + @short return the status of whatever is being monitored. + */ + public native boolean status(); + /** + Re-implement this method if you want the icon to update itself + when something external has changed (i.e. a file on disk, uid/gid). + @short Re-implement this method if you want the icon to update itself when something external has changed (i. + */ + public native void updateStatus(); +} |