summaryrefslogtreecommitdiffstats
path: root/kdejava/koala/org/kde/koala/KWritePermsIcon.java
blob: 5b486e21c895c3c6683a478b66e8c885fa474cbc (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
//Auto-generated by kalyptus. DO NOT EDIT.
package org.kde.koala;

import org.kde.qt.Qt;
import org.kde.qt.TQMetaObject;
import org.kde.qt.QtSupport;
import org.kde.qt.TQWidget;

/**

 Auth icon for write permission display.
		@author Preston Brown <pbrown@kde.org>
 
		@short    Auth icon for write permission display.
		@see KAuthIcon

*/
public class KWritePermsIcon extends KAuthIcon  {
	protected KWritePermsIcon(Class dummy){super((Class) null);}
	public native TQMetaObject metaObject();
	public native String className();
	public KWritePermsIcon(String fileName, TQWidget parent, String name) {
		super((Class) null);
		newKWritePermsIcon(fileName,parent,name);
	}
	private native void newKWritePermsIcon(String fileName, TQWidget parent, String name);
	public KWritePermsIcon(String fileName, TQWidget parent) {
		super((Class) null);
		newKWritePermsIcon(fileName,parent);
	}
	private native void newKWritePermsIcon(String fileName, TQWidget parent);
	public KWritePermsIcon(String fileName) {
		super((Class) null);
		newKWritePermsIcon(fileName);
	}
	private native void newKWritePermsIcon(String fileName);
	/**	
				@return whether or not the monitored file is writable.
   
		@short
	*/
	public native boolean status();
	/**	
		 make the icon watch a new filename.
			@param fileName the new file to monitor / display status for.
		   		@short    make the icon watch a new filename.
	*/
	public native void setFileName(String fileName);
	/**	
		 return the filename of the currently watched file.
				@short    return the filename of the currently watched file.
	*/
	public native String fileName();
	public native void updateStatus();
	/** 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();
}