summaryrefslogtreecommitdiffstats
path: root/kdejava/koala/org
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-27 01:02:53 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-27 01:02:53 -0600
commit545706afdcf29b8f584e78275452cca715e284db (patch)
treefdbfaa34f2d633372ba4ab3e46d22cf10f38b40b /kdejava/koala/org
parent9d4971a2ffb5be9c6fc1b6d6bc74020c37fb2169 (diff)
downloadtdebindings-545706afdcf29b8f584e78275452cca715e284db.tar.gz
tdebindings-545706afdcf29b8f584e78275452cca715e284db.zip
Rename a number of libraries and executables to avoid conflicts with KDE4
Diffstat (limited to 'kdejava/koala/org')
-rw-r--r--kdejava/koala/org/kde/koala/Job.java2
-rw-r--r--kdejava/koala/org/kde/koala/KBugReport.java4
-rw-r--r--kdejava/koala/org/kde/koala/KFile.java4
-rw-r--r--kdejava/koala/org/kde/koala/KFileDialog.java18
-rw-r--r--kdejava/koala/org/kde/koala/KFileItem.java4
-rw-r--r--kdejava/koala/org/kde/koala/KFilePlugin.java4
-rw-r--r--kdejava/koala/org/kde/koala/KHistoryCombo.java2
-rw-r--r--kdejava/koala/org/kde/koala/KMainWindow.java2
-rw-r--r--kdejava/koala/org/kde/koala/KProtocolInfo.java8
-rw-r--r--kdejava/koala/org/kde/koala/KProtocolManager.java4
-rw-r--r--kdejava/koala/org/kde/koala/KSycoca.java4
-rw-r--r--kdejava/koala/org/kde/koala/KZip.java2
-rw-r--r--kdejava/koala/org/kde/koala/Observer.java2
-rw-r--r--kdejava/koala/org/kde/koala/SimpleJob.java2
-rw-r--r--kdejava/koala/org/kde/koala/Slave.java22
-rw-r--r--kdejava/koala/org/kde/koala/SlaveBase.java6
-rw-r--r--kdejava/koala/org/kde/koala/SlaveInterface.java4
-rw-r--r--kdejava/koala/org/kde/koala/StatJob.java2
-rw-r--r--kdejava/koala/org/kde/koala/TDECModule.java4
-rw-r--r--kdejava/koala/org/kde/koala/TDEConfig.java2
-rw-r--r--kdejava/koala/org/kde/koala/TDEIO.java2
21 files changed, 52 insertions, 52 deletions
diff --git a/kdejava/koala/org/kde/koala/Job.java b/kdejava/koala/org/kde/koala/Job.java
index debc3f1d..697570d5 100644
--- a/kdejava/koala/org/kde/koala/Job.java
+++ b/kdejava/koala/org/kde/koala/Job.java
@@ -37,7 +37,7 @@ public class Job extends TQObject {
Abort this job.
This kills all subjobs and deletes the job.
@param tquietly if false, Job will emit signal result
- and ask kio_uiserver to close the progress window.
+ and ask tdeio_uiserver to close the progress window.
<code>tquietly</code> is set to true for subjobs. Whether applications
should call with true or false depends on whether they rely
on result being emitted or not.
diff --git a/kdejava/koala/org/kde/koala/KBugReport.java b/kdejava/koala/org/kde/koala/KBugReport.java
index 42384963..24d4513a 100644
--- a/kdejava/koala/org/kde/koala/KBugReport.java
+++ b/kdejava/koala/org/kde/koala/KBugReport.java
@@ -64,8 +64,8 @@ public class KBugReport extends KDialogBase {
*/
protected native boolean sendBugReport();
/**
- "Configure email" has been clicked - this calls kcmshell System/email
- @short "Configure email" has been clicked - this calls kcmshell System/email
+ "Configure email" has been clicked - this calls tdecmshell System/email
+ @short "Configure email" has been clicked - this calls tdecmshell System/email
*/
protected native void slotConfigureEmail();
/**
diff --git a/kdejava/koala/org/kde/koala/KFile.java b/kdejava/koala/org/kde/koala/KFile.java
index 96ddfa2c..9de3ff61 100644
--- a/kdejava/koala/org/kde/koala/KFile.java
+++ b/kdejava/koala/org/kde/koala/KFile.java
@@ -7,9 +7,9 @@ import org.kde.qt.QtSupport;
/**
KFile is a class which provides a namespace for some enumerated
- values associated with the kfile library. You will never need to
+ values associated with the tdefile library. You will never need to
construct a KFile object itself.
- @short KFile is a class which provides a namespace for some enumerated values associated with the kfile library.
+ @short KFile is a class which provides a namespace for some enumerated values associated with the tdefile library.
*/
public class KFile implements QtSupport {
diff --git a/kdejava/koala/org/kde/koala/KFileDialog.java b/kdejava/koala/org/kde/koala/KFileDialog.java
index d2ae5f6f..7f8957da 100644
--- a/kdejava/koala/org/kde/koala/KFileDialog.java
+++ b/kdejava/koala/org/kde/koala/KFileDialog.java
@@ -20,7 +20,7 @@ import org.kde.qt.TQWidget;
The dialog has been designed to allow applications to customise it
by subclassing. It uses geometry management to ensure that subclasses
can easily add children that will be incorporated into the layout.
- \image html kfiledialog.png "KDE File Dialog"
+ \image html tdefiledialog.png "KDE File Dialog"
See {@link KFileDialogSignals} for signals emitted by KFileDialog
@author Richard J. Moore <rich@kde.org>, Carsten Pfeiffer <pfeiffer@kde.org>
@@ -225,11 +225,11 @@ public class KFileDialog extends KDialogBase {
If no | is found in the expression, just the namefilter is
shown. Examples:
<pre>
- kfile.setFilter("*.cpp|C++ Source Files\n.h|Header files");
- kfile.setFilter("*.cpp");
- kfile.setFilter("*.cpp|Sources (.cpp)");
- kfile.setFilter("*.cpp|" + i18n("Sources (.cpp)"));
- kfile.setFilter("*.cpp .cc .C|C++ Source Files\n.h .H|Header files");
+ tdefile.setFilter("*.cpp|C++ Source Files\n.h|Header files");
+ tdefile.setFilter("*.cpp");
+ tdefile.setFilter("*.cpp|Sources (.cpp)");
+ tdefile.setFilter("*.cpp|" + i18n("Sources (.cpp)"));
+ tdefile.setFilter("*.cpp .cc .C|C++ Source Files\n.h .H|Header files");
</pre>
Note: The text to display is not parsed in any way. So, if you
want to show the suffix to select by a specific filter, you must
@@ -239,8 +239,8 @@ public class KFileDialog extends KDialogBase {
a '\'. You can specify multiple mimetypes like this (separated with
space):
<pre>
- kfile.setFilter( "image/png text/html text/plain" );
- kfile.setFilter( "*.cue|CUE\\/BIN Files (.cue)" );
+ tdefile.setFilter( "image/png text/html text/plain" );
+ tdefile.setFilter( "*.cue|CUE\\/BIN Files (.cue)" );
</pre>
@short Sets the filter to be used to <code>filter.</code>
@see #filterChanged
@@ -326,7 +326,7 @@ public class KFileDialog extends KDialogBase {
yourAction = new KAction( i18n("Your Action"), 0,
this, SLOT("yourSlot()"),
this, "action name" );
- yourAction.plug( kfileDialog.toolBar() );
+ yourAction.plug( tdefileDialog.toolBar() );
</pre>
@short Returns a pointer to the toolbar.
*/
diff --git a/kdejava/koala/org/kde/koala/KFileItem.java b/kdejava/koala/org/kde/koala/KFileItem.java
index 29790ff6..94ee6e7e 100644
--- a/kdejava/koala/org/kde/koala/KFileItem.java
+++ b/kdejava/koala/org/kde/koala/KFileItem.java
@@ -447,11 +447,11 @@ public class KFileItem implements QtSupport {
I.e. a KFileIconView that associates a KFileIconViewItem (an item suitable
for use with TQIconView) does
<pre>
- kfileItem.setExtraData( this, iconViewItem );
+ tdefileItem.setExtraData( this, iconViewItem );
</pre>
and can later access the iconViewItem by doing
<pre>
- KFileIconViewItem iconViewItem = (KFileIconViewItem)( kfileItem.extraData( this ));
+ KFileIconViewItem iconViewItem = (KFileIconViewItem)( tdefileItem.extraData( this ));
</pre>
This is usually more efficient then having every view associate data to
items by using a separate TQDict or TQMap.
diff --git a/kdejava/koala/org/kde/koala/KFilePlugin.java b/kdejava/koala/org/kde/koala/KFilePlugin.java
index 000c4ac4..3b00e4c9 100644
--- a/kdejava/koala/org/kde/koala/KFilePlugin.java
+++ b/kdejava/koala/org/kde/koala/KFilePlugin.java
@@ -92,7 +92,7 @@ import org.kde.qt.TQObject;
Example:
@code
typedef KGenericFactory<FooPlugin> FooFactory;
- K_EXPORT_COMPONENT_FACTORY(kfile_foo, FooFactory("kfile_foo"));
+ K_EXPORT_COMPONENT_FACTORY(tdefile_foo, FooFactory("tdefile_foo"));
@endcode
To make your plugin available within KDE, you also need to provide a
<code>.desktop</code> file which describes your plugin. The required fields in the
@@ -115,7 +115,7 @@ import org.kde.qt.TQObject;
Type=Service
Name=Foo Info
ServiceTypes=KFilePlugin
- X-TDE-Library=kfile_foo
+ X-TDE-Library=tdefile_foo
MimeType=application/x-foo
PreferredGroups=FooInfo
PreferredItems=Items,Size
diff --git a/kdejava/koala/org/kde/koala/KHistoryCombo.java b/kdejava/koala/org/kde/koala/KHistoryCombo.java
index 780f6a07..97e7bbee 100644
--- a/kdejava/koala/org/kde/koala/KHistoryCombo.java
+++ b/kdejava/koala/org/kde/koala/KHistoryCombo.java
@@ -147,7 +147,7 @@ public class KHistoryCombo extends KComboBox {
KPixmapProvider is just an abstract class with the one pure virtual
method KPixmapProvider.pixmapFor(). This method is called whenever
an item is added to the KHistoryComboBox. Implement it to return your
- own custom pixmaps, or use the KURLPixmapProvider from libkio,
+ own custom pixmaps, or use the KURLPixmapProvider from libtdeio,
which uses KMimeType.pixmapForURL to resolve icons.
Set <code>prov</code> to null if you want to disable pixmaps. Default no pixmaps.
@short Sets a pixmap provider, so that items in the combobox can have a pixmap.
diff --git a/kdejava/koala/org/kde/koala/KMainWindow.java b/kdejava/koala/org/kde/koala/KMainWindow.java
index cb852c36..7f2108a1 100644
--- a/kdejava/koala/org/kde/koala/KMainWindow.java
+++ b/kdejava/koala/org/kde/koala/KMainWindow.java
@@ -680,7 +680,7 @@ public class KMainWindow extends TQMainWindow implements KXMLGUIBuilderInterface
Save your instance-specific properties. The function is
invoked when the session manager requests your application
to save its state.
- You <b>must</b> <b>not</b> change the group of the <code>kconfig</code> object, since
+ You <b>must</b> <b>not</b> change the group of the <code>tdeconfig</code> object, since
KMainWindow uses one group for each window. Please
reimplement these function in childclasses.
Note: No user interaction is allowed
diff --git a/kdejava/koala/org/kde/koala/KProtocolInfo.java b/kdejava/koala/org/kde/koala/KProtocolInfo.java
index a9c35303..858bce91 100644
--- a/kdejava/koala/org/kde/koala/KProtocolInfo.java
+++ b/kdejava/koala/org/kde/koala/KProtocolInfo.java
@@ -13,7 +13,7 @@ import java.util.ArrayList;
KDE supports. In addition you can find out lots of information
about a certain protocol. A KProtocolInfo instance represents a
single protocol. Most of the functionality is provided by the static
- methods that scan the .protocol files of all installed kioslaves to get
+ methods that scan the .protocol files of all installed tdeioslaves to get
this information.
.protocol files are installed in the "services" resource.
@author Torben Weis <weis@kde.org>
@@ -483,7 +483,7 @@ public class KProtocolInfo extends KSycocaEntry {
*/
public static native int uriParseMode(String protocol);
/**
- Returns the list of capabilities provided by the kioslave implementing
+ Returns the list of capabilities provided by the tdeioslave implementing
this protocol.
This corresponds to the "Capabilities=" field in the protocol description file.
The capability names are not defined globally, they are up to each
@@ -491,11 +491,11 @@ public class KProtocolInfo extends KSycocaEntry {
special command for mounting, one would add the string "Mount" to the
capabilities list, and applications could check for that string
before sending a special() command that would otherwise do nothing
- on older kioslave implementations.
+ on older tdeioslave implementations.
@param protocol the protocol to check
@return the list of capabilities.
- @short Returns the list of capabilities provided by the kioslave implementing this protocol.
+ @short Returns the list of capabilities provided by the tdeioslave implementing this protocol.
*/
public static native ArrayList capabilities(String protocol);
/**
diff --git a/kdejava/koala/org/kde/koala/KProtocolManager.java b/kdejava/koala/org/kde/koala/KProtocolManager.java
index f0d02ad3..57166d56 100644
--- a/kdejava/koala/org/kde/koala/KProtocolManager.java
+++ b/kdejava/koala/org/kde/koala/KProtocolManager.java
@@ -337,8 +337,8 @@ public class KProtocolManager implements QtSupport {
public static native boolean persistentConnections();
/**
Force a reload of the general config file of
- io-slaves ( kioslaverc).
- @short Force a reload of the general config file of io-slaves ( kioslaverc).
+ io-slaves ( tdeioslaverc).
+ @short Force a reload of the general config file of io-slaves ( tdeioslaverc).
*/
public static native void reparseConfiguration();
/**
diff --git a/kdejava/koala/org/kde/koala/KSycoca.java b/kdejava/koala/org/kde/koala/KSycoca.java
index 6386cafa..17aa7dba 100644
--- a/kdejava/koala/org/kde/koala/KSycoca.java
+++ b/kdejava/koala/org/kde/koala/KSycoca.java
@@ -80,8 +80,8 @@ public class KSycoca extends TQObject implements DCOPObjectInterface {
*/
public native void disableAutoRebuild();
/**
- internal function for receiving kded/kbuildsycoca's signal, when the sycoca file changes
- @short internal function for receiving kded/kbuildsycoca's signal, when the sycoca file changes
+ internal function for receiving kded/tdebuildsycoca's signal, when the sycoca file changes
+ @short internal function for receiving kded/tdebuildsycoca's signal, when the sycoca file changes
*/
// void notifyDatabaseChanged(const TQStringList& arg1); >>>> NOT CONVERTED
/**
diff --git a/kdejava/koala/org/kde/koala/KZip.java b/kdejava/koala/org/kde/koala/KZip.java
index c6c9e6ae..60a8b9cb 100644
--- a/kdejava/koala/org/kde/koala/KZip.java
+++ b/kdejava/koala/org/kde/koala/KZip.java
@@ -8,7 +8,7 @@ import org.kde.qt.TQIODeviceInterface;
/**
- This class implements a kioslave to access zip files from KDE.
+ This class implements a tdeioslave to access zip files from KDE.
You can use it in IO_ReadOnly or in IO_WriteOnly mode, and it
behaves just as expected.
It can also be used in IO_ReadWrite mode, in this case one can
diff --git a/kdejava/koala/org/kde/koala/Observer.java b/kdejava/koala/org/kde/koala/Observer.java
index 6f879f37..951008c7 100644
--- a/kdejava/koala/org/kde/koala/Observer.java
+++ b/kdejava/koala/org/kde/koala/Observer.java
@@ -129,7 +129,7 @@ public class Observer extends TQObject implements DCOPObjectInterface {
@param buttonYes the text of the "Yes" button
@param buttonNo the text of the "No button
@param dontAskAgainName A checkbox is added with which further confirmation can be turned off.
- The string is used to lookup and store the setting in kioslaverc.
+ The string is used to lookup and store the setting in tdeioslaverc.
@short Popup a message box.
*/
public static native int messageBox(int progressId, int type, String text, String caption, String buttonYes, String buttonNo, String dontAskAgainName);
diff --git a/kdejava/koala/org/kde/koala/SimpleJob.java b/kdejava/koala/org/kde/koala/SimpleJob.java
index af7ca172..95b3a8a1 100644
--- a/kdejava/koala/org/kde/koala/SimpleJob.java
+++ b/kdejava/koala/org/kde/koala/SimpleJob.java
@@ -44,7 +44,7 @@ public class SimpleJob extends Job {
This kills all subjobs and deletes the job.
@param tquietly if true, Job will emit signal result
Should only be set to false when the user kills the job
- (from kio_uiserver), not when you want to abort a job.
+ (from tdeio_uiserver), not when you want to abort a job.
@short Abort job.
*/
public native void kill(boolean tquietly);
diff --git a/kdejava/koala/org/kde/koala/Slave.java b/kdejava/koala/org/kde/koala/Slave.java
index 1da49223..f576294b 100644
--- a/kdejava/koala/org/kde/koala/Slave.java
+++ b/kdejava/koala/org/kde/koala/Slave.java
@@ -96,33 +96,33 @@ public class Slave extends SlaveInterface {
*/
public native String passwd();
/**
- Suspends the operation of the attached kioslave.
- @short Suspends the operation of the attached kioslave.
+ Suspends the operation of the attached tdeioslave.
+ @short Suspends the operation of the attached tdeioslave.
*/
public native void suspend();
/**
- Resumes the operation of the attached kioslave.
- @short Resumes the operation of the attached kioslave.
+ Resumes the operation of the attached tdeioslave.
+ @short Resumes the operation of the attached tdeioslave.
*/
public native void resume();
/**
- Tells wether the kioslave is suspended.
- @return true if the kioslave is suspended.
+ Tells wether the tdeioslave is suspended.
+ @return true if the tdeioslave is suspended.
- @short Tells wether the kioslave is suspended.
+ @short Tells wether the tdeioslave is suspended.
*/
public native boolean suspended();
/**
- Sends the given command to the kioslave.
+ Sends the given command to the tdeioslave.
@param cmd command id
@param data byte array containing data
- @short Sends the given command to the kioslave.
+ @short Sends the given command to the tdeioslave.
*/
public native void send(int cmd, byte[] data);
public native void send(int cmd);
/**
- Puts the kioslave associated with <code>url</code> at halt.
- @short Puts the kioslave associated with <code>url</code> at halt.
+ Puts the tdeioslave associated with <code>url</code> at halt.
+ @short Puts the tdeioslave associated with <code>url</code> at halt.
*/
public native void hold(KURL url);
/**
diff --git a/kdejava/koala/org/kde/koala/SlaveBase.java b/kdejava/koala/org/kde/koala/SlaveBase.java
index 9b1f96ea..0eb4012b 100644
--- a/kdejava/koala/org/kde/koala/SlaveBase.java
+++ b/kdejava/koala/org/kde/koala/SlaveBase.java
@@ -7,11 +7,11 @@ import org.kde.qt.QtSupport;
/**
There are two classes that specifies the protocol between application (job)
- and kioslave. SlaveInterface is the class to use on the application end,
+ and tdeioslave. SlaveInterface is the class to use on the application end,
SlaveBase is the one to use on the slave end.
Slave implementations should simply inherit SlaveBase
A call to foo() results in a call to slotFoo() on the other end.
- @short There are two classes that specifies the protocol between application (job) and kioslave.
+ @short There are two classes that specifies the protocol between application (job) and tdeioslave.
*/
public class SlaveBase implements QtSupport {
@@ -209,7 +209,7 @@ public class SlaveBase implements QtSupport {
Note: for ContinueCancel, buttonYes is the continue button and buttonNo is unused.
and for Information, none is used.
@param dontAskAgainName A checkbox is added with which further confirmation can be turned off.
- The string is used to lookup and store the setting in kioslaverc.
+ The string is used to lookup and store the setting in tdeioslaverc.
@return a button code, as defined in KMessageBox, or 0 on communication error.
@short Call this to show a message box from the slave
diff --git a/kdejava/koala/org/kde/koala/SlaveInterface.java b/kdejava/koala/org/kde/koala/SlaveInterface.java
index 5a092211..7c2d14a4 100644
--- a/kdejava/koala/org/kde/koala/SlaveInterface.java
+++ b/kdejava/koala/org/kde/koala/SlaveInterface.java
@@ -9,11 +9,11 @@ import org.kde.qt.TQObject;
/**
There are two classes that specifies the protocol between application
- (KIO.Job) and kioslave. SlaveInterface is the class to use on the application
+ (KIO.Job) and tdeioslave. SlaveInterface is the class to use on the application
end, SlaveBase is the one to use on the slave end.
A call to foo() results in a call to slotFoo() on the other end.
See {@link SlaveInterfaceSignals} for signals emitted by SlaveInterface
- @short There are two classes that specifies the protocol between application (KIO.Job) and kioslave.
+ @short There are two classes that specifies the protocol between application (KIO.Job) and tdeioslave.
*/
public class SlaveInterface extends TQObject {
diff --git a/kdejava/koala/org/kde/koala/StatJob.java b/kdejava/koala/org/kde/koala/StatJob.java
index b413b042..f3706896 100644
--- a/kdejava/koala/org/kde/koala/StatJob.java
+++ b/kdejava/koala/org/kde/koala/StatJob.java
@@ -33,7 +33,7 @@ public class StatJob extends SimpleJob {
/**
A stat() can have two meanings. Either we want to read from this URL,
or to check if we can write to it. First case is "source", second is "dest".
- It is necessary to know what the StatJob is for, to tune the kioslave's behavior
+ It is necessary to know what the StatJob is for, to tune the tdeioslave's behavior
(e.g. with FTP).
@param source true for "source" mode, false for "dest" mode
@short A stat() can have two meanings.
diff --git a/kdejava/koala/org/kde/koala/TDECModule.java b/kdejava/koala/org/kde/koala/TDECModule.java
index 3f26535e..b82a54e7 100644
--- a/kdejava/koala/org/kde/koala/TDECModule.java
+++ b/kdejava/koala/org/kde/koala/TDECModule.java
@@ -221,8 +221,8 @@ public class TDECModule extends TQWidget {
Help: shows a "Help" button.
Default: shows a "Use Defaults" button
Apply: in kcontrol this will show an "Apply" and "Reset" button
- in kcmshell this will show an "Ok", "Apply" and "Cancel" button
- If Apply is not specified, kcmshell will show a "Close" button.
+ in tdecmshell this will show an "Ok", "Apply" and "Cancel" button
+ If Apply is not specified, tdecmshell will show a "Close" button.
@short Sets the buttons to display.
@see TDECModule#buttons
*/
diff --git a/kdejava/koala/org/kde/koala/TDEConfig.java b/kdejava/koala/org/kde/koala/TDEConfig.java
index 9eedc94d..ac0d530f 100644
--- a/kdejava/koala/org/kde/koala/TDEConfig.java
+++ b/kdejava/koala/org/kde/koala/TDEConfig.java
@@ -138,7 +138,7 @@ public class TDEConfig extends TDEConfigBase {
public native boolean forceGlobal();
/**
Checks whether the config file contains the update <code>id</code>
- as contained in <code>updateFile.</code> If not, it runs kconf_update
+ as contained in <code>updateFile.</code> If not, it runs tdeconf_update
to update the config file.
If you install config update files with critical fixes
you may wish to use this method to verify that a critical
diff --git a/kdejava/koala/org/kde/koala/TDEIO.java b/kdejava/koala/org/kde/koala/TDEIO.java
index 7fe6837d..716744ac 100644
--- a/kdejava/koala/org/kde/koala/TDEIO.java
+++ b/kdejava/koala/org/kde/koala/TDEIO.java
@@ -709,7 +709,7 @@ public class KIO {
@param url the URL of the file
@param sideIsSource is true when stating a source file (we will do a get on it if
the stat works) and false when stating a destination file (target of a copy).
- The reason for this parameter is that in some cases the kioslave might not
+ The reason for this parameter is that in some cases the tdeioslave might not
be able to determine a file's existence (e.g. HTTP doesn't allow it, FTP
has issues with case-sensitivity on some systems).
When the slave can't reliably determine the existence of a file, it will: