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

import org.kde.qt.TQMetaObject;
import org.kde.qt.QtSupport;
import org.kde.qt.TQObject;
import java.util.Calendar;

public interface KDirWatchSignals {
	/**	
		 Emitted when a watched object is changed.
		 For a directory this signal is emitted when files
		 therein are created or deleted.
		 For a file this signal is emitted when its size or attributes change.
			 When you watch a directory, changes in the size or attributes of
		 contained files may or may not trigger this signal to be emitted
		 depending on which backend is used by KDirWatch.
			 The new ctime is set before the signal is emitted.
			@param path the path of the file or directory
		    		@short    Emitted when a watched object is changed.
	*/
	void dirty(String path);
	/**	
		 Emitted when a file or directory is created.
			@param path the path of the file or directory
		    		@short    Emitted when a file or directory is created.
	*/
	void created(String path);
	/**	
		 Emitted when a file or directory is deleted.
			 The object is still watched for new creation.
			@param path the path of the file or directory
		    		@short    Emitted when a file or directory is deleted.
	*/
	void deleted(String path);
}