summaryrefslogtreecommitdiffstats
path: root/tdejava/koala/org/trinitydesktop/koala/KDirLister.java
blob: f5bd71cc48a026757358d8a1d65fc6c52091548a (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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
//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 java.util.ArrayList;
import org.trinitydesktop.qt.TQWidget;
import org.trinitydesktop.qt.TQObject;

/**

 The dir lister deals with the tdeiojob used to list and update a directory
 and has signals for the user of this class (e.g. konqueror view or
 kdesktop) to create/destroy its items when asked.
 This class is independent from the graphical representation of the dir
 (icon container, tree view, ...) and it stores the items (as KFileItems).
 Typical usage :

	<li>
	Create an instance.
	</li>

	<li>
	Connect to at least update, clear, newItem, and deleteItem.
	</li>

	<li>
	Call openURL - the signals will be called.
	</li>

	<li>
	Reuse the instance when opening a new url (openURL).
	</li>

	<li>
	Destroy the instance when not needed anymore (usually destructor).
	</li>
	 Advanced usage : call openURL with _keep = true to list directories
 without forgetting the ones previously read (e.g. for a tree view)
 See {@link KDirListerSignals} for signals emitted by KDirLister
		@author Michael Brade <brade@kde.org>

		@short Helper class for the tdeiojob used to list and update a directory.

*/
public class KDirLister extends TQObject  {
	protected KDirLister(Class dummy){super((Class) null);}
	/**
		 Used by items() and itemsForDir() to specify whether you want
		 all items for a directory or just the filtered ones.
		   		@short    Used by items() and itemsForDir() to specify whether you want  all items for a directory or just the filtered ones.
	*/
	public static final int AllItems = 0;
	public static final int FilteredItems = 1;

	public static final int NONE = 0;
	public static final int NAME_FILTER = 1;
	public static final int MIME_FILTER = 2;
	public static final int DOT_FILES = 4;
	public static final int DIR_ONLY_MODE = 8;

	public native TQMetaObject metaObject();
	public native String className();
	/**
		 Create a directory lister.
			@param _delayedMimeTypes if true, mime types will be fetched on demand. If false,
		                          they will always be fetched immediately
		   		@short    Create a directory lister.
	*/
	public KDirLister(boolean _delayedMimeTypes) {
		super((Class) null);
		newKDirLister(_delayedMimeTypes);
	}
	private native void newKDirLister(boolean _delayedMimeTypes);
	public KDirLister() {
		super((Class) null);
		newKDirLister();
	}
	private native void newKDirLister();
	/**
		 Run the directory lister on the given url.
			 This method causes KDirLister to emit _all_ the items of <code>_url</code>, in any case.
		 Depending on <code>_keep</code> either clear() or clear(KURL) will be
		 emitted first.
			 The newItems() signal may be emitted more than once to supply you
		 with KFileItems, up until the signal completed() is emitted
		 (and isFinished() returns true).
			@param _url the directory URL.
			@param _keep if true the previous directories aren't forgotten
		                 (they are still watched by kdirwatch and their items
		                 are kept for this KDirLister). This is useful for e.g.
		                 a treeview.
			@param _reload indicates wether to use the cache (false) or to reread the
		                 directory from the disk.
		                 Use only when opening a dir not yet listed by this lister
		                 without using the cache. Otherwise use updateDirectory.
				@return true    if successful,
         false   otherwise (e.g. invalid <code>_url</code>)

		@short    Run the directory lister on the given url.
	*/
	public native boolean openURL(KURL _url, boolean _keep, boolean _reload);
	public native boolean openURL(KURL _url, boolean _keep);
	public native boolean openURL(KURL _url);
	/**
		 Stop listing all directories currently being listed.
			 Emits canceled() if there was at least one job running.
		 Emits canceled( KURL ) for each stopped job if
		 there are at least two dirctories being watched by KDirLister.
		   		@short    Stop listing all directories currently being listed.
	*/
	public native void stop();
	/**
		 Stop listing the given directory.
			 Emits canceled() if the killed job was the last running one.
		 Emits canceled( KURL ) for the killed job if
		 there are at least two directories being watched by KDirLister.
		 No signal is emitted if there was no job running for <code>_url.</code>
			@param _url the directory URL
		   		@short    Stop listing the given directory.
	*/
	public native void stop(KURL _url);
	/**
		 Checks whether KDirWatch will automatically update directories. This is
		 enabled by default.
				@return true if KDirWatch is used to automatically update directories.

		@short    Checks whether KDirWatch will automatically update directories.
	*/
	public native boolean autoUpdate();
	/**
		 Enable/disable automatic directory updating, when a directory changes
		 (using KDirWatch).
			@param enable true to enable, false to disable
		   		@short    Enable/disable automatic directory updating, when a directory changes  (using KDirWatch).
	*/
	public native void setAutoUpdate(boolean enable);
	/**
		 Check whether auto error handling is enabled.
		 If enabled, it will show an error dialog to the user when an
		 error occurs. It is turned on by default.
				@return true if auto error handling is enabled, false otherwise

		@short    Check whether auto error handling is enabled.
		@see #setAutoErrorHandlingEnabled
	*/
	public native boolean autoErrorHandlingEnabled();
	/**
		 Enable or disable auto error handling is enabled.
		 If enabled, it will show an error dialog to the user when an
		 error occurs. It is turned on by default.
			@param enable true to enable auto error handling, false to disable
			@param parent the parent widget for the error dialogs, can be 0 for
		               top-level
				@short    Enable or disable auto error handling is enabled.
		@see #autoErrorHandlingEnabled
	*/
	public native void setAutoErrorHandlingEnabled(boolean enable, TQWidget parent);
	/**
		 Checks whether hidden files (files beginning with a dot) will be
		 shown.
		 By default this option is disabled (hidden files will be not shown).
				@return true if dot files are shown, false otherwise

		@short    Checks whether hidden files (files beginning with a dot) will be  shown.
		@see #setShowingDotFiles
	*/
	public native boolean showingDotFiles();
	/**
		 Changes the "is viewing dot files" setting.
		 Calls updateDirectory() if setting changed.
		 By default this option is disabled (hidden files will not be shown).
			@param _showDotFiles true to enable showing hidden files, false to
		        disable
				@short    Changes the "is viewing dot files" setting.
		@see #showingDotFiles
	*/
	public native void setShowingDotFiles(boolean _showDotFiles);
	/**
		 Checks whether the KDirLister only lists directories or all
		 files.
		 By default this option is disabled (all files will be shown).
				@return true if setDirOnlyMode(true) was called

		@short    Checks whether the KDirLister only lists directories or all  files.
	*/
	public native boolean dirOnlyMode();
	/**
		 Call this to list only directories.
		 By default this option is disabled (all files will be shown).
			@param dirsOnly true to list only directories
		   		@short    Call this to list only directories.
	*/
	public native void setDirOnlyMode(boolean dirsOnly);
	/**
		 Returns the top level URL that is listed by this KDirLister.
		 It might be different from the one given with openURL() if there was a
		 redirection. If you called openURL() with <code>_keep</code> == true this is the
		 first url opened (e.g. in a treeview this is the root).
				@return the url used by this instance to list the files.

		@short    Returns the top level URL that is listed by this KDirLister.
	*/
	public native KURL url();
	/**
		 Returns all URLs that are listed by this KDirLister. This is only
		 useful if you called openURL() with <code>_keep</code> == true, as it happens in a
		 treeview, for example. (Note that the base url is included in the list
		 as well, of course.)
				@return the list of all listed URLs

		@short    Returns all URLs that are listed by this KDirLister.
	*/
	public native ArrayList directories();
	/**
		 Actually emit the changes made with setShowingDotFiles, setDirOnlyMode,
		 setNameFilter and setMimeFilter.
		   		@short    Actually emit the changes made with setShowingDotFiles, setDirOnlyMode,  setNameFilter and setMimeFilter.
	*/
	public native void emitChanges();
	/**
		 Update the directory <code>_dir.</code> This method causes KDirLister to _only_ emit
		 the items of <code>_dir</code> that actually changed compared to the current state in the
		 cache and updates the cache.
			 The current implementation calls updateDirectory automatically for
		 local files, using KDirWatch (if autoUpdate() is true), but it might be
		 useful to force an update manually.
			@param _dir the directory URL
		   		@short    Update the directory <code>_dir.</code>
	*/
	public native void updateDirectory(KURL _dir);
	/**
		 Returns true if no io operation is currently in progress.
				@return true if finished, false otherwise

		@short    Returns true if no io operation is currently in progress.
	*/
	public native boolean isFinished();
	/**
		 Returns the file item of the URL.
				@return the file item for url() itself (".")

		@short    Returns the file item of the URL.
	*/
	public native KFileItem rootItem();
	/**
		 Find an item by its URL.
			@param _url the item URL
				@return the pointer to the KFileItem

		@short    Find an item by its URL.
	*/
	public native KFileItem findByURL(KURL _url);
	public native KFileItem find(KURL _url);
	/**
		 Find an item by its name.
			@param name the item name
				@return the pointer to the KFileItem

		@short    Find an item by its name.
	*/
	public native KFileItem findByName(String name);
	/**
		 Set a name filter to only list items matching this name, e.g. "*.cpp".
			 You can set more than one filter by separating them with whitespace, e.g
		 "*.cpp .h".
		 Note: the direcory is not automatically reloaded.
			@param filter the new filter, null to disable filtering
				@short    Set a name filter to only list items matching this name, e.
		@see #matchesFilter
	*/
	public native void setNameFilter(String filter);
	/**
		 Returns the current name filter, as set via setNameFilter()
				@return the current name filter, can be null if filtering
         is turned off

		@short    Returns the current name filter, as set via setNameFilter()
	*/
	public native String nameFilter();
	/**
		 Set mime-based filter to only list items matching the given mimetypes.
			 NOTE: setting the filter does not automatically reload direcory.
		 Also calling this function will not affect any named filter already set.
			@param mimeList a list of mime-types.
				@short    Set mime-based filter to only list items matching the given mimetypes.
		@see #clearMimeFilter
		@see #matchesMimeFilter
	*/
	public native void setMimeFilter(String[] mimeList);
	/**
		 Filtering should be done with KFileFilter. This will be implemented in a later
		 revision of KDirLister. This method may be removed then.
			 Set mime-based exclude filter to only list items not matching the given mimetypes
			 NOTE: setting the filter does not automatically reload direcory.
		 Also calling this function will not affect any named filter already set.
			@param mimeList a list of mime-types.
			   		@short    Filtering should be done with KFileFilter.
		@see #clearMimeFilter
		@see #matchesMimeFilter
	*/
	public native void setMimeExcludeFilter(String[] mimeList);
	/**
		 Clears the mime based filter.
				@short    Clears the mime based filter.
		@see #setMimeFilter
	*/
	public native void clearMimeFilter();
	/**
		 Returns the list of mime based filters, as set via setMimeFilter().
				@return the list of mime based filters. Empty, when no mime filter is set.

		@short    Returns the list of mime based filters, as set via setMimeFilter().
	*/
	public native ArrayList mimeFilters();
	/**
		 Checks whether <code>name</code> matches a filter in the list of name filters.
				@return true if <code>name</code> matches a filter in the list,
 otherwise false.

		@short    Checks whether <code>name</code> matches a filter in the list of name filters.
		@see #setNameFilter
	*/
	public native boolean matchesFilter(String name);
	/**
		 Checks whether <code>mime</code> matches a filter in the list of mime types
			@param mime the mimetype to find in the filter list.
				@return true if <code>name</code> matches a filter in the list,
 otherwise false.

		@short    Checks whether <code>mime</code> matches a filter in the list of mime types
		@see #setMimeFilter#
	*/
	public native boolean matchesMimeFilter(String mime);
	/**
		 Pass the main window this object is associated with
		 this is used for caching authentication data
			@param window the window to associate with, 0 to disassociate
				@short    Pass the main window this object is associated with  this is used for caching authentication data
	*/
	public native void setMainWindow(TQWidget window);
	/**
		 Returns the main window associated with this object.
				@return the associated main window, or 0 if there is none

		@short    Returns the main window associated with this object.
	*/
	public native TQWidget mainWindow();
	/**
		 Returns the items listed for the current url().
		 This method will NOT start listing a directory, you should only call
		 this when receiving the finished() signal.
			 The items in the KFileItemList are references to the items used
		 by KDirLister, so e.g. an item gets destroyed when the deleteItem()
		 signal is emitted.
			@param which specifies whether the returned list will contain all entries
		              or only the ones that passed the nameFilter(), mimeFilter(),
		              etc. Note that the latter causes iteration over all the
		              items, filtering them. If this is too slow for you, use the
		              newItems() signal, sending out filtered items in chunks.
				@return the items listed for the current url().

		@short    Returns the items listed for the current url().
	*/
	public native ArrayList items(int which);
	public native ArrayList items();
	/**
		 Returns the items listed for the given <code>dir.</code>
		 This method will NOT start listing <code>dir</code>, you should only call
		 this when receiving the finished() signal.
			 The items in the KFileItemList are references to the items used
		 by KDirLister, so e.g. an item gets destroyed when the deleteItem()
		 signal is emitted.
			@param dir specifies the url for which the items should be returned. This
		            is only useful if you use KDirLister with multiple URLs
		            i.e. using boolean keep = true in openURL().
			@param which specifies whether the returned list will contain all entries
		              or only the ones that passed the nameFilter, mimeFilter, etc.
		              Note that the latter causes iteration over all the items,
		              filtering them. If this is too slow for you, use the
		 newItems() signal, sending out filtered items in chunks.
				@return the items listed for <code>dir.</code>

		@short    Returns the items listed for the given <code>dir.</code>
	*/
	public native ArrayList itemsForDir(KURL dir, int which);
	public native ArrayList itemsForDir(KURL dir);
	/**
		 Called for every new item before emitting newItems().
		 You may reimplement this method in a subclass to implement your own
		 filtering.
		 The default implementation filters out ".." and everything not matching
		 the name filter(s)
				@return true if the item is "ok".
         false if the item shall not be shown in a view, e.g.
 files not matching a pattern *.cpp ( KFileItem.isHidden())

		@short    Called for every new item before emitting newItems().
		@see #matchesFilter
		@see #setNameFilter
	*/
	protected native boolean matchesFilter(KFileItem arg1);
	/**
		 Called for every new item before emitting newItems().
		 You may reimplement this method in a subclass to implement your own
		 filtering.
		 The default implementation filters out ".." and everything not matching
		 the name filter(s)
				@return true if the item is "ok".
         false if the item shall not be shown in a view, e.g.
 files not matching a pattern *.cpp ( KFileItem.isHidden())

		@short    Called for every new item before emitting newItems().
		@see #matchesMimeFilter
		@see #setMimeFilter
	*/
	protected native boolean matchesMimeFilter(KFileItem arg1);
	/**
		 Called by the public matchesFilter() to do the
		 actual filtering. Those methods may be reimplemented to customize
		 filtering.
			@param name the name to filter
			@param filters a list of regular expressions for filtering
		   		@short    Called by the public matchesFilter() to do the  actual filtering.
	*/
	// bool doNameFilter(const TQString& arg1,const TQPtrList<TQRegExp>& arg2); >>>> NOT CONVERTED
	/**
		 Called by the public matchesMimeFilter() to do the
		 actual filtering. Those methods may be reimplemented to customize
		 filtering.
			@param mime the mime type to filter
			@param filters the list of mime types to filter
		   		@short    Called by the public matchesMimeFilter() to do the  actual filtering.
	*/
	protected native boolean doMimeFilter(String mime, String[] filters);
	/**
			   		@short
	*/
	protected native boolean doMimeExcludeFilter(String mimeExclude, String[] filters);
	/**
		 Checks if an url is malformed or not and displays an error message
		 if it is and autoErrorHandling is set to true.
				@return true if url is valid, otherwise false.

		@short    Checks if an url is malformed or not and displays an error message  if it is and autoErrorHandling is set to true.
	*/
	protected native boolean validURL(KURL arg1);
	/**	 Reimplement to customize error handling 		@short   Reimplement to customize error handling
	*/
	protected native void handleError(Job arg1);
	/** 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();
}