summaryrefslogtreecommitdiffstats
path: root/kdejava/koala/org/kde/koala/KURLCompletion.java
blob: db4f26322b38dee313f9fe79628e191b2c20cd4e (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
//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.TQCustomEvent;

/**

 This class does completion of URLs including user directories (~user)
 and environment variables.  Remote URLs are passed to KIO.
		@author David Smith <dsmith@algonet.se>
 
		@short Completion of a single URL.

*/
public class KURLCompletion extends TDECompletion  {
	protected KURLCompletion(Class dummy){super((Class) null);}
	/**	
		 Determines how completion is done.
		
			<li>
			ExeCompletion - executables in $PATH or with full path.
			</li>
			
			<li>
			FileCompletion - all files with full path or in dir(), URLs
			 are listed using KIO.
			</li>
			
			<li>
			DirCompletion - Same as FileCompletion but only returns directories.
				 
			</li>		@short    Determines how completion is done.
	*/
	public static final int ExeCompletion = 1;
	public static final int FileCompletion = 2;
	public static final int DirCompletion = 3;

	public native TQMetaObject metaObject();
	public native String className();
	/**	
		 Constructs a KURLCompletion object in FileCompletion mode.
			 		@short    Constructs a KURLCompletion object in FileCompletion mode.
	*/
	public KURLCompletion() {
		super((Class) null);
		newKURLCompletion();
	}
	private native void newKURLCompletion();
	/**	
		 This overloaded constructor allows you to set the Mode to ExeCompletion
		 or FileCompletion without using setMode. Default is FileCompletion.
			 		@short    This overloaded constructor allows you to set the Mode to ExeCompletion  or FileCompletion without using setMode.
	*/
	public KURLCompletion(int arg1) {
		super((Class) null);
		newKURLCompletion(arg1);
	}
	private native void newKURLCompletion(int arg1);
	/**	
		 Finds completions to the given text.
			 Remote URLs are listed with KIO. For performance reasons, local files
		 are listed with KIO only if KURLCOMPLETION_LOCAL_KIO is set.
		 The completion is done asyncronously if KIO is used.
			 Returns the first match for user, environment, and local dir completion
		 and null for asynchronous completion (KIO or threaded).
			@param text the text to complete
				@return the first match, or null if not found
	 
		@short    Finds completions to the given text.
	*/
	public native String makeCompletion(String text);
	/**	
		 Sets the current directory (used as base for completion).
		 Default = $HOME.
			@param dir the current directory, either as a path or URL
			 		@short    Sets the current directory (used as base for completion).
	*/
	public native void setDir(String dir);
	/**	
		 Returns the current directory, as it was given in setDir
				@return the current directory (path or URL)
	 
		@short    Returns the current directory, as it was given in setDir
	*/
	public native String dir();
	/**	
		 Check whether asynchronous completion is in progress.
				@return true if asynchronous completion is in progress
	 
		@short    Check whether asynchronous completion is in progress.
	*/
	public native boolean isRunning();
	/**	
		 Stops asynchronous completion.
			 		@short    Stops asynchronous completion.
	*/
	public native void stop();
	/**	
		 Returns the completion mode: exe or file completion (default FileCompletion).
				@return the completion mode
	 
		@short    Returns the completion mode: exe or file completion (default FileCompletion).
	*/
	public native int mode();
	/**	
		 Changes the completion mode: exe or file completion
			@param mode the new completion mode
			 		@short    Changes the completion mode: exe or file completion
	*/
	public native void setMode(int mode);
	/**	
		 Checks whether environment variables are completed and
		 whether they are replaced internally while finding completions.
		 Default is enabled.
				@return true if environment vvariables will be replaced
	 
		@short    Checks whether environment variables are completed and  whether they are replaced internally while finding completions.
	*/
	public native boolean replaceEnv();
	/**	
		 Enables/disables completion and replacement (internally) of
		 environment variables in URLs. Default is enabled.
			@param replace true to replace environment variables
			 		@short    Enables/disables completion and replacement (internally) of  environment variables in URLs.
	*/
	public native void setReplaceEnv(boolean replace);
	/**	
		 Returns whether ~username is completed and whether ~username
		 is replaced internally with the user's home directory while
		 finding completions. Default is enabled.
				@return true to replace tilde with the home directory
	 
		@short    Returns whether ~username is completed and whether ~username  is replaced internally with the user's home directory while  finding completions.
	*/
	public native boolean replaceHome();
	/**	
		 Enables/disables completion of ~username and replacement
		 (internally) of ~username with the user's home directory.
		 Default is enabled.
			@param replace true to replace tilde with the home directory
			 		@short    Enables/disables completion of ~username and replacement  (internally) of ~username with the user's home directory.
	*/
	public native void setReplaceHome(boolean replace);
	/**	
		 Replaces username and/or environment variables, depending on the
		 current settings and returns the filtered url. Only works with
		 local files, i.e. returns back the original string for non-local
		 urls.
			@param text the text to process
				@return the path or URL resulting from this operation. If you
 want to convert it to a KURL, use KURL.fromPathOrURL.
	 
		@short    Replaces username and/or environment variables, depending on the  current settings and returns the filtered url.
	*/
	public native String replacedPath(String text);
	/**	
				@short
	*/
	public static native String replacedPath(String text, boolean replaceHome, boolean replaceEnv);
	public static native String replacedPath(String text, boolean replaceHome);
	protected native void postProcessMatch(StringBuffer match);
	protected native void postProcessMatches(String[] matches);
	// void postProcessMatches(TDECompletionMatches* arg1); >>>> NOT CONVERTED
	protected native void customEvent(TQCustomEvent e);
	// void slotEntries(TDEIO::Job* arg1,const TDEIO::UDSEntryList& arg2); >>>> NOT CONVERTED
	protected native void slotIOFinished(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();
}