pull/1/head
Timothy Pearson 11 years ago
parent a3c2194df5
commit 678d79bf17

@ -74,7 +74,7 @@
AuthInfo and Observer classes
* Converted '\c' tags in comments to pairs <code> tags
* Improved conversion of C++ code snippets to java
* Fixed bug in KIO Scheduler.connect(), and the example in test/tdeioslave now works
* Fixed bug in TDEIO Scheduler.connect(), and the example in test/tdeioslave now works
correctly
* Added some long long types, converted to java longs (both 64 bit)
@ -126,7 +126,7 @@
* Changed KScribble event handler methods access type to protected
* Re-added classes from kcolordialog.h
* Restored missing readEntry() and writeEntry() methods to TDEConfigBase
* Methods in namespace derived classes KIO and KStdAction made static again
* Methods in namespace derived classes TDEIO and KStdAction made static again
2002-11-18 Richard Dale <duke@tipitina.demon.co.uk>
@ -151,9 +151,9 @@
* Added new ioslave classes to Makefile.am's
2002-03-22 Richard Dale <duke@tipitina.demon.co.uk>
* Added missing TDEMainWindow constructor
* Added KIO slot/signal types for writing as well as reading.
* Added TDEIO slot/signal types for writing as well as reading.
* Added missing tdeioslave classes
* Added new KIO classes Scheduler, KIO, ProgressBase and StatusbarProgress
* Added new TDEIO classes Scheduler, KIO, ProgressBase and StatusbarProgress
* Fixed various method linking problems
2002-03-19 Richard Dale <duke@tipitina.demon.co.uk>
* KCharSelectTest.java test app from KJP added.
@ -266,7 +266,7 @@
2001-07-29 Richard Dale <duke@tipitina.demon.co.uk
* Added KTipDialog and KTipDatabase classes
2001-07-29 Richard Dale <duke@tipitina.demon.co.uk
* Added KIO slot/signal types
* Added TDEIO slot/signal types
2001-07-28 Richard Dale <duke@tipitina.demon.co.uk
* kdoc source converter - fixed bugs in parsing default parameter values.
Added Qt 3.0.0 datatype conversions.

@ -29,7 +29,7 @@ public class KFileItem implements QtSupport {
/**
Creates an item representing a file, from a UDSEntry.
This is the preferred constructor when using TDEIO.listDir().
@param _entry the KIO entry used to get the file, contains info about it
@param _entry the TDEIO entry used to get the file, contains info about it
@param _url the file url
@param _determineMimeTypeOnDemand specifies if the mimetype of the given
URL should be determined immediately or on demand
@ -226,11 +226,11 @@ public class KFileItem implements QtSupport {
*/
public native String linkDest();
/**
Returns the local path if isLocalFile() == true or the KIO item has
Returns the local path if isLocalFile() == true or the TDEIO item has
a UDS_LOCAL_PATH atom.
@return the item local path, or null if not known
@short Returns the local path if isLocalFile() == true or the KIO item has a UDS_LOCAL_PATH atom.
@short Returns the local path if isLocalFile() == true or the TDEIO item has a UDS_LOCAL_PATH atom.
*/
public native String localPath();
/**

@ -340,7 +340,7 @@ public class KProtocolInfo extends KSycocaEntry {
public static native boolean canRenameToFile(KURL url);
/**
Returns whether the protocol can recursively delete directories by itself.
If not (the usual case) then KIO will list the directory and delete files
If not (the usual case) then TDEIO will list the directory and delete files
and empty directories one by one.
This corresponds to the "deleteRecursive=" field in the protocol description file.
Valid values for this field are "true" or "false" (default).

@ -62,10 +62,10 @@ public class KURLCompletion extends TDECompletion {
/**
Finds completions to the given text.
Remote URLs are listed with TDEIO. 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.
are listed with TDEIO only if KURLCOMPLETION_LOCAL_TDEIO is set.
The completion is done asyncronously if TDEIO is used.
Returns the first match for user, environment, and local dir completion
and null for asynchronous completion (KIO or threaded).
and null for asynchronous completion (TDEIO or threaded).
@param text the text to complete
@return the first match, or null if not found

@ -8,9 +8,9 @@ import java.util.ArrayList;
/**
MetaInfoJob is a KIO Job to retrieve meta information from files.
MetaInfoJob is a TDEIO Job to retrieve meta information from files.
See {@link MetaInfoJobSignals} for signals emitted by MetaInfoJob
@short KIO Job to retrieve meta information from files.
@short TDEIO Job to retrieve meta information from files.
*/
public class MetaInfoJob extends Job {

@ -23,7 +23,7 @@ import org.kde.qt.TQObject;
namespace for static functions, though an instance of the class
is built for internal purposes.
Port to tdeio done by David Faure, faure@kde.org
@short Provides an easy, synchronous interface to KIO file operations.
@short Provides an easy, synchronous interface to TDEIO file operations.
*/
public class NetAccess extends TQObject {

@ -35,17 +35,17 @@ public class ReadOnlyPart extends Part {
*/
/**
Call this to turn off the progress info dialog used by
the internal KIO job. Use this if you provide another way
the internal TDEIO job. Use this if you provide another way
of displaying progress info (e.g. a statusbar), using the
signals emitted by this class, and/or those emitted by
the Job given by started.
@short Call this to turn off the progress info dialog used by the internal KIO job.
@short Call this to turn off the progress info dialog used by the internal TDEIO job.
*/
public native void setProgressInfoEnabled(boolean show);
/**
Returns whether the part shows the progress info dialog used by internal
KIO job.
@short Returns whether the part shows the progress info dialog used by internal KIO job.
TDEIO job.
@short Returns whether the part shows the progress info dialog used by internal TDEIO job.
*/
public native boolean isProgressInfoEnabled();
public native void showProgressInfo(boolean show);

@ -153,7 +153,7 @@ public class Scheduler extends TQObject implements DCOPObjectInterface {
Send the slave that was put on hold back to TDELauncher. This
allows another process to take over the slave and resume the job
the that was started.
Register the mainwindow <code>wid</code> with the KIO subsystem
Register the mainwindow <code>wid</code> with the TDEIO subsystem
Do not call this, it is called automatically from
void TDEIO.Job.setWindow(TQWidget).
@param wid the window to register

@ -7,9 +7,9 @@ import org.kde.qt.QtSupport;
/**
A KIO job that retrieves information about a file or directory.
A TDEIO job that retrieves information about a file or directory.
See {@link StatJobSignals} for signals emitted by StatJob
@short A KIO job that retrieves information about a file or directory.
@short A TDEIO job that retrieves information about a file or directory.
@see #stat
*/

@ -185,7 +185,7 @@ public class TDEHTMLPart extends ReadOnlyPart {
public native boolean closeURL();
/**
Called when a certain error situation (i.e. connection timed out) occurred.
The default implementation either shows a KIO error dialog or loads a more
The default implementation either shows a TDEIO error dialog or loads a more
verbose error description a as page, depending on the users configuration.
<code>job</code> is the job that signaled the error situation
@short Called when a certain error situation (i.

@ -12,10 +12,10 @@ import org.kde.qt.TQWidget;
/**
@short A namespace for KIO globals.
@short A namespace for TDEIO globals.
*/
public class KIO {
public class TDEIO {
public static final int S_SKIP = 1;
public static final int S_AUTO_SKIP = 2;
public static final int S_CANCEL = 0;
@ -213,8 +213,8 @@ public class KIO {
public static final int HTTP_UNKNOWN = -1;
/**
Identifiers for KIO informational messages.
@short Identifiers for KIO informational messages.
Identifiers for TDEIO informational messages.
@short Identifiers for TDEIO informational messages.
*/
public static final int INF_TOTAL_SIZE = 10;
public static final int INF_PROCESSED_SIZE = 11;
@ -231,8 +231,8 @@ public class KIO {
public static final int INF_MESSAGEBOX = 29;
/**
Identifiers for KIO data messages.
@short Identifiers for KIO data messages.
Identifiers for TDEIO data messages.
@short Identifiers for TDEIO data messages.
*/
public static final int MSG_DATA = 100;
public static final int MSG_DATA_REQ = 101;

@ -76,8 +76,8 @@ public class URLArgs implements QtSupport {
public native void setNewTab(boolean newTab);
public native boolean newTab();
/**
Meta-data to associate with the next KIO operation
@short Meta-data to associate with the next KIO operation
Meta-data to associate with the next TDEIO operation
@short Meta-data to associate with the next TDEIO operation
@see TransferJob
@see #etc#
*/

Loading…
Cancel
Save