Additional kde to tde renaming

pull/1/head
Timothy Pearson 13 years ago
parent 35f3f9ef33
commit b4e545384b

@ -232,9 +232,9 @@ SKIP_FUNCTION_MACROS = YES
#---------------------------------------------------------------------------
TAGFILES = $(KDEDIR)/share/doc/HTML/en/kdelibs-apidocs/dcop/dcop.tag=$(KDEDIR)/share/doc/HTML/en/kdelibs-apidocs/dcop/html/ \
$(KDEDIR)/share/doc/HTML/en/kdelibs-apidocs/interfaces/interfaces.tag=$(KDEDIR)/share/doc/HTML/en/kdelibs-apidocs/interfaces/html/ \
$(KDEDIR)/share/doc/HTML/en/kdelibs-apidocs/kdecore/kdecore.tag=$(KDEDIR)/share/doc/HTML/en/kdelibs-apidocs/kdecore/html/ \
$(KDEDIR)/share/doc/HTML/en/kdelibs-apidocs/kdefx/kdefx.tag=$(KDEDIR)/share/doc/HTML/en/kdelibs-apidocs/kdefx/html/ \
$(KDEDIR)/share/doc/HTML/en/kdelibs-apidocs/kdeui/kdeui.tag=$(KDEDIR)/share/doc/HTML/en/kdelibs-apidocs/kdeui/html/ \
$(KDEDIR)/share/doc/HTML/en/kdelibs-apidocs/tdecore/tdecore.tag=$(KDEDIR)/share/doc/HTML/en/kdelibs-apidocs/tdecore/html/ \
$(KDEDIR)/share/doc/HTML/en/kdelibs-apidocs/tdefx/tdefx.tag=$(KDEDIR)/share/doc/HTML/en/kdelibs-apidocs/tdefx/html/ \
$(KDEDIR)/share/doc/HTML/en/kdelibs-apidocs/tdeui/tdeui.tag=$(KDEDIR)/share/doc/HTML/en/kdelibs-apidocs/tdeui/html/ \
$(KDEDIR)/share/doc/HTML/en/kdelibs-apidocs/khtml/khtml.tag=$(KDEDIR)/share/doc/HTML/en/kdelibs-apidocs/khtml/html/ \
$(KDEDIR)/share/doc/HTML/en/kdelibs-apidocs/kio/kio.tag=$(KDEDIR)/share/doc/HTML/en/kdelibs-apidocs/kio/html/ \
$(KDEDIR)/share/doc/HTML/en/kdelibs-apidocs/kjs/kjs.tag=$(KDEDIR)/share/doc/HTML/en/kdelibs-apidocs/kjs/html/ \

@ -155,10 +155,10 @@ AutoProjectPart::AutoProjectPart(TQObject *parent, const char *name, const TQStr
action = new KAction( i18n("Install (as root user)"), 0,
this, TQT_SLOT(slotInstallWithKdesu()),
actionCollection(), "build_install_kdesu" );
actionCollection(), "build_install_tdesu" );
action->setToolTip(i18n("Install as root user"));
action->setWhatsThis(i18n("<b>Install</b><p>Runs <b>make install</b> command from the project directory with root privileges.<br>"
"It is executed via kdesu command.<br>"
"It is executed via tdesu command.<br>"
"Environment variables and make arguments can be specified "
"in the project settings dialog, <b>Make Options</b> tab."));
action->setGroup("autotools");
@ -706,7 +706,7 @@ void AutoProjectPart::startMakeCommand(const TQString &dir, const TQString &targ
m_buildCommand = constructMakeCommandLine(dir, target);
if (withKdesu)
m_buildCommand = "kdesu -t -c '" + m_buildCommand + "'";
m_buildCommand = "tdesu -t -c '" + m_buildCommand + "'";
if (!m_buildCommand.isNull())
makeFrontend()->queueCommand(dir, m_buildCommand);
@ -1099,8 +1099,8 @@ void AutoProjectPart::slotExecute()
if( DomUtil::readBoolEntry(dom, "/kdevautoproject/run/autoinstall", false) && isDirty() ){
m_executeAfterBuild = true;
// Use kdesu??
if( DomUtil::readBoolEntry(dom, "/kdevautoproject/run/autokdesu", false) ){
// Use tdesu??
if( DomUtil::readBoolEntry(dom, "/kdevautoproject/run/autotdesu", false) ){
//slotInstallWithKdesu assumes that it hasn't just been build...
kdDebug(9020) << "slotExecute: before startMakeCommand" << endl;
_auto ? slotInstallWithKdesu() : startMakeCommand(buildDirectory(), TQString::tqfromLatin1("install"), true);
@ -1451,7 +1451,7 @@ void AutoProjectPart::startSimpleMakeCommand( const TQString & dir, const TQStri
m_buildCommand = dircmd + cmdline;
if (withKdesu)
m_buildCommand = "kdesu -t -c '" + m_buildCommand + "'";
m_buildCommand = "tdesu -t -c '" + m_buildCommand + "'";
if (!m_buildCommand.isNull())
makeFrontend()->queueCommand(dir, m_buildCommand);

@ -255,7 +255,7 @@ void AutoSubprojectView::initActions()
TQT_TQOBJECT(this), TQT_SLOT( slotInstallSuSubproject() ), actions, "install subproject as root" );
installSuSubprojectAction->setWhatsThis(i18n("<qt><b>Install as root user</b><p>Runs <b>make install</b> "
"command from the directory of the selected subproject "
"with root privileges.<br> It is executed via kdesu "
"with root privileges.<br> It is executed via tdesu "
"command.<br> Environment variables and make arguments "
"can be specified in the project settings dialog, "
"<b>Make Options</b> tab.</qt>"));
@ -1082,7 +1082,7 @@ void AutoSubprojectView::slotCustomBuildCommand(int val)
break;
case 5: //command as root
m_part->appFrontend()->startAppCommand(m_part->buildDirectory() + relpath,
"kdesu -t -c ' cd " +
"tdesu -t -c ' cd " +
KProcess::quote(m_part->buildDirectory() + relpath) + " && "
+ cmd + "'", false);
break;

@ -12,7 +12,7 @@
<Action name="build_configure" />
<Action name="build_makefilecvs" />
<Action name="build_install" />
<Action name="build_install_kdesu" />
<Action name="build_install_tdesu" />
<Separator/>
<Action name="build_clean" />
<Action name="build_distclean" />

@ -122,10 +122,10 @@ CustomProjectPart::CustomProjectPart( TQObject *parent, const char *name, const
action = new KAction( i18n( "Install (as root user)" ), 0,
this, TQT_SLOT( slotInstallWithKdesu() ),
actionCollection(), "build_install_kdesu" );
actionCollection(), "build_install_tdesu" );
action->setToolTip( i18n( "Install as root user" ) );
action->setWhatsThis( i18n( "<b>Install</b><p>Runs <b>make install</b> command from the project directory with root privileges.<br>"
"It is executed via kdesu command.<br>"
"It is executed via tdesu command.<br>"
"Environment variables and make arguments can be specified "
"in the project settings dialog, <b>Make Options</b> tab." ) );
@ -951,7 +951,7 @@ void CustomProjectPart::startMakeCommand( const TQString &dir, const TQString &t
cmdline.prepend( makeEnvironment() );
if ( withKdesu )
cmdline = "kdesu -t -c '" + cmdline + "'";
cmdline = "tdesu -t -c '" + cmdline + "'";
m_buildCommand = dircmd + cmdline;
@ -1053,8 +1053,8 @@ void CustomProjectPart::slotExecute()
if ( DomUtil::readBoolEntry( *projectDom(), "/kdevcustomproject/run/autoinstall", false ) && ( isDirty() || !TQFileInfo( mainProgram() ).exists() ) )
{
m_executeAfterBuild = true;
// Use kdesu??
if ( DomUtil::readBoolEntry( *projectDom(), "/kdevcustomproject/run/autokdesu", false ) )
// Use tdesu??
if ( DomUtil::readBoolEntry( *projectDom(), "/kdevcustomproject/run/autotdesu", false ) )
//slotInstallWithKdesu assumes that it hasn't just been build...
_auto ? slotInstallWithKdesu() : startMakeCommand( buildDirectory(), TQString::tqfromLatin1( "install" ), true );
else

@ -9,7 +9,7 @@ libkdevbuildbase_la_SOURCES = kdevbuildtool.cpp
kdevelopbuildtoolsincludedir = $(includedir)/kdevelop/buildtools/base
kdevelopbuildtoolsinclude_HEADERS = kdevbuildtool.h
DOXYGEN_REFERENCES = dcop interfaces kdecore kdefx kdeui khtml kmdi kio kjs kparts kutils kdevutil kdevinterfaces kdevextensions
DOXYGEN_REFERENCES = dcop interfaces tdecore tdefx tdeui khtml kmdi kio kjs kparts kutils kdevutil kdevinterfaces kdevextensions
DOXYGEN_PROJECTNAME = KDevelop Buildtool Base Library
DOXYGEN_DOCDIRPREFIX = kdevbt
include ../../../Doxyfile.am

@ -18,7 +18,7 @@ parser:
EXTRA_DIST = autotools.yy autotools.ll
DOXYGEN_REFERENCES = dcop interfaces kdecore kdefx kdeui khtml kmdi kio kjs kparts kutils
DOXYGEN_REFERENCES = dcop interfaces tdecore tdefx tdeui khtml kmdi kio kjs kparts kutils
DOXYGEN_PROJECTNAME = KDevelop AutoTools Parser
DOXYGEN_DOCDIRPREFIX = kdevparser
include ../../../../Doxyfile.am

@ -23,7 +23,7 @@ parser:
EXTRA_DIST = qmake.yy qmake.ll
DOXYGEN_REFERENCES = dcop interfaces kdecore kdefx kdeui khtml kmdi kio kjs kparts kutils
DOXYGEN_REFERENCES = dcop interfaces tdecore tdefx tdeui khtml kmdi kio kjs kparts kutils
DOXYGEN_PROJECTNAME = KDevelop QMake parser
DOXYGEN_DOCDIRPREFIX = kdevparser
include ../../../../Doxyfile.am

@ -23,7 +23,7 @@ kdevelopbuildtoolsinclude_HEADERS = addenvvardlg.h addfilesdialog.h \
makeoptionswidgetbase.h removesubprojectdialog.h removesubprojectdlgbase.h runoptionswidget.h \
runoptionswidgetbase.h subclassesdlg.h subclassesdlgbase.h
DOXYGEN_REFERENCES = dcop interfaces kdecore kdefx kdeui khtml kmdi kio kjs kparts kutils kdevutil kdevinterfaces kdevutil
DOXYGEN_REFERENCES = dcop interfaces tdecore tdefx tdeui khtml kmdi kio kjs kparts kutils kdevutil kdevinterfaces kdevutil
DOXYGEN_PROJECTNAME = KDevelop Buildtool Widgets Library
DOXYGEN_DOCDIRPREFIX = kdevbt
include ../../../Doxyfile.am

@ -99,7 +99,7 @@ RunOptionsWidget::RunOptionsWidget(TQDomDocument &dom, const TQString &configGro
startinterminal_box->setChecked(DomUtil::readBoolEntry(dom, configGroup + "/run/terminal"));
autocompile_box->setChecked(DomUtil::readBoolEntry(dom, configGroup + "/run/autocompile", false));
autoinstall_box->setChecked(DomUtil::readBoolEntry(dom, configGroup + "/run/autoinstall", false));
autokdesu_box->setChecked(DomUtil::readBoolEntry(dom, configGroup + "/run/autokdesu", false));
autotdesu_box->setChecked(DomUtil::readBoolEntry(dom, configGroup + "/run/autotdesu", false));
}
@ -117,7 +117,7 @@ void RunOptionsWidget::accept()
DomUtil::writeBoolEntry(m_dom, m_configGroup + "/run/terminal", startinterminal_box->isChecked());
DomUtil::writeBoolEntry(m_dom, m_configGroup + "/run/autocompile", autocompile_box->isChecked());
DomUtil::writeBoolEntry(m_dom, m_configGroup + "/run/autoinstall", autoinstall_box->isChecked());
DomUtil::writeBoolEntry(m_dom, m_configGroup + "/run/autokdesu", autokdesu_box->isChecked());
DomUtil::writeBoolEntry(m_dom, m_configGroup + "/run/autotdesu", autotdesu_box->isChecked());
m_environmentVariablesWidget->accept();
}

@ -179,10 +179,10 @@
</widget>
<widget class="TQCheckBox">
<property name="name">
<cstring>autokdesu_box</cstring>
<cstring>autotdesu_box</cstring>
</property>
<property name="text">
<string>Use &amp;kdesu when installing</string>
<string>Use &amp;tdesu when installing</string>
</property>
<property name="toolTip" stdset="0">
<string></string>

@ -196,7 +196,7 @@ void GDBBreakpointWidget::savePartialProjectSession(QDomElement* el)
Note that the .kdevses is related to a project. User settings equal for all projects don't
belong to here. You save them to ~/.kde/share/config/kdeveloprc via class KConfig of the
kdecore library.
tdecore library.
Document your part in the way described at \ref howToDocument (doc/api/HowToDocument.dox file).

@ -525,10 +525,10 @@ and the <ulink url="doc.trolltech.com">Qt online reference</ulink>.
The main KDE libraries you'll be using for creating your own KDE applications are:
<itemizedlist>
<listitem><para>
the kdecore library, containing all classes that are non-visible elements to provide application functionality
the tdecore library, containing all classes that are non-visible elements to provide application functionality
</para></listitem>
<listitem><para>
the kdeui library, containing user interface elements like menubars, toolbars, etc.
the tdeui library, containing user interface elements like menubars, toolbars, etc.
</para></listitem>
<listitem><para>
the kfile library, containing the file selection dialogs
@ -539,7 +539,7 @@ the kfile library, containing the file selection dialogs
Additionally, for specific solutions KDE offers the following libraries:
<itemizedlist>
<listitem><para>
the kdefx library, containing pixmaps, image effects the KStyle extension to QStyle
the tdefx library, containing pixmaps, image effects the KStyle extension to QStyle
</para></listitem>
<listitem><para>
the khtml library, containing KDE's html component
@ -590,7 +590,7 @@ You see that first we have changed from <classname>QApplication</classname> to <
</classname>. Further, we had to change the previously used <methodname>setMainWidget()</methodname> method
to <methodname>setTopWidget</methodname>, which <classname>KApplication</classname> uses to set the main
widget. That's it! Your first KDE application is ready - you only have to tell the compiler the KDE
include path and the linker to link in the kdecore library with -lkdecore.
include path and the linker to link in the tdecore library with -ltdecore.
</para>
<para>
As you now know what at least the <function>main()</function> function provides generally and how an
@ -601,7 +601,7 @@ mentioned before and see the effects.
<para>
What you should have looked into additionally until now is the reference documentation for Qt,
especially the <classname>QApplication</classname>, <classname>QWidget</classname> and <classname>QObject
</classname> class and the kdecore library documentation for the <classname>KApplication</classname> class.
</classname> class and the tdecore library documentation for the <classname>KApplication</classname> class.
The <ulink url="developer.kde.org/documentation/library/libraryref.html">KDE Library Reference handbook</ulink>
also covers a complete description about the invocation of the <classname>QApplication</classname> and
<classname>KApplication</classname> constructors including command-line argument processing.
@ -803,7 +803,7 @@ the compilation phase.
-Wall -pedantic -W -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -ansi -D_XOPEN_SOURCE=500
-D_BSD_SOURCE -Wcast-align -Wconversion -O2 -fno-exceptions -fno-check-new -o kscribble_client -R
/usr/local/trinity/lib -R /usr/lib/qt/lib -R /usr/X11R6/lib -L/usr/X11R6/lib -L/usr/lib/qt/lib
-L/usr/local/trinity/lib kscribble_client.o -lkdecore
-L/usr/local/trinity/lib kscribble_client.o -ltdecore
59 gmake[2]: Leaving directory `/home/caleb/kscribble/src'
60 gmake[2]: Entering directory `/home/caleb/kscribble'
61 gmake[2]: Nothing to be done for `all-am'.
@ -1120,7 +1120,7 @@ know how to handle them and only have to concentrate on the displayed data.
<title>KDE Views</title>
<para>
The KDE libraries were invented to make designing applications for the K Desktop Environment easier
and capable of more functionality than what Qt alone is offering. The kdeui library offers:
and capable of more functionality than what Qt alone is offering. The tdeui library offers:
<orderedlist>
<listitem><para>
KListView: a more powerful version of <classname>QListView</classname>
@ -1274,7 +1274,7 @@ either displaying the button, button with text on the right, button with text be
This possibility should be made configurable by the user, but isn't a must-be. The text is shown
as a tool-tip anyway and a toolbar usually consists of buttons and other widgets like lineedits and
combo boxes. For a complete reference, see the <classname>KToolBar</classname> class reference located
in the kdeui library.
in the tdeui library.
</para>
<para>
As an example, we have a look at the "New File" button in a generic application:

@ -50,9 +50,9 @@
<variablelist>
<varlistentry>
<term><ulink url="kdeapi:kdecore/index.html">kdecore</ulink></term>
<term><ulink url="kdeapi:tdecore/index.html">tdecore</ulink></term>
<listitem><para>
The kdecore library is the basic application framework for every KDE based
The tdecore library is the basic application framework for every KDE based
program. It provides access to the configuration system, command line
handling, icon loading and manipulation, some special kinds inter-process
communication, file handling and various other utilities.
@ -60,9 +60,9 @@ communication, file handling and various other utilities.
</varlistentry>
<varlistentry>
<term><ulink url="kdeapi:kdeui/index.html">kdeui</ulink></term>
<term><ulink url="kdeapi:tdeui/index.html">tdeui</ulink></term>
<listitem><para>
The <literal>kdeui</literal> library provides many widgets and standard
The <literal>tdeui</literal> library provides many widgets and standard
dialogs which Qt doesn't have or which have more features than their Qt
counterparts. It also includes several widgets which are subclassed
from Qt ones and are better integrated with the KDE desktop by
@ -109,26 +109,26 @@ Core application skeleton - classes needed by almost every application.
<itemizedlist>
<listitem><formalpara>
<title><ulink url="kdeapi:kdecore/KApplication">KApplication</ulink></title>
<title><ulink url="kdeapi:tdecore/KApplication">KApplication</ulink></title>
<para>
Initializes and controls a KDE application.
</para>
</formalpara></listitem>
<listitem><formalpara>
<title><ulink url="kdeapi:kdecore/KUniqueApplication">KUniqueApplication</ulink></title>
<title><ulink url="kdeapi:tdecore/KUniqueApplication">KUniqueApplication</ulink></title>
<para>
Makes sure only one instance of an application can run simultaneously.
</para>
</formalpara></listitem>
<listitem><formalpara><title><ulink url="kdeapi:kdecore/KAboutData">KAboutData</ulink></title>
<listitem><formalpara><title><ulink url="kdeapi:tdecore/KAboutData">KAboutData</ulink></title>
<para>
Holds information for the about box.
</para>
</formalpara></listitem>
<listitem><formalpara><title><ulink url="kdeapi:kdecore/KCmdLineArgs">KCmdLineArgs</ulink></title>
<listitem><formalpara><title><ulink url="kdeapi:tdecore/KCmdLineArgs">KCmdLineArgs</ulink></title>
<para>
Command line argument processing.
</para>
@ -143,25 +143,25 @@ database, global settings and application resources.
<itemizedlist>
<listitem><formalpara><title><ulink url="kdeapi:kdecore/KConfig">KConfig</ulink></title>
<listitem><formalpara><title><ulink url="kdeapi:tdecore/KConfig">KConfig</ulink></title>
<para>
Provides access to KDE's configuration database.
</para>
</formalpara></listitem>
<listitem><formalpara><title><ulink url="kdeapi:kdecore/KSimpleConfig">KSimpleConfig</ulink></title>
<listitem><formalpara><title><ulink url="kdeapi:tdecore/KSimpleConfig">KSimpleConfig</ulink></title>
<para>
Access to simple, non-hierarchical configuration files.
</para>
</formalpara></listitem>
<listitem><formalpara><title><ulink url="kdeapi:kdecore/KDesktopFile">KDesktopFile</ulink></title>
<listitem><formalpara><title><ulink url="kdeapi:tdecore/KDesktopFile">KDesktopFile</ulink></title>
<para>
Access to <literal>.desktop</literal> files.
</para>
</formalpara></listitem>
<listitem><formalpara><title><ulink url="kdeapi:kdecore/KGlobalSettings">KGlobalSettings</ulink></title>
<listitem><formalpara><title><ulink url="kdeapi:tdecore/KGlobalSettings">KGlobalSettings</ulink></title>
<para>
Convenient access to not application-specific settings.
</para>
@ -175,19 +175,19 @@ File and URL handling - decoding of URLs, temporary files etc.
<itemizedlist>
<listitem><formalpara><title><ulink url="kdeapi:kdecore/KURL">KURL</ulink></title>
<listitem><formalpara><title><ulink url="kdeapi:tdecore/KURL">KURL</ulink></title>
<para>
Represents and parses URLs.
</para>
</formalpara></listitem>
<listitem><formalpara><title><ulink url="kdeapi:kdecore/KTempFile">KTempFile</ulink></title>
<listitem><formalpara><title><ulink url="kdeapi:tdecore/KTempFile">KTempFile</ulink></title>
<para>
Creates unique files for temporary data.
</para>
</formalpara></listitem>
<listitem><formalpara><title><ulink url="kdeapi:kdecore/KSaveFile">KSaveFile</ulink></title>
<listitem><formalpara><title><ulink url="kdeapi:tdecore/KSaveFile">KSaveFile</ulink></title>
<para>
Allows to save files atomically.
</para>
@ -201,25 +201,25 @@ Interprocess communication - DCOP helper classes and subprocess invocation.
<itemizedlist>
<listitem><formalpara><title><ulink url="kdeapi:kdecore/KProcess">KProcess</ulink></title>
<listitem><formalpara><title><ulink url="kdeapi:tdecore/KProcess">KProcess</ulink></title>
<para>
Invokes and controls child processes.
</para>
</formalpara></listitem>
<listitem><formalpara><title><ulink url="kdeapi:kdecore/KShellProcess">KShellProcess</ulink></title>
<listitem><formalpara><title><ulink url="kdeapi:tdecore/KShellProcess">KShellProcess</ulink></title>
<para>
Invokes child processes via a shell.
</para>
</formalpara></listitem>
<listitem><formalpara><title><ulink url="kdeapi:kdesu/PtyProcess">PtyProcess</ulink></title>
<listitem><formalpara><title><ulink url="kdeapi:tdesu/PtyProcess">PtyProcess</ulink></title>
<para>
Communication with a child processes through a pseudo terminal.
</para>
</formalpara></listitem>
<listitem><formalpara><title><ulink url="kdeapi:kdecore/KIPC">KIPC</ulink></title>
<listitem><formalpara><title><ulink url="kdeapi:tdecore/KIPC">KIPC</ulink></title>
<para>
Simple IPC mechanism using X11 ClientMessages.
</para>
@ -231,13 +231,13 @@ DCOP messaging.
</para>
</formalpara></listitem>
<listitem><formalpara><title><ulink url="kdeapi:kdecore/KDCOPPropertyProxy">KDCOPPropertyProxy</ulink></title>
<listitem><formalpara><title><ulink url="kdeapi:tdecore/KDCOPPropertyProxy">KDCOPPropertyProxy</ulink></title>
<para>
A proxy class publishing Qt properties through DCOP.
</para>
</formalpara></listitem>
<listitem><formalpara><title><ulink url="kdeapi:kdeui/KDCOPActionProxy">KDCOPActionProxy</ulink></title>
<listitem><formalpara><title><ulink url="kdeapi:tdeui/KDCOPActionProxy">KDCOPActionProxy</ulink></title>
<para>
A proxy class publishing a DCOP interface for actions.
</para>
@ -252,25 +252,25 @@ random numbers
<itemizedlist>
<listitem><formalpara><title><ulink url="kdeapi:kdecore/KRegExp">KRegExp</ulink></title>
<listitem><formalpara><title><ulink url="kdeapi:tdecore/KRegExp">KRegExp</ulink></title>
<para>
POSIX regular expression matching.
</para>
</formalpara></listitem>
<listitem><formalpara><title><ulink url="kdeapi:kdecore/KStringHandler">KStringHandler</ulink></title>
<listitem><formalpara><title><ulink url="kdeapi:tdecore/KStringHandler">KStringHandler</ulink></title>
<para>
An extravagant interface for string manipulation.
</para>
</formalpara></listitem>
<listitem><formalpara><title><ulink url="kdeapi:kdecore/KZoneAllocator">KZoneAllocator</ulink></title>
<listitem><formalpara><title><ulink url="kdeapi:tdecore/KZoneAllocator">KZoneAllocator</ulink></title>
<para>
Efficient memory allocator for large groups of small objects.
</para>
</formalpara></listitem>
<listitem><formalpara><title><ulink url="kdeapi:kdecore/KRandomSequence">KRandomSequence</ulink></title>
<listitem><formalpara><title><ulink url="kdeapi:tdecore/KRandomSequence">KRandomSequence</ulink></title>
<para>
Pseudo random number generator.
</para>
@ -285,19 +285,19 @@ throughout the desktop.
<itemizedlist>
<listitem><formalpara><title><ulink url="kdeapi:kdecore/KAccel">KAccel</ulink></title>
<listitem><formalpara><title><ulink url="kdeapi:tdecore/KAccel">KAccel</ulink></title>
<para>
Collection of keyboard shortcuts.
</para>
</formalpara></listitem>
<listitem><formalpara><title><ulink url="kdeapi:kdecore/KStdAccel">KStdAccel</ulink></title>
<listitem><formalpara><title><ulink url="kdeapi:tdecore/KStdAccel">KStdAccel</ulink></title>
<para>
Easy access to the common keyboard shortcut keys.
</para>
</formalpara></listitem>
<listitem><formalpara><title><ulink url="kdeapi:kdecore/KGlobalAccel"></ulink></title>
<listitem><formalpara><title><ulink url="kdeapi:tdecore/KGlobalAccel"></ulink></title>
<para>
Collection of system-wide keyboard shortcuts.
</para>
@ -311,31 +311,31 @@ Image processing - icon loading and manipulating.
<itemizedlist>
<listitem><formalpara><title><ulink url="kdeapi:kdecore/KIconLoader">KIconLoader</ulink></title>
<listitem><formalpara><title><ulink url="kdeapi:tdecore/KIconLoader">KIconLoader</ulink></title>
<para>
Loads icons in a theme-conforming way.
</para>
</formalpara></listitem>
<listitem><formalpara><title><ulink url="kdeapi:kdecore/KIconTheme">KIconTheme</ulink></title>
<listitem><formalpara><title><ulink url="kdeapi:tdecore/KIconTheme">KIconTheme</ulink></title>
<para>
Helper classes for KIconLoader.
</para>
</formalpara></listitem>
<listitem><formalpara><title><ulink url="kdeapi:kdecore/KPixmap">KPixmap</ulink></title>
<listitem><formalpara><title><ulink url="kdeapi:tdecore/KPixmap">KPixmap</ulink></title>
<para>
A pixmap class with extended dithering capabilities.
</para>
</formalpara></listitem>
<listitem><formalpara><title><ulink url="kdeapi:kdeui/KPixmapEffect">KPixmapEffect</ulink></title>
<listitem><formalpara><title><ulink url="kdeapi:tdeui/KPixmapEffect">KPixmapEffect</ulink></title>
<para>
Pixmap effects like gradients and patterns.
</para>
</formalpara></listitem>
<listitem><formalpara><title><ulink url="kdeapi:kdeui/KPixmapIO">KPixmapIO</ulink></title>
<listitem><formalpara><title><ulink url="kdeapi:tdeui/KPixmapIO">KPixmapIO</ulink></title>
<para>
Fast <classname>QImage</classname> to <classname>QPixmap</classname> conversion.
</para>
@ -349,19 +349,19 @@ Drag and Drop - drag objects for colors and URLs.
<itemizedlist>
<listitem><formalpara><title><ulink url="kdeapi:kdecore/KURLDrag">KURLDrag</ulink></title>
<listitem><formalpara><title><ulink url="kdeapi:tdecore/KURLDrag">KURLDrag</ulink></title>
<para>
A drag object for URLs.
</para>
</formalpara></listitem>
<listitem><formalpara><title><ulink url="kdeapi:kdeui/KColorDrag">KColorDrag</ulink></title>
<listitem><formalpara><title><ulink url="kdeapi:tdeui/KColorDrag">KColorDrag</ulink></title>
<para>
A drag object for colors.
</para>
</formalpara></listitem>
<listitem><formalpara><title><ulink url="kdeapi:kdecore/KMultipleDrag">KMultipleDrag</ulink></title>
<listitem><formalpara><title><ulink url="kdeapi:tdecore/KMultipleDrag">KMultipleDrag</ulink></title>
<para>
Allows to construct drag objects from several others.
</para>
@ -375,7 +375,7 @@ Auto-Completion
<itemizedlist>
<listitem><formalpara><title><ulink url="kdeapi:kdecore/KCompletion">KCompletion</ulink></title>
<listitem><formalpara><title><ulink url="kdeapi:tdecore/KCompletion">KCompletion</ulink></title>
<para>
Generic auto-completion of strings.
</para>
@ -401,55 +401,55 @@ Widgets - widget classes for list views, rules, color selection etc.
<itemizedlist>
<listitem><formalpara><title><ulink url="kdeapi:kdeui/KListView">KListView</ulink></title>
<listitem><formalpara><title><ulink url="kdeapi:tdeui/KListView">KListView</ulink></title>
<para>
A variant of <classname>QListView</classname> that honors KDE's system-wide settings.
</para>
</formalpara></listitem>
<listitem><formalpara><title><ulink url="kdeapi:kdeui/KListView">KListBox</ulink></title>
<listitem><formalpara><title><ulink url="kdeapi:tdeui/KListView">KListBox</ulink></title>
<para>
A variant of <classname>QListBox</classname> that honors KDE's system-wide settings.
</para>
</formalpara></listitem>
<listitem><formalpara><title><ulink url="kdeapi:kdeui/KListView">KIconView</ulink></title>
<listitem><formalpara><title><ulink url="kdeapi:tdeui/KListView">KIconView</ulink></title>
<para>
A variant of <classname>QIconView</classname> that honors KDE's system-wide settings.
</para>
</formalpara></listitem>
<listitem><formalpara><title><ulink url="kdeapi:kdeui/KListView">KLineEdit</ulink></title>
<listitem><formalpara><title><ulink url="kdeapi:tdeui/KListView">KLineEdit</ulink></title>
<para>
A variant of <classname>QLineEdit</classname> with completion support.
</para>
</formalpara></listitem>
<listitem><formalpara><title><ulink url="kdeapi:kdeui/KComboBox">KComboBox</ulink></title>
<listitem><formalpara><title><ulink url="kdeapi:tdeui/KComboBox">KComboBox</ulink></title>
<para>
A variant of <classname>QComboBox</classname> with completion support.
</para>
</formalpara></listitem>
<listitem><formalpara><title><ulink url="kdeapi:kdeui/KFontCombo">KFontCombo</ulink></title>
<listitem><formalpara><title><ulink url="kdeapi:tdeui/KFontCombo">KFontCombo</ulink></title>
<para>
A combo box for selecting fonts.
</para>
</formalpara></listitem>
<listitem><formalpara><title><ulink url="kdeapi:kdeui/KColorCombo">KColorCombo</ulink></title>
<listitem><formalpara><title><ulink url="kdeapi:tdeui/KColorCombo">KColorCombo</ulink></title>
<para>
A combo box for selecting colors.
</para>
</formalpara></listitem>
<listitem><formalpara><title><ulink url="kdeapi:kdeui/KColorButton">KColorButton</ulink></title>
<listitem><formalpara><title><ulink url="kdeapi:tdeui/KColorButton">KColorButton</ulink></title>
<para>
A button for selecting colors.
</para>
</formalpara></listitem>
<listitem><formalpara><title><ulink url="kdeapi:kdeui/KURLCombo">KURLCombo</ulink></title>
<listitem><formalpara><title><ulink url="kdeapi:tdeui/KURLCombo">KURLCombo</ulink></title>
<para>
A combo box for selecting file names and URLs.
</para>
@ -461,26 +461,26 @@ A line edit for selecting file names and URLs.
</para>
</formalpara></listitem>
<listitem><formalpara><title><ulink url="kdeapi:kdeui/KRuler">KRuler</ulink></title>
<listitem><formalpara><title><ulink url="kdeapi:tdeui/KRuler">KRuler</ulink></title>
<para>
A ruler widget.
</para>
</formalpara></listitem>
<listitem><formalpara><title><ulink
url="kdeapi:kdeui/KAnimWidget">KAnimWidget</ulink></title>
url="kdeapi:tdeui/KAnimWidget">KAnimWidget</ulink></title>
<para>
animations.
</para>
</formalpara></listitem>
<listitem><formalpara><title><ulink url="kdeapi:kdeui/KNumInput">KNumInput</ulink></title>
<listitem><formalpara><title><ulink url="kdeapi:tdeui/KNumInput">KNumInput</ulink></title>
<para>
A widget for inputting numbers.
</para>
</formalpara></listitem>
<listitem><formalpara><title><ulink url="kdeapi:kdeui/KPasswordEdit">KPasswordEdit</ulink></title>
<listitem><formalpara><title><ulink url="kdeapi:tdeui/KPasswordEdit">KPasswordEdit</ulink></title>
<para>
A widget for inputting passwords.
</para>
@ -500,13 +500,13 @@ A file selection dialog.
</para>
</formalpara></listitem>
<listitem><formalpara><title><ulink url="kdeapi:kdeui/KColorDialog">KColorDialog</ulink></title>
<listitem><formalpara><title><ulink url="kdeapi:tdeui/KColorDialog">KColorDialog</ulink></title>
<para>
A color selection dialog.
</para>
</formalpara></listitem>
<listitem><formalpara><title><ulink url="kdeapi:kdeui/KFontDialog">KFontDialog</ulink></title>
<listitem><formalpara><title><ulink url="kdeapi:tdeui/KFontDialog">KFontDialog</ulink></title>
<para>
A font selection dialog.
</para>
@ -518,31 +518,31 @@ An icon selection dialog.
</para>
</formalpara></listitem>
<listitem><formalpara><title><ulink url="kdeapi:kdeui/KKeyDialog">KKeyDialog</ulink></title>
<listitem><formalpara><title><ulink url="kdeapi:tdeui/KKeyDialog">KKeyDialog</ulink></title>
<para>
A dialog for editing keyboard bindings.
</para>
</formalpara></listitem>
<listitem><formalpara><title><ulink url="kdeapi:kdeui/KEditToolBar">KEditToolBar</ulink></title>
<listitem><formalpara><title><ulink url="kdeapi:tdeui/KEditToolBar">KEditToolBar</ulink></title>
<para>
A dialog for editing toolbars.
</para>
</formalpara></listitem>
<listitem><formalpara><title><ulink url="kdeapi:kdeui/KTipDialog">KTipDialog</ulink></title>
<listitem><formalpara><title><ulink url="kdeapi:tdeui/KTipDialog">KTipDialog</ulink></title>
<para>
A Tip-of-the-day dialog.
</para>
</formalpara></listitem>
<listitem><formalpara><title><ulink url="kdeapi:kdeui/KAboutDialog">KAboutDialog</ulink></title>
<listitem><formalpara><title><ulink url="kdeapi:tdeui/KAboutDialog">KAboutDialog</ulink></title>
<para>
An about dialog.
</para>
</formalpara></listitem>
<listitem><formalpara><title><ulink url="kdeapi:kdeui/KLineEditDlg">KLineEditDlg</ulink></title>
<listitem><formalpara><title><ulink url="kdeapi:tdeui/KLineEditDlg">KLineEditDlg</ulink></title>
<para>
A simple dialog for entering text.
</para>
@ -554,13 +554,13 @@ A simple dialog for entering URLs.
</para>
</formalpara></listitem>
<listitem><formalpara><title><ulink url="kdeapi:kdeui/KMessageBox">KMessageBox</ulink></title>
<listitem><formalpara><title><ulink url="kdeapi:tdeui/KMessageBox">KMessageBox</ulink></title>
<para>
A dialog for signaling errors and warnings.
</para>
</formalpara></listitem>
<listitem><formalpara><title><ulink url="kdeapi:kdeui/KPasswordDialog">KPasswordDialog</ulink></title>
<listitem><formalpara><title><ulink url="kdeapi:tdeui/KPasswordDialog">KPasswordDialog</ulink></title>
<para>
A dialog for inputting passwords.
</para>
@ -574,19 +574,19 @@ Actions and XML GUI
<itemizedlist>
<listitem><formalpara><title><ulink url="kdeapi:kdeui/KAction">KAction</ulink></title>
<listitem><formalpara><title><ulink url="kdeapi:tdeui/KAction">KAction</ulink></title>
<para>
Abstraction for an action that can be plugged into menu bars and tool bars.
</para>
</formalpara></listitem>
<listitem><formalpara><title><ulink url="kdeapi:kdeui/KActionCollection">KActionCollection</ulink></title>
<listitem><formalpara><title><ulink url="kdeapi:tdeui/KActionCollection">KActionCollection</ulink></title>
<para>
A set of actions.
</para>
</formalpara></listitem>
<listitem><formalpara><title><ulink url="kdeapi:kdeui/KXMLGUIClient">KXMLGUIClient</ulink></title>
<listitem><formalpara><title><ulink url="kdeapi:tdeui/KXMLGUIClient">KXMLGUIClient</ulink></title>
<para>
A GUI fragment consisting of an action collection and a DOM tree representing their location in the GUI.
</para>
@ -606,19 +606,19 @@ Plugins and Components
<itemizedlist>
<listitem><formalpara><title><ulink url="kdeapi:kdecore/KLibrary">KLibrary</ulink></title>
<listitem><formalpara><title><ulink url="kdeapi:tdecore/KLibrary">KLibrary</ulink></title>
<para>
Represents a dynamically loaded library.
</para>
</formalpara></listitem>
<listitem><formalpara><title><ulink url="kdeapi:kdecore/KLibrary">KLibLoader</ulink></title>
<listitem><formalpara><title><ulink url="kdeapi:tdecore/KLibrary">KLibLoader</ulink></title>
<para>
Shared library loading.
</para>
</formalpara></listitem>
<listitem><formalpara><title><ulink url="kdeapi:kdecore/KLibFactory">KLibFactory</ulink></title>
<listitem><formalpara><title><ulink url="kdeapi:tdecore/KLibFactory">KLibFactory</ulink></title>
<para>
Object factory in plugins.
</para>
@ -1366,9 +1366,9 @@ come from many different plugins or parts.
<para>
KDE's class for toplevel windows,
<ulink url="kdeapi:kdeui/KMainWindow.html">KMainWindow</ulink>,
<ulink url="kdeapi:tdeui/KMainWindow.html">KMainWindow</ulink>,
inherits
<ulink url="kdeapi:kdeui/KXMLGUIClient.html">KXMLGUIClient</ulink>
<ulink url="kdeapi:tdeui/KXMLGUIClient.html">KXMLGUIClient</ulink>
and therefore supports XMLGUI out of the box. All actions created within it must
have the client's <literal>actionCollection()</literal> as parent. A call to
<literal>createGUI()</literal> will then build the whole set of menu and tool
@ -1451,7 +1451,7 @@ in this screenshot:
<para>
The XML file begins with a document type declaration. The DTD for kpartgui can
be found in the kdelibs sources in <filename>kdeui/kpartgui.dtd</filename>. The
be found in the kdelibs sources in <filename>tdeui/kpartgui.dtd</filename>. The
outermost element of the file contains the instance name of the application as
attribute. It can also contain a version number in the form "version=2". This
is useful when you release new versions of an application with a changed menu
@ -1499,11 +1499,11 @@ screenshots corresponds to the <literal>&lt;Separator&gt;</literal> element.
You will note that some menu items do not not have a corresponding element in
the XML file. These are <emphasis>standard actions</emphasis>. Standard
actions are created by the class
<ulink url="kdeapi:kdeui/KStdAction.html">KStdAction</ulink>.
<ulink url="kdeapi:tdeui/KStdAction.html">KStdAction</ulink>.
When you create such actions in your application (such as in the C++ example
above), they will automatically be inserted in a prescribed position, and
possibly with an icon and a shortcut key. You can look up these locations in
the file <filename>kdeui/ui_standards.rc</filename> in the kdelibs sources.
the file <filename>tdeui/ui_standards.rc</filename> in the kdelibs sources.
</para>
</simplesect>
@ -1769,7 +1769,7 @@ QToolTip::add(w, i18n("This widget does something."))
<para>
If the menu bars and tool bars are created using the <ulink url="actionpattern.html">
action pattern</ulink>, the string used as tooltip is derived from the first argument
of the <ulink url="kdeapi:kdeui/KAction.html">KAction</ulink> constructor:
of the <ulink url="kdeapi:tdeui/KAction.html">KAction</ulink> constructor:
</para>
<programlisting>
@ -1809,7 +1809,7 @@ action->setWhatsThis(i18n("Deletes the marked file"))
<para>
The invocation of <application>KHelpCenter</application> is encapsulated in the
<ulink url="kdeapi:kdecore/KApplication">KApplication</ulink>
<ulink url="kdeapi:tdecore/KApplication">KApplication</ulink>
class. In order to show the manual of your application, just use
</para>
@ -2008,7 +2008,7 @@ inherits <classname>KLibFactory</classname>). More common examples are
which is supposed to produce
<ulink url="kdeapi:kparts/KParts::ReadOnlyPart">KParts::ReadOnlyPart</ulink>
objects or in most cases the generic
<ulink url="kdeapi:kdecore/KLibFactory">KLibFactory</ulink>.
<ulink url="kdeapi:tdecore/KLibFactory">KLibFactory</ulink>.
</para>
</simplesect>
@ -2046,7 +2046,7 @@ if (!factory) {
<para>
From this point, the further proceeding depends again on the service type. For
generic plugins, you create objects with the method
<ulink url="kdeapi:kdecore/KLibFactory.html#ref3">KLibFactory::create()</ulink>.
<ulink url="kdeapi:tdecore/KLibFactory.html#ref3">KLibFactory::create()</ulink>.
For KParts, you must cast the factory pointer to the more specific KParts::Factory and use
its create() method:
</para>
@ -2091,13 +2091,13 @@ name. As additional properties, it contains two lines:
<literal>X-DCOP-ServiceType</literal> specifies the way the service is
started. The value <literal>Unique</literal> says that the service must not be
started more than once. This means, if you try to start this service (e.g. via
<ulink url="kdeapi:kdecore/KApplication.html#startServiceByName">
<ulink url="kdeapi:tdecore/KApplication.html#startServiceByName">
KApplication::startServiceByName()</ulink>, KDE looks whether it is already
registered with DCOP and uses the running service. If it is not registered yet,
KDE will start it up and wait until is registered. Thus, you can immediately
send DCOP calls to the service. In such a case, the service should be implemented
as a
<ulink url="kdeapi:kdecore/KUniqueApplication.html">KUniqueApplication</ulink>.
<ulink url="kdeapi:tdecore/KUniqueApplication.html">KUniqueApplication</ulink>.
</para>
<para>
@ -3079,7 +3079,7 @@ Icon=ftp
The <literal>"protocol"</literal> entry defines for which protocol this slave
is responsible. <literal>"exec"</literal> is (in contrast what you would
expect naively) the name of the library that implements the slave. When the
slave is supposed to start, the <command>"kdeinit"</command> executable is
slave is supposed to start, the <command>"tdeinit"</command> executable is
started which in turn loads this library into its address space. So in
practice, you can think of the running slave as a separate process although it
is implemented as library. The advantage of this mechanism is that it saves a

@ -21,7 +21,7 @@ bin_PROGRAMS = kdevdesigner
# the application source, library search path, and link libraries
kdevdesigner_SOURCES = main.cpp kdevdesigner.cpp
kdevdesigner_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_KDECORE) $(LIB_KDEUI) -lkdefx $(LIB_KIO) -lktexteditor
kdevdesigner_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_KDECORE) $(LIB_KDEUI) -ltdefx $(LIB_KIO) -lktexteditor
kdevdesigner_LDADD = $(LIB_KPARTS)
# this is where the desktop file will go

@ -54,7 +54,7 @@ else
fi
kdelibs_doxydirs="$ac_kdelibs_doxydirs $ac_kde_htmldir/default/kdelibs-apidocs $ac_kde_htmldir/en/kdelibs-apidocs"
AC_FIND_FILE(kdecore/html/classKApplication.html, $kdelibs_doxydirs, kdelibs_doxydir)
AC_FIND_FILE(tdecore/html/classKApplication.html, $kdelibs_doxydirs, kdelibs_doxydir)
AC_MSG_RESULT($kdelibs_doxydir)
if test "$kdelibs_doxydir" = NO; then
kdelibs_doxydir=""
@ -92,7 +92,7 @@ if test "$ac_kde_htmldir" != ""; then
kdelibs_docdirs="$kdelibs_docdirs $ac_kde_htmldir/default/kdelibs $ac_kde_htmldir/en/kdelibs"
fi
kdelibs_docdirs="$ac_kdelibs_docdirs $kdelibs_docdirs"
AC_FIND_FILE(kdecore/index.html, $kdelibs_docdirs, kdelibs_docdir)
AC_FIND_FILE(tdecore/index.html, $kdelibs_docdirs, kdelibs_docdir)
AC_MSG_RESULT($kdelibs_docdir)
if test "$kdelibs_docdir" = NO; then
kdelibs_docdir=""

@ -54,7 +54,7 @@ in the src directory : <myproject>.kcfg and a <settings>.kcfgc
The configure.in.in will need to be modified : change the line #MIN_CONFIG(3.0.0)
into #MIN_CONFIG(3.2.0)
Take an example on the many apps found in the kdegames source package and consult :
Take an example on the many apps found in the tdegames source package and consult :
http://developer.kde.org/documentation/tutorials/kconfigxt/kconfigxt.html
* With KParts, you can embed other kde components in your program, or make your program

@ -126,7 +126,7 @@
<envvar value="" name="QT_PLUGIN_PATH" />
</envvars>
<autoinstall>false</autoinstall>
<autokdesu>false</autokdesu>
<autotdesu>false</autotdesu>
<globaldebugarguments/>
<useglobalprogram>true</useglobalprogram>
<globalcwd>%{dest}</globalcwd>

@ -21,7 +21,7 @@ target.path = $$KDEBIN
FORMS += mainview.ui
HEADERS += mainviewimp.h
SOURCES += %{APPNAMELC}.cpp mainviewimp.cpp
LIBS += -lkdeui -lkdecore
LIBS += -ltdeui -ltdecore
INCLUDEPATH = $$KDEINCLUDE
QMAKE_LIBDIR = $$KDELIB
TARGET = %{APPNAMELC}

@ -8,7 +8,7 @@ lib%{APPNAMELC}part_la_SOURCES = %{APPNAMELC}_part.cpp \
lib%{APPNAMELC}part_la_LDFLAGS = $(KDE_PLUGIN)
lib%{APPNAMELC}part_la_LIBADD = -lkofficeui
## The kdeinit loadable module
## The tdeinit loadable module
lib_LTLIBRARIES = %{APPNAMELC}.la
%{APPNAMELC}_la_SOURCES = %{APPNAMELC}.cpp
%{APPNAMELC}_la_LDFLAGS = -module -avoid-version -no-undefined $(all_libraries)

@ -75,7 +75,7 @@ in the src directory : <myproject>.kcfg and a <settings>.kcfgc
The configure.in.in will need to be modified : change the line #MIN_CONFIG(3.0.0)
into #MIN_CONFIG(3.2.0)
Take an example on the many apps found in the kdegames source package and consult :
Take an example on the many apps found in the tdegames source package and consult :
http://developer.kde.org/documentation/tutorials/kconfigxt/kconfigxt.html
* With KParts, you can embed other kde components in your program, or make your program

@ -22,7 +22,7 @@ prefs.ui
# Now that we have our list of sources we can build the program
myenv.KDEprogram( '%{APPNAMELC}', %{APPNAMELC}_sources ) # main program
myenv.KDEaddpaths_includes( './ ../' ) # additional paths
myenv.KDEaddlibs( 'qt-mt kdecore kio kparts kmdi' ) # additional libraries
myenv.KDEaddlibs( 'qt-mt tdecore kio kparts kmdi' ) # additional libraries
## Next, the kpart library
## using KDEshlib, the .so and .la are installed automatically when needed
@ -31,7 +31,7 @@ myenv2=env.Copy()
%{APPNAMELC}part_sources = '%{APPNAMELC}_part.cpp'
myenv2.KDEshlib( 'lib%{APPNAMELC}part', %{APPNAMELC}part_sources)
myenv2.KDEaddpaths_includes( './ #/' ) # the '#' means the top-level directory
myenv2.KDEaddlibs( 'qt-mt kio kdecore kdeprint kparts' )
myenv2.KDEaddlibs( 'qt-mt kio tdecore tdeprint kparts' )
# myenv2.KDEaddflags_link( '-DQT_THREAD_SUPPORT' )
#############################

@ -75,7 +75,7 @@ in the src directory : <myproject>.kcfg and a <settings>.kcfgc
The configure.in.in will need to be modified : change the line #MIN_CONFIG(3.0.0)
into #MIN_CONFIG(3.2.0)
Take an example on the many apps found in the kdegames source package and consult :
Take an example on the many apps found in the tdegames source package and consult :
http://developer.kde.org/documentation/tutorials/kconfigxt/kconfigxt.html
* With KParts, you can embed other kde components in your program, or make your program

@ -37,7 +37,7 @@ myenv.KDEprogram( "%{APPNAMELC}", %{APPNAMELC}_sources )
myenv.KDEaddpaths_includes( "./ ../" )
## Necessary libraries to link against
myenv.KDEaddlibs( "qt-mt kio kdecore kdeprint" )
myenv.KDEaddlibs( "qt-mt kio tdecore tdeprint" )
## This shows how to add other link flags to the program
# myenv.KDEaddflags_link('-export-dynamic')

@ -50,7 +50,7 @@ in the src directory : <myproject>.kcfg and a <settings>.kcfgc
The configure.in.in will need to be modified : change the line #MIN_CONFIG(3.0.0)
into #MIN_CONFIG(3.2.0)
Take an example on the many apps found in the kdegames source package and consult :
Take an example on the many apps found in the tdegames source package and consult :
http://developer.kde.org/documentation/tutorials/kconfigxt/kconfigxt.html
* With KParts, you can embed other kde components in your program, or make your program

@ -87,8 +87,8 @@
<tocsect3 name="Getting Started with the Dialog Widgets" url="ch08lev1sec2.html"/>
<tocsect3 name="Dialog Layout the Simple Way" url="ch08lev1sec3.html"/>
<tocsect3 name="Dialog Modality-Modal or Modeless Dialogs" url="ch08lev1sec4.html"/>
<tocsect3 name="KDE User-Interface Library (kdeui)" url="ch08lev1sec5.html"/>
<tocsect3 name="KDE User-Interface Library (kdeui)" url="ch08lev1sec6.html"/>
<tocsect3 name="KDE User-Interface Library (tdeui)" url="ch08lev1sec5.html"/>
<tocsect3 name="KDE User-Interface Library (tdeui)" url="ch08lev1sec6.html"/>
<tocsect3 name="A Larger Example: The Option Dialog in KEdit" url="ch08lev1sec7.html"/>
<tocsect3 name="User Interface Design Rules for Dialogs" url="ch08lev1sec8.html"/>
<tocsect3 name="Summary" url="ch08lev1sec9.html"/>
@ -754,9 +754,9 @@
<entry name="dialog boxes, dialog-based application (KDialogApp), kdialogapp.h class definition" url="ch11.html"/>
<entry name="dialog boxes, dialog-based application (KDialogApp), main() method" url="ch11.html"/>
<entry name="dialog boxes, dialog-based application (KDialogApp)" url="ch11.html"/>
<entry name="dialog boxes, kdeui (KDE user-interface library), manager widgets" url="ch08lev1sec4.html"/>
<entry name="dialog boxes, kdeui (KDE user-interface library), read-to-use dialog boxes" url="ch08lev1sec4.html"/>
<entry name="dialog boxes, kdeui (KDE user-interface library)" url="ch08lev1sec4.html"/>
<entry name="dialog boxes, tdeui (KDE user-interface library), manager widgets" url="ch08lev1sec4.html"/>
<entry name="dialog boxes, tdeui (KDE user-interface library), read-to-use dialog boxes" url="ch08lev1sec4.html"/>
<entry name="dialog boxes, tdeui (KDE user-interface library)" url="ch08lev1sec4.html"/>
<entry name="dialog boxes, KDialogBase class" url="ch08lev1sec5.html"/>
<entry name="dialog boxes, KEdit Option dialog example" url="ch08lev1sec6.html"/>
<entry name="dialog boxes, KSpellConfig configuration dialog" url="ch10lev1sec3.html"/>
@ -1127,7 +1127,7 @@
<entry name="GUIs, address book, contacts, selecting" url="ch10lev1sec4.html"/>
<entry name="GUIs, address book" url="ch10lev1sec4.html"/>
<entry name="GUIs, dialog boxes, design guidelines" url="ch08lev1sec7.html"/>
<entry name="GUIs, dialog boxes, kdeui (KDE user-interface library)" url="ch08lev1sec4.html"/>
<entry name="GUIs, dialog boxes, tdeui (KDE user-interface library)" url="ch08lev1sec4.html"/>
<entry name="GUIs, dialog boxes, KDialogBase class" url="ch08lev1sec5.html"/>
<entry name="GUIs, dialog boxes, KEdit Option dialog example" url="ch08lev1sec6.html"/>
<entry name="GUIs, dialog boxes, tqlayout" url="ch08lev1sec2.html"/>
@ -1312,8 +1312,8 @@
<entry name="KDEDIR environment variable" url="ch02lev1sec2.html"/>
<entry name="$KDEDIR/share/appstext.txt (KResourceDemo widget)" url="ch07lev1sec4.html"/>
<entry name="KDE, distributions" url="ch01lev1sec2.html"/>
<entry name="kdegames module (CVS)" url="ch17lev1sec2.html"/>
<entry name="kdegames package" url="ch01lev1sec5.html"/>
<entry name="tdegames module (CVS)" url="ch17lev1sec2.html"/>
<entry name="tdegames package" url="ch01lev1sec5.html"/>
<entry name="kdegraphics module (CVS)" url="ch17lev1sec2.html"/>
<entry name="kdegraphics package" url="ch01lev1sec5.html"/>
<entry name="kdei18n package" url="ch01lev1sec5.html"/>
@ -1337,14 +1337,14 @@
<entry name="KDE, (overview of)" url="ch01.html"/>
<entry name="KDE, Qt toolkit" url="ch03.html"/>
<entry name="kdesdk module (CVS)" url="ch17lev1sec2.html"/>
<entry name="kdesupport module (CVS)" url="ch17lev1sec2.html"/>
<entry name="kdesupport package" url="ch01lev1sec5.html"/>
<entry name="tdesupport module (CVS)" url="ch17lev1sec2.html"/>
<entry name="tdesupport package" url="ch01lev1sec5.html"/>
<entry name="KDE, system requirements" url="ch01lev1sec4.html"/>
<entry name="kdetoys module (CVS)" url="ch17lev1sec2.html"/>
<entry name="KDE Translator's and Documenter's Web site" url="ch06lev1sec4.html"/>
<entry name="kdeui (KDE user-interface library), dialog boxes" url="ch08lev1sec4.html"/>
<entry name="kdeui (KDE user-interface library), manager widgets" url="ch08lev1sec4.html"/>
<entry name="kdeui (KDE user-interface library" url="ch08lev1sec4.html"/>
<entry name="tdeui (KDE user-interface library), dialog boxes" url="ch08lev1sec4.html"/>
<entry name="tdeui (KDE user-interface library), manager widgets" url="ch08lev1sec4.html"/>
<entry name="tdeui (KDE user-interface library" url="ch08lev1sec4.html"/>
<entry name="KDE user-interface library" url="ch08lev1sec4.html"/>
<entry name="kdeutils module (CVS)" url="ch17lev1sec2.html"/>
<entry name="kdeutils package" url="ch01lev1sec5.html"/>
@ -1610,9 +1610,9 @@
<entry name="libkimgic library, supported image formats" url="ch10lev1sec2.html"/>
<entry name="LibKMid" url="ch14lev1sec6.html"/>
<entry name="libraries, documentation" url="ch15.html"/>
<entry name="libraries, kdeui (KDE user-interface library), dialog boxes" url="ch08lev1sec4.html"/>
<entry name="libraries, kdeui (KDE user-interface library), manager widgets" url="ch08lev1sec4.html"/>
<entry name="libraries, kdeui (KDE user-interface library)" url="ch08lev1sec4.html"/>
<entry name="libraries, tdeui (KDE user-interface library), dialog boxes" url="ch08lev1sec4.html"/>
<entry name="libraries, tdeui (KDE user-interface library), manager widgets" url="ch08lev1sec4.html"/>
<entry name="libraries, tdeui (KDE user-interface library)" url="ch08lev1sec4.html"/>
<entry name="libraries, libkimgic, supported image formats" url="ch10lev1sec2.html"/>
<entry name="libraries, Mesa" url="ch03lev1sec6.html"/>
<entry name="libraries, OpenGL" url="ch03lev1sec6.html"/>
@ -1653,7 +1653,7 @@
<entry name="listings, DCOP, typical application that uses DCOP" url="ch13lev1sec5.html"/>
<entry name="listings, dcop" url="ch13lev1sec7.html"/>
<entry name="listings, dialog boxes, CGotoDialog class example" url="ch08lev1sec2.html"/>
<entry name="listings, dialog boxes, dialog from kdeui library" url="ch08lev1sec4.html"/>
<entry name="listings, dialog boxes, dialog from tdeui library" url="ch08lev1sec4.html"/>
<entry name="listings, dialog boxes, KButtonBox in a dialog" url="ch08lev1sec4.html"/>
<entry name="listings, dialog boxes, KEdit dialog code" url="ch08lev1sec6.html"/>
<entry name="listings, dialog boxes, manual tqgeometry strategy and QLayouts classes" url="ch08lev1sec2.html"/>
@ -1822,7 +1822,7 @@
<entry name="Makefiles" url="ch02lev1sec2.html"/>
<entry name="make targets" url="ch16lev1sec2.html"/>
<entry name="make utility" url="ch02lev1sec2.html"/>
<entry name="manager widgets (kdeui)" url="ch08lev1sec4.html"/>
<entry name="manager widgets (tdeui)" url="ch08lev1sec4.html"/>
<entry name="managing, sessions, header file example" url="ch06lev1sec2.html"/>
<entry name="managing, sessions, KEdit" url="ch06lev1sec2.html"/>
<entry name="managing, sessions, main source code example" url="ch06lev1sec2.html"/>
@ -2121,13 +2121,13 @@
<entry name="packages, installing, source packages" url="ch01lev1sec5.html"/>
<entry name="packages, kdeadmin" url="ch01lev1sec5.html"/>
<entry name="packages, kdebase" url="ch01lev1sec5.html"/>
<entry name="packages, kdegames" url="ch01lev1sec5.html"/>
<entry name="packages, tdegames" url="ch01lev1sec5.html"/>
<entry name="packages, kdegraphics" url="ch01lev1sec5.html"/>
<entry name="packages, kdei18n" url="ch01lev1sec5.html"/>
<entry name="packages, kdelibs" url="ch01lev1sec5.html"/>
<entry name="packages, kdemultimedia" url="ch01lev1sec5.html"/>
<entry name="packages, kdenetwork" url="ch01lev1sec5.html"/>
<entry name="packages, kdesupport" url="ch01lev1sec5.html"/>
<entry name="packages, tdesupport" url="ch01lev1sec5.html"/>
<entry name="packages, kdeutils" url="ch01lev1sec5.html"/>
<entry name="packages, make targets" url="ch16lev1sec2.html"/>
<entry name="packages, shared libraries" url="ch16lev1sec2.html"/>
@ -2827,7 +2827,7 @@
<entry name="widgets, KSpell (spell-checking), modal spell-checking" url="ch10lev1sec3.html"/>
<entry name="widgets, KSpell (spell-checking), sample application" url="ch10lev1sec3.html"/>
<entry name="widgets, KSpell (spell-checking)" url="ch10lev1sec3.html"/>
<entry name="widgets, manager widgets (kdeui)" url="ch08lev1sec4.html"/>
<entry name="widgets, manager widgets (tdeui)" url="ch08lev1sec4.html"/>
<entry name="widgets, names of specific widgets" url="ch10lev1sec3.html"/>
<entry name="widgets, painting, invoking paint events" url="ch04lev1sec2.html"/>
<entry name="widgets, painting, KXOSquare example" url="ch04lev1sec2.html"/>

@ -550,7 +550,7 @@ void IncludePathResolver::setOutOfSourceBuildSystem( const TQString& source, con
#ifdef TEST
/** This can be used for testing and debugging the system. To compile it use
* gcc includepathresolver.cpp -I /usr/share/qt3/include -I /usr/include/kde -I ../../lib/util -DTEST -lkdecore -g -o includepathresolver
* gcc includepathresolver.cpp -I /usr/share/qt3/include -I /usr/include/kde -I ../../lib/util -DTEST -ltdecore -g -o includepathresolver
* */
int main(int argc, char **argv) {

@ -58,8 +58,8 @@ TQStringList KDevKDELibsImporter::fileList()
files += fileList( m_settings->kdeDir() + "/dcopc" );
files += fileList( m_settings->kdeDir() + "/dom" );
files += fileList( m_settings->kdeDir() + "/kabc" );
files += fileList( m_settings->kdeDir() + "/kdeprint" );
files += fileList( m_settings->kdeDir() + "/kdesu" );
files += fileList( m_settings->kdeDir() + "/tdeprint" );
files += fileList( m_settings->kdeDir() + "/tdesu" );
files += fileList( m_settings->kdeDir() + "/kio" );
files += fileList( m_settings->kdeDir() + "/kjs" );
files += fileList( m_settings->kdeDir() + "/kparts" );

@ -34,6 +34,6 @@ install( FILES
tde_add_kpart( libkdevpgioptions AUTOMOC
SOURCES
pgioptionsfactory.cpp pgioptionsplugin.cpp
LINK kdevextras-shared kdeui-shared
LINK kdevextras-shared tdeui-shared
DESTINATION ${PLUGIN_INSTALL_DIR}
)

@ -7,7 +7,7 @@ liblang_debugger_la_SOURCES = kdevdebugger.cpp debugger.cpp
langincludedirdir = $(includedir)/kdevelop/languages/debugger
langincludedir_HEADERS = debugger.h kdevdebugger.h
DOXYGEN_REFERENCES = dcop interfaces kdecore kdefx kdeui khtml kmdi kio kjs kparts kutils kdevinterfaces kdevutil
DOXYGEN_REFERENCES = dcop interfaces tdecore tdefx tdeui khtml kmdi kio kjs kparts kutils kdevinterfaces kdevutil
DOXYGEN_PROJECTNAME = KDevelop Debugger Support Library
DOXYGEN_DOCDIRPREFIX = kdevlang
include ../../../Doxyfile.am

@ -11,6 +11,6 @@ libdesignerintegration_la_SOURCES = implementationwidgetbase.ui \
langincludedirdir = $(includedir)/kdevelop/languages/designer_integration
langincludedir_HEADERS = qtdesignerintegration.h implementationwidget.h implementationwidgetbase.h
DOXYGEN_REFERENCES = dcop interfaces kdecore kdefx kdeui khtml kmdi kio kjs kparts kutils kdevinterfaces kdevutil
DOXYGEN_REFERENCES = dcop interfaces tdecore tdefx tdeui khtml kmdi kio kjs kparts kutils kdevinterfaces kdevutil
DOXYGEN_PROJECTNAME = KDevelop Designer Integration Support Library
include ../../../Doxyfile.am

@ -10,7 +10,7 @@ INCLUDES = $(all_includes)
servicetypedir = $(kde_servicetypesdir)
servicetype_DATA = kdeveloppcsimporter.desktop
DOXYGEN_REFERENCES = dcop interfaces kdecore kdefx kdeui khtml kmdi kio kjs kparts kutils kdevinterfaces kdevutil
DOXYGEN_REFERENCES = dcop interfaces tdecore tdefx tdeui khtml kmdi kio kjs kparts kutils kdevinterfaces kdevutil
DOXYGEN_PROJECTNAME = KDevelop Language Support Interfaces Library
DOXYGEN_DOCDIRPREFIX = kdevlang
include ../../../Doxyfile.am

@ -33,6 +33,6 @@ install( FILES
tde_add_library( kdevcatalog SHARED AUTOMOC
SOURCES tag.cpp catalog.cpp
VERSION 0.0.0
LINK kdecore-shared ${BDB_LIBRARY}
LINK tdecore-shared ${BDB_LIBRARY}
DESTINATION ${LIB_INSTALL_DIR}
)

@ -7,7 +7,7 @@ libkdevcatalog_la_LIBADD = -l$(DB3LIB) $(LIB_KDECORE) $(LIB_QT)
kdevcatalogincludedir = $(includedir)/kdevelop/catalog
kdevcataloginclude_HEADERS = catalog.h tag.h
DOXYGEN_REFERENCES = dcop interfaces kdecore kdefx kdeui khtml kmdi kio kjs kparts kutils
DOXYGEN_REFERENCES = dcop interfaces tdecore tdefx tdeui khtml kmdi kio kjs kparts kutils
DOXYGEN_PROJECTNAME = KDevelop Catalog Library
DOXYGEN_DOCDIRPREFIX = kdev
include ../../Doxyfile.am

@ -33,7 +33,7 @@ METASOURCES = AUTO
SUBDIRS = extensions external extras
DOXYGEN_REFERENCES = dcop interfaces kdecore kdefx kdeui khtml kmdi kio kjs kparts kutils kdevutil designer_integration kdevcatalog kdevprofileslib kdevextensions
DOXYGEN_REFERENCES = dcop interfaces tdecore tdefx tdeui khtml kmdi kio kjs kparts kutils kdevutil designer_integration kdevcatalog kdevprofileslib kdevextensions
DOXYGEN_PROJECTNAME = KDevelop Interfaces Library
DOXYGEN_DOCDIRPREFIX = kdev
include ../../Doxyfile.am

@ -16,7 +16,7 @@ libkdevextensions_la_SOURCES = kdevappfrontend.cpp kdevmakefrontend.cpp
INCLUDES = -I$(top_srcdir)/lib/interfaces $(all_includes)
METASOURCES = AUTO
DOXYGEN_REFERENCES = dcop interfaces kdecore kdefx kdeui khtml kmdi kio kjs kparts kutils kdevinterfaces
DOXYGEN_REFERENCES = dcop interfaces tdecore tdefx tdeui khtml kmdi kio kjs kparts kutils kdevinterfaces
DOXYGEN_PROJECTNAME = KDevelop Extension Interfaces Library
DOXYGEN_DOCDIRPREFIX = kdev
include ../../../Doxyfile.am

@ -45,7 +45,7 @@ KDevelop version >= 3.1 comes with a customized version (fork ;)) of %Qt Designe
- KDevDesigner uses %KDE icons and dialogs and thus provides better integration with a system.
.
It is safe to preview forms with some %KDE widgets from kdeui and kio libraries - KDevDesigner part is linked to those libraries so it will not crash under some circumstances.
It is safe to preview forms with some %KDE widgets from tdeui and kio libraries - KDevDesigner part is linked to those libraries so it will not crash under some circumstances.
KDevDesigner will not create .ui.h files - this feature is completely disabled. Integrated KDevDesigner will use subclassing approach, standalone does not allow to enter code.

@ -10,6 +10,6 @@ libkinterfacedesigner_la_LIBADD = $(LIB_QT) $(LIB_KPARTS) $(LIB_KDEUI)
libkinterfacedesigner_la_LDFLAGS = $(all_libraries)
libkinterfacedesigner_la_SOURCES = designer.cpp
DOXYGEN_REFERENCES = dcop interfaces kdecore kdefx kdeui khtml kmdi kio kjs kparts kutils
DOXYGEN_REFERENCES = dcop interfaces tdecore tdefx tdeui khtml kmdi kio kjs kparts kutils
DOXYGEN_PROJECTNAME = KInterfaceDesigner Library
include ../../../Doxyfile.am

@ -12,7 +12,7 @@ libkdevextras_la_SOURCES = kdevcompileroptions.cpp kdevvcsintegrator.cpp
servicetype_DATA = kdevelopcompileroptions.desktop \
kdevelopvcsintegrator.desktop
DOXYGEN_REFERENCES = dcop interfaces kdecore kdefx kdeui khtml kmdi kio kjs kparts kutils kdevinterfaces
DOXYGEN_REFERENCES = dcop interfaces tdecore tdefx tdeui khtml kmdi kio kjs kparts kutils kdevinterfaces
DOXYGEN_PROJECTNAME = KDevelop Extra Interfaces Library
DOXYGEN_DOCDIRPREFIX = kdev
include ../../../Doxyfile.am

@ -12,7 +12,7 @@ kdevelopincludedir = $(includedir)/kdevelop/util
kdevelopinclude_HEADERS = domutil.h execcommand.h filetemplate.h urlutil.h \
configwidgetproxy.h rurl.h kscriptactionmanager.h
DOXYGEN_REFERENCES = dcop interfaces kdecore kdefx kdeui khtml kmdi kio kjs kparts kutils kdevextensions kdevinterfaces
DOXYGEN_REFERENCES = dcop interfaces tdecore tdefx tdeui khtml kmdi kio kjs kparts kutils kdevextensions kdevinterfaces
DOXYGEN_PROJECTNAME = KDevelop Utility Library
DOXYGEN_DOCDIRPREFIX = kdev
include ../../Doxyfile.am

@ -24,7 +24,7 @@ rcdir = $(kde_datadir)/kdevelop
rc_DATA = kdevhtml_partui.rc
DOXYGEN_REFERENCES = dcop interfaces kdecore kdefx kdeui khtml kmdi kio kjs kparts kutils kdevutil kdevinterfaces
DOXYGEN_REFERENCES = dcop interfaces tdecore tdefx tdeui khtml kmdi kio kjs kparts kutils kdevutil kdevinterfaces
DOXYGEN_PROJECTNAME = KDevelop Widgets Library
DOXYGEN_DOCDIRPREFIX = kdev
include ../../Doxyfile.am

@ -169,7 +169,7 @@ TQString KDevHTMLPart::context() const
}
// Note: this function is a copy of code in kdecore/kconfigbase.cpp ;)
// Note: this function is a copy of code in tdecore/kconfigbase.cpp ;)
static bool isUtf8(const char *buf) {
int i, n;
register unsigned char c;
@ -256,7 +256,7 @@ TQString KDevHTMLPart::resolveEnvVarsInURL(const TQString& url)
TQString path = url;
int nDollarPos = path.find( '$' );
// Note: the while loop below is a copy of code in kdecore/kconfigbase.cpp ;)
// Note: the while loop below is a copy of code in tdecore/kconfigbase.cpp ;)
while( nDollarPos != -1 && nDollarPos+1 < static_cast<int>(path.length())) {
// there is at least one $
if( (path)[nDollarPos+1] == '(' ) {

@ -13,6 +13,6 @@ pcolorcombo.cpp pdoublenuminput.cpp ppixmapedit.cpp propertylist.cpp ps
kdevpropeditorincludedir = $(includedir)/kdevelop/propeditor
kdevpropeditorinclude_HEADERS = childproperty.h pcombobox.h pdummywidget.h ppointedit.h propertymachinefactory.h pcursoredit.h pfontbutton.h prectedit.h propertywidget.h pdateedit.h pfontcombo.h property.h psizeedit.h pdatetimeedit.h plineedit.h propertyeditor.h psizepolicyedit.h pdoublenuminput.h ppixmapedit.h propertylist.h pspinbox.h propertywidgetproxy.h multiproperty.h pyesnobutton.h purledit.h psymbolcombo.h pstringlistedit.h pcolorcombo.h pcolorbutton.h pcheckbox.h plinestyleedit.h
DOXYGEN_REFERENCES = dcop interfaces kdecore kdefx kdeui khtml kmdi kio kjs kparts kutils
DOXYGEN_REFERENCES = dcop interfaces tdecore tdefx tdeui khtml kmdi kio kjs kparts kutils
DOXYGEN_PROJECTNAME = KDevelop Property Editing Library
include ../../../Doxyfile.am

@ -488,7 +488,7 @@ application -->
<!--
List any special requirements for your application here. This should include:
.Libraries or other software that is not included in kdesupport,
.Libraries or other software that is not included in tdesupport,
kdelibs, or kdebase.
.Hardware requirements like amount of RAM, disk space, graphics card
capabilities, screen resolution, special expansion cards, etc.

@ -10,7 +10,7 @@ partincludedir_HEADERS = kdevdocumentationplugin.h
servicetypedir = $(kde_servicetypesdir)
servicetype_DATA = kdevelopdocumentationplugins.desktop
DOXYGEN_REFERENCES = dcop interfaces kdecore kdefx kdeui khtml kmdi kio kjs kparts kutils kdevutil kdevinterfaces
DOXYGEN_REFERENCES = dcop interfaces tdecore tdefx tdeui khtml kmdi kio kjs kparts kutils kdevutil kdevinterfaces
DOXYGEN_PROJECTNAME = KDevelop Documentation Part Interfaces Library
DOXYGEN_DOCDIRPREFIX = kdevdoc
include ../../../Doxyfile.am

@ -1,6 +1,6 @@
INCLUDES = -I$(top_srcdir)/lib/interfaces -I$(top_srcdir)/lib/util $(all_includes)
METASOURCES = AUTO
bin_PROGRAMS = kdevelop-htdig
kdevelop_htdig_LDFLAGS = $(all_libraries) $(LIB_QT) -lDCOP $(LIB_KDECORE) $(LIB_KDEUI) -lkdefx $(LIB_KIO) -lktexteditor
kdevelop_htdig_LDFLAGS = $(all_libraries) $(LIB_QT) -lDCOP $(LIB_KDECORE) $(LIB_KDEUI) -ltdefx $(LIB_KIO) -lktexteditor
kdevelop_htdig_SOURCES = htdigindex.cpp
noinst_HEADERS = htdigindex.h

@ -24,7 +24,7 @@ bin_PROGRAMS = kdevelop kdevassistant
kdevelop_SOURCES = main.cpp kdevideextension.cpp settingswidget.ui
kdevelop_METASOURCES = AUTO
kdevelop_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_KDECORE) $(LIB_KDEUI) -lkdefx $(LIB_KIO) -lktexteditor -lkdevelop -L../lib/.libs -L../lib/interfaces/external/.libs -lkinterfacedesigner
kdevelop_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_KDECORE) $(LIB_KDEUI) -ltdefx $(LIB_KIO) -lktexteditor -lkdevelop -L../lib/.libs -L../lib/interfaces/external/.libs -lkinterfacedesigner
kdevelop_LDADD = libkdevshell.la -L../lib/interfaces/external/.libs -lkinterfacedesigner
rcdir = $(kde_datadir)/kdevelop
@ -35,7 +35,7 @@ kdevelopdatadir = $(kde_confdir)
kdevelopdata_DATA = kdeveloprc kdevassistantrc
SUBDIRS = profiles profileengine newui kconf_update
kdevassistant_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_KDECORE) $(LIB_KDEUI) -lkdefx $(LIB_KIO) -lktexteditor -lkdevelop -L../lib/.libs -L../lib/interfaces/external/.libs -lkinterfacedesigner
kdevassistant_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_KDECORE) $(LIB_KDEUI) -ltdefx $(LIB_KIO) -lktexteditor -lkdevelop -L../lib/.libs -L../lib/interfaces/external/.libs -lkinterfacedesigner
kdevassistant_SOURCES = main_assistant.cpp kdevassistantextension.cpp
kdevassistant_LDADD = libkdevshell.la -L../lib/interfaces/external/.libs -lkinterfacedesigner
@ -48,7 +48,7 @@ shellinclude_HEADERS = api.h core.h documentationpart.h editorproxy.h \
statusbar.h toplevel.h generalinfowidgetbase.h mimewarningdialog.h settingswidget.h \
simplemainwindow.h multibuffer.h
DOXYGEN_REFERENCES = dcop interfaces kdecore kdefx kdeui khtml kmdi kio kjs kparts kutils kdevutil kdevinterfaces kdevextensions
DOXYGEN_REFERENCES = dcop interfaces tdecore tdefx tdeui khtml kmdi kio kjs kparts kutils kdevutil kdevinterfaces kdevextensions
DOXYGEN_PROJECTNAME = KDevelop Generic Shell
DOXYGEN_DOCDIRPREFIX = kdevshell
include ../Doxyfile.am

@ -11,7 +11,7 @@ kconf_PROGRAMS = kdev-gen-settings-kconf_update
kconfdir = $(libdir)/kconf_update_bin
kdev_gen_settings_kconf_update_SOURCES = kdev-gen-settings-kconf_update.cpp
kdev_gen_settings_kconf_update_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_KDECORE) $(LIB_KDEUI) -lkdefx $(LIB_KIO) -lktexteditor
kdev_gen_settings_kconf_update_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_KDECORE) $(LIB_KDEUI) -ltdefx $(LIB_KIO) -lktexteditor
kdev_gen_settings_kconf_update_LDADD = $(LIB_QT)
# vim: set noet:

@ -10,7 +10,7 @@ libprofileengine_la_SOURCES = profileengine.cpp profile.cpp
profileincludedir = $(includedir)/kdevelop/shell/profileengine
profileinclude_HEADERS = profileengine.h profile.h
DOXYGEN_REFERENCES = dcop interfaces kdecore kdefx kdeui khtml kmdi kio kjs kparts kutils kdevutil kdevinterfaces
DOXYGEN_REFERENCES = dcop interfaces tdecore tdefx tdeui khtml kmdi kio kjs kparts kutils kdevutil kdevinterfaces
DOXYGEN_PROJECTNAME = KDevelop Shell Profiles Library
DOXYGEN_DOCDIRPREFIX = kdevprofiles
include ../../../Doxyfile.am

@ -75,6 +75,6 @@ tde_add_kpart( kded_kdevsvnd AUTOMOC
SOURCES
commitdlg.cpp commitdlgbase.ui kdevsvnd.cpp kdevsvnd.skel
kdevsvnd_widgets.cpp svnssltrustpromptbase.ui
LINK kio-shared kdeinit_kded-shared
LINK kio-shared tdeinit_kded-shared
DESTINATION ${PLUGIN_INSTALL_DIR}
)

@ -20,7 +20,7 @@ kio_kdevsvn_la_LDFLAGS = -module $(all_libraries) $(KDE_PLUGIN) $(SVN_LIB)
kded_kdevsvnd_la_SOURCES = commitdlg.cpp commitdlgbase.ui kdevsvnd.cpp \
kdevsvnd.skel kdevsvnd_widgets.cpp svnssltrustpromptbase.ui
kded_kdevsvnd_la_LIBADD = $(LIB_KIO) -lkdeinit_kded
kded_kdevsvnd_la_LIBADD = $(LIB_KIO) -ltdeinit_kded
kded_kdevsvnd_la_LDFLAGS = -module $(all_libraries) $(KDE_PLUGIN)
kdeddir = $(kde_servicesdir)/kded

Loading…
Cancel
Save