Rename many classes and header files to avoid conflicts with KDE4

pull/16/head
Timothy Pearson 11 年之前
父節點 3e3559f2d4
當前提交 d1e0cc99a2

@ -694,15 +694,15 @@ can combine TreeView's and normal Tablists without problems.<P>
<H3><A NAME="TDEToolBarButton">TDEToolBarButton &amp; TDERadioGroup</A></H3>
If you need to do anything with TDEToolBarButton you now need to include
&lt;ktoolbarbutton.h&gt; TDERadioGroup has been renamed to TDEToolBarRadioGroup and
requires you to include &lt;ktoolbarradiogroup.h&gt;<P>
&lt;tdetoolbarbutton.h&gt; TDERadioGroup has been renamed to TDEToolBarRadioGroup and
requires you to include &lt;tdetoolbarradiogroup.h&gt;<P>
<H4><P ALIGN="RIGHT"><A HREF="#TOC">Return to the Table of Contents</A></P></H4>
<H3><A NAME="TDEAccel">TDEAccel</A></H3>
The functions keyToString() and stringToKey() which were previously
declared globally in kaccel.h are now static methods in TDEAccel.<P>
declared globally in tdeaccel.h are now static methods in TDEAccel.<P>
<H4><P ALIGN="RIGHT"><A HREF="#TOC">Return to the Table of Contents</A></P></H4>

@ -154,9 +154,9 @@ not be available.
<ul>
<li> TDEAccel::insertItem() and TDEAccel::connectItem().
<pre>
- kaccel-&gt;insertItem( i18n("Scroll Up"), "Scroll Up", "Up" );
- kaccel-&gt;connectItem( "Scroll Up", this, TQT_SLOT(scrollUp()) );
+ kaccel-&gt;insert( "Scroll Up", i18n("Scroll Up"), TQString::null,
- tdeaccel-&gt;insertItem( i18n("Scroll Up"), "Scroll Up", "Up" );
- tdeaccel-&gt;connectItem( "Scroll Up", this, TQT_SLOT(scrollUp()) );
+ tdeaccel-&gt;insert( "Scroll Up", i18n("Scroll Up"), TQString::null,
Key_Up, this, TQT_SLOT(scrollUp()) );
</pre>
Note that a What's This parameter is now a part of the insert function.
@ -168,8 +168,8 @@ not be available.
can replace it. Note, however, that this would be handled automatically
by using TDEAction instead.
<pre>
- kaccel-&gt;changeMenuAccel( menu, id, "file_open" );
+ menu-&gt;setAccel( kaccel-&gt;shortcut( "file_open" ).keyCodeQt(), id );
- tdeaccel-&gt;changeMenuAccel( menu, id, "file_open" );
+ menu-&gt;setAccel( tdeaccel-&gt;shortcut( "file_open" ).keyCodeQt(), id );
</pre>
</li>
</ul>

@ -26,7 +26,7 @@
#define XEvent void
#endif
#include <kaction.h>
#include <tdeaction.h>
#include <klocale.h>
#include "kvideowidget.h"

@ -1,4 +1,4 @@
#include <klistview.h>
#include <tdelistview.h>
#include "main.h"
#ifndef TEST_H

@ -1,4 +1,4 @@
Checklist to ensure that zeroconf will work:
Chectdelist to ensure that zeroconf will work:
1) Install Avahi, at least version 0.3
2) compile tdednssd-avahi and install it to replace 'stub' libtdednssd.so provided by tdelibs

@ -26,7 +26,7 @@
#include <tdeconfig.h>
#include <kdesktopfile.h>
#include <kstandarsdirs.h>
#include <kstdaccel.h>
#include <tdestdaccel.h>
#include <kdebug.h>
#include <tqdir.h>

@ -19,8 +19,8 @@
#ifndef _script_loader_h
#define _script_loader_h
#include <tqptrlist.h>
#include <kmainwindow.h>
#include <kaction.h>
#include <tdemainwindow.h>
#include <tdeaction.h>
#include <tdescript/scriptinterface.h>
/**

@ -37,7 +37,7 @@ install( FILES
document.h view.h editor.h plugin.h editinterface.h
undointerface.h selectioninterface.h cursorinterface.h
clipboardinterface.h popupmenuinterface.h viewcursorinterface.h
searchinterface.h highlightinginterface.h blockselectioninterface.h
searchinterface.h highlightinginterface.h bloctdeselectioninterface.h
codecompletioninterface.h configinterface.h markinterface.h
printinterface.h wordwrapinterface.h dynwordwrapinterface.h
markinterfaceextension.h configinterfaceextension.h
@ -69,7 +69,7 @@ set( target tdetexteditor )
set( ${target}_SRCS
tdetexteditor.cpp
editinterface.cpp clipboardinterface.cpp selectioninterface.cpp searchinterface.cpp
codecompletioninterface.cpp wordwrapinterface.cpp blockselectioninterface.cpp
codecompletioninterface.cpp wordwrapinterface.cpp bloctdeselectioninterface.cpp
configinterface.cpp cursorinterface.cpp dynwordwrapinterface.cpp
printinterface.cpp highlightinginterface.cpp markinterface.cpp
popupmenuinterface.cpp undointerface.cpp viewcursorinterface.cpp
@ -78,8 +78,8 @@ set( ${target}_SRCS
searchdcopinterface.cpp searchdcopinterface.skel markinterfaceextension.cpp
configinterfaceextension.cpp encodinginterface.cpp sessionconfiginterface.cpp
viewstatusmsginterface.cpp editorchooser_ui.ui editorchooser.cpp
blockselectiondcopinterface.cpp documentinfo.cpp documentdcopinfo.cpp
blockselectiondcopinterface.skel documentdcopinfo.skel encodingdcopinterface.cpp
bloctdeselectiondcopinterface.cpp documentinfo.cpp documentdcopinfo.cpp
bloctdeselectiondcopinterface.skel documentdcopinfo.skel encodingdcopinterface.cpp
encodingdcopinterface.skel printdcopinterface.cpp printdcopinterface.skel
undodcopinterface.cpp undodcopinterface.skel viewcursordcopinterface.cpp
viewcursordcopinterface.skel viewstatusmsgdcopinterface.cpp

@ -4,7 +4,7 @@ lib_LTLIBRARIES = libtdetexteditor.la
libtdetexteditor_la_SOURCES = tdetexteditor.cpp \
editinterface.cpp clipboardinterface.cpp selectioninterface.cpp searchinterface.cpp \
codecompletioninterface.cpp wordwrapinterface.cpp blockselectioninterface.cpp \
codecompletioninterface.cpp wordwrapinterface.cpp bloctdeselectioninterface.cpp \
configinterface.cpp cursorinterface.cpp dynwordwrapinterface.cpp \
printinterface.cpp highlightinginterface.cpp markinterface.cpp \
popupmenuinterface.cpp undointerface.cpp viewcursorinterface.cpp \
@ -13,8 +13,8 @@ libtdetexteditor_la_SOURCES = tdetexteditor.cpp \
searchdcopinterface.cpp searchdcopinterface.skel markinterfaceextension.cpp \
configinterfaceextension.cpp encodinginterface.cpp sessionconfiginterface.cpp \
viewstatusmsginterface.cpp editorchooser_ui.ui editorchooser.cpp \
blockselectiondcopinterface.cpp documentinfo.cpp documentdcopinfo.cpp\
blockselectiondcopinterface.skel documentdcopinfo.skel encodingdcopinterface.cpp \
bloctdeselectiondcopinterface.cpp documentinfo.cpp documentdcopinfo.cpp\
bloctdeselectiondcopinterface.skel documentdcopinfo.skel encodingdcopinterface.cpp \
encodingdcopinterface.skel printdcopinterface.cpp printdcopinterface.skel \
undodcopinterface.cpp undodcopinterface.skel viewcursordcopinterface.cpp \
viewcursordcopinterface.skel viewstatusmsgdcopinterface.cpp \
@ -29,7 +29,7 @@ tdetexteditorinclude_HEADERS = document.h view.h editor.h plugin.h editinterface
selectioninterface.h cursorinterface.h \
clipboardinterface.h popupmenuinterface.h \
viewcursorinterface.h searchinterface.h highlightinginterface.h \
blockselectioninterface.h codecompletioninterface.h \
bloctdeselectioninterface.h codecompletioninterface.h \
configinterface.h markinterface.h printinterface.h wordwrapinterface.h \
dynwordwrapinterface.h markinterfaceextension.h configinterfaceextension.h \
encodinginterface.h viewstatusmsginterface.h sessionconfiginterface.h editorchooser.h \

@ -1,5 +1,5 @@
#include "blockselectiondcopinterface.h"
#include "blockselectioninterface.h"
#include "bloctdeselectiondcopinterface.h"
#include "bloctdeselectioninterface.h"
#include <dcopclient.h>
using namespace KTextEditor;

@ -38,13 +38,13 @@ namespace KTextEditor
/**
* Returns the status of the selection mode - true indicates block selection mode is on.
* If this is true, selections applied via the SelectionInterface are handled as
* blockselections and the paste functions of the ClipboardInterface works on
* bloctdeselections and the paste functions of the ClipboardInterface works on
* rectangular blocks of text rather than normal. (copy too, but thats clear I hope ;)
*/
bool blockSelectionMode ();
/**
* set blockselection mode to state "on"
* set bloctdeselection mode to state "on"
*/
bool setBlockSelectionMode (bool on) ;

@ -18,8 +18,8 @@
// $Id$
#include "blockselectioninterface.h"
#include "blockselectiondcopinterface.h"
#include "bloctdeselectioninterface.h"
#include "bloctdeselectiondcopinterface.h"
#include "document.h"
namespace KTextEditor

@ -16,8 +16,8 @@
Boston, MA 02110-1301, USA.
*/
#ifndef __tdetexteditor_blockselectioninterface_h__
#define __tdetexteditor_blockselectioninterface_h__
#ifndef __tdetexteditor_bloctdeselectioninterface_h__
#define __tdetexteditor_bloctdeselectioninterface_h__
#include <tdelibs_export.h>
@ -51,7 +51,7 @@ class KTEXTEDITOR_EXPORT BlockSelectionInterface
/**
* Returns the status of the selection mode - true indicates block selection mode is on.
* If this is true, selections applied via the SelectionInterface are handled as
* blockselections and the paste functions of the ClipboardInterface works on
* bloctdeselections and the paste functions of the ClipboardInterface works on
* rectangular blocks of text rather than normal. (copy too, but thats clear I hope ;)
*/
virtual bool blockSelectionMode () = 0;

@ -24,7 +24,7 @@
#include "plugin.h"
#include "editor.h"
#include <kaction.h>
#include <tdeaction.h>
#include <tdeparts/factory.h>
#include <tdeparts/componentfactory.h>

@ -2,7 +2,7 @@
#include <tdeparts/part.h>
#include <ktrader.h>
#include <klibloader.h>
#include <kmainwindow.h>
#include <tdemainwindow.h>
#include <kaboutdata.h>
#include <kcmdlineargs.h>
#include <kapplication.h>

@ -17,7 +17,7 @@
*/
#include "kabapi.h"
#include <klistbox.h>
#include <tdelistbox.h>
#include <kmessagebox.h>
#include <klocale.h>
#include <kdebug.h>

@ -25,7 +25,7 @@
#include <kdialogbase.h>
#include <klineedit.h>
#include <klistview.h>
#include <tdelistview.h>
#include "addressbook.h"

@ -37,7 +37,7 @@
#include <kcursor.h>
#include <kstandarddirs.h>
#include <kstaticdeleter.h>
#include <kstdaccel.h>
#include <tdestdaccel.h>
#include <kurldrag.h>
#include <kabc/stdaddressbook.h>

@ -30,7 +30,7 @@
#include <tqradiobutton.h>
#include <kmessagebox.h>
#include <kaccelmanager.h>
#include <tdeaccelmanager.h>
#include <kdialogbase.h>
#include <klocale.h>
#include <klineedit.h>

@ -29,7 +29,7 @@
#include <tqhbuttongroup.h>
#include <tqradiobutton.h>
#include <kaccelmanager.h>
#include <tdeaccelmanager.h>
#include <kcombobox.h>
#include <kdebug.h>
#include <kdialogbase.h>

@ -20,7 +20,7 @@
#include <klocale.h>
#include <kbuttonbox.h>
#include <klistbox.h>
#include <tdelistbox.h>
#include <kstdguiitem.h>
#include <tqgroupbox.h>

@ -197,7 +197,7 @@
<item> host_speeds </item>
<item> hostname </item>
<item> hpkextract </item>
<item> hpklist </item>
<item> hptdelist </item>
<item> hpkremove </item>
<item> hpkval </item>
<item> hud_centerid </item>

@ -27,7 +27,7 @@
#include <tdetexteditor/documentinfo.h>
#include <tdetexteditor/selectioninterface.h>
#include <tdetexteditor/selectioninterfaceext.h>
#include <tdetexteditor/blockselectioninterface.h>
#include <tdetexteditor/bloctdeselectioninterface.h>
#include <tdetexteditor/searchinterface.h>
#include <tdetexteditor/highlightinginterface.h>
#include <tdetexteditor/configinterface.h>
@ -38,7 +38,7 @@
#include <tdetexteditor/printinterface.h>
#include <tdetexteditor/variableinterface.h>
#include <kaction.h>
#include <tdeaction.h>
class KCompletion;

@ -29,7 +29,7 @@
#include <klocale.h>
#include <kdebug.h>
#include <kpopupmenu.h>
#include <tdepopupmenu.h>
#include <cctype>

@ -24,8 +24,8 @@
#include "kateview.h"
#include <klocale.h>
#include <kaction.h>
#include <kpopupmenu.h>
#include <tdeaction.h>
#include <tdepopupmenu.h>
#include <kstringhandler.h>
#include <kxmlguiclient.h>
#include <kxmlguifactory.h>

@ -42,7 +42,7 @@
#include <tdeio/jobclasses.h>
#include <tdeio/netaccess.h>
#include <kaccel.h>
#include <tdeaccel.h>
#include <kapplication.h>
#include <kbuttonbox.h>
#include <kcharsets.h>
@ -52,20 +52,20 @@
#include <kcombobox.h>
#include <tdeconfig.h>
#include <kdebug.h>
#include <kfontdialog.h>
#include <tdefontdialog.h>
#include <kglobal.h>
#include <kglobalsettings.h>
#include <kiconloader.h>
#include <kkeybutton.h>
#include <kkeydialog.h>
#include <klineedit.h>
#include <klistview.h>
#include <tdelistview.h>
#include <klocale.h>
#include <kmessagebox.h>
#include <kmimetypechooser.h>
#include <knuminput.h>
#include <tdeparts/componentfactory.h>
#include <kpopupmenu.h>
#include <tdepopupmenu.h>
#include <kprocess.h>
#include <kprocio.h>
#include <kregexpeditorinterface.h>

@ -29,7 +29,7 @@
#include "../interfaces/document.h"
#include <klistview.h>
#include <tdelistview.h>
#include <kdialogbase.h>
#include <kmimetype.h>

@ -52,7 +52,7 @@
#include <klocale.h>
#include <kglobal.h>
#include <kapplication.h>
#include <kpopupmenu.h>
#include <tdepopupmenu.h>
#include <tdeconfig.h>
#include <tdefiledialog.h>
#include <kmessagebox.h>
@ -3976,7 +3976,7 @@ void KateDocument::transform( KateView *v, const KateTextCursor &c,
{
// If bol or the character before is not in a word, up this one:
// 1. if both start and p is 0, upper char.
// 2. if blockselect or first line, and p == 0 and start-1 is not in a word, upper
// 2. if bloctdeselect or first line, and p == 0 and start-1 is not in a word, upper
// 3. if p-1 is not in a word, upper.
if ( ( ! start && ! p ) ||
( ( ln == selstart.line() || v->blockSelectionMode() ) &&

@ -24,7 +24,7 @@
#include "katedocument.h"
#include "kateview.h"
#include <kpopupmenu.h>
#include <tdepopupmenu.h>
#include <klocale.h>
KateBrowserExtension::KateBrowserExtension( KateDocument* doc )

@ -33,7 +33,7 @@
#include <kiconloader.h>
#include <knuminput.h>
#include <klocale.h>
#include <kpopupmenu.h>
#include <tdepopupmenu.h>
#include <tqregexp.h>
#include <tqcheckbox.h>

@ -38,7 +38,7 @@
#include <kmimetype.h>
#include <klocale.h>
#include <kregexp.h>
#include <kpopupmenu.h>
#include <tdepopupmenu.h>
#include <kglobalsettings.h>
#include <kdebug.h>
#include <kstandarddirs.h>

@ -17,7 +17,7 @@
*/
#ifndef _KATE_KEY_INTERCEPTOR_FUNCTOR_H
#define _KATE_KEY_INTERCEPTOR_FUNCTOR_H
#include <kshortcut.h>
#include <tdeshortcut.h>
class KateKeyInterceptorFunctor {
public:
virtual bool operator()(KKey key)=0;

@ -34,7 +34,7 @@
#include <kcolorbutton.h>
#include <kdebug.h>
#include <kdialog.h> // for spacingHint()
#include <kfontdialog.h>
#include <tdefontdialog.h>
#include <klocale.h>
#include <kprinter.h>
#include <kurl.h>

@ -32,11 +32,11 @@
#include <kcolorbutton.h>
#include <kcombobox.h>
#include <kinputdialog.h>
#include <kfontdialog.h>
#include <tdefontdialog.h>
#include <kdebug.h>
#include <kiconloader.h>
#include <kmessagebox.h>
#include <kpopupmenu.h>
#include <tdepopupmenu.h>
#include <kcolordialog.h>
#include <kapplication.h>
#include <kaboutdata.h>

@ -30,7 +30,7 @@
#include <tqfont.h>
#include <tdeconfig.h>
#include <kaction.h>
#include <tdeaction.h>
class KateView;
class KateStyleListItem;

@ -696,7 +696,7 @@ bool KateSearch::doSearch( const TQString& text )
col = foundCol+1;
}
while (s.flags.selected && m_view->blockSelectionMode() && found);
// in the case we want to search in selection + blockselection we need to loop
// in the case we want to search in selection + bloctdeselection we need to loop
if( !found ) return false;

@ -26,7 +26,7 @@
#include "kateview.h"
#include <kaction.h>
#include <tdeaction.h>
#include <kstdaction.h>
#include <tdespell.h>
#include <ksconfig.h>

@ -61,10 +61,10 @@
#include <kglobal.h>
#include <kcharsets.h>
#include <kmessagebox.h>
#include <kaction.h>
#include <tdeaction.h>
#include <kstdaction.h>
#include <kxmlguifactory.h>
#include <kaccel.h>
#include <tdeaccel.h>
#include <klibloader.h>
#include <kencodingfiledialog.h>
#include <tdemultipledrag.h>

@ -222,7 +222,7 @@ class KateView : public Kate::View,
*/
inline const KateSuperCursor &selEnd () const { return selectEnd; }
// should cursor be wrapped ? take config + blockselection state in account
// should cursor be wrapped ? take config + bloctdeselection state in account
bool wrapCursor ();
// some internal functions to get selection state of a line/col

@ -38,7 +38,7 @@
#include <knotifyclient.h>
#include <kglobal.h>
#include <kcharsets.h>
#include <kpopupmenu.h>
#include <tdepopupmenu.h>
#include <tqcursor.h>
#include <tqpainter.h>

@ -21,7 +21,7 @@
#ifndef __KATE_VIEW_HELPERS_H__
#define __KATE_VIEW_HELPERS_H__
#include <kaction.h>
#include <tdeaction.h>
#include <klineedit.h>
#include <tqwidget.h>

@ -39,11 +39,11 @@
#include <unistd.h>
#include <stdio.h>
#include <kaction.h>
#include <tdeaction.h>
#include <kcmdlineargs.h>
#include "katefactory.h"
#include <tdeio/job.h>
#include <kmainwindow.h>
#include <tdemainwindow.h>
#include <ksimpleconfig.h>
#include <kglobalsettings.h>

@ -28,12 +28,12 @@
#include <tdetexteditor/documentinfo.h>
#include <tdetexteditor/document.h>
#include <kaction.h>
#include <tdeaction.h>
#include <kapplication.h>
#include <tdeconfig.h>
#include <kgenericfactory.h>
#include <kiconloader.h>
#include <klistview.h>
#include <tdelistview.h>
#include <klocale.h>
#include <kmimetype.h>
#include <kmimetypechooser.h>

@ -25,7 +25,7 @@
#include <assert.h>
#include <tdeio/job.h>
#include <kaction.h>
#include <tdeaction.h>
#include <tdefiledialog.h>
#include <kgenericfactory.h>
#include <klocale.h>

@ -22,7 +22,7 @@
#include <tqpopupmenu.h>
#include <kgenericfactory.h>
#include <klocale.h>
#include <kaction.h>
#include <tdeaction.h>
#include <kcombobox.h>
#include <tdeconfig.h>
#include <kdebug.h>

@ -20,13 +20,13 @@
#include "kate_kdatatool.h"
#include "kate_kdatatool.moc"
#include <kgenericfactory.h>
#include <kaction.h>
#include <tdeaction.h>
#include <tdetexteditor/view.h>
#include <kdebug.h>
#include <kdatatool.h>
#include <tdetexteditor/document.h>
#include <tdetexteditor/selectioninterface.h>
#include <kpopupmenu.h>
#include <tdepopupmenu.h>
#include <tdetexteditor/viewcursorinterface.h>
#include <tdetexteditor/editinterface.h>
#include <kmessagebox.h>

@ -38,7 +38,7 @@
#include <kdialog.h>
#include <kgenericfactory.h>
#include <klocale.h>
#include <kaction.h>
#include <tdeaction.h>
#include <knotifyclient.h>
#include <tdeparts/part.h>
#include <kiconloader.h>

@ -3,7 +3,7 @@
<!--
This file is freely distributable, created by Wilbert Berendsen (wbsoft@xs4all.nl)
This is just a simple XSLT file that converts some HTML pages to a XBEL bookmarklist.
This is just a simple XSLT file that converts some HTML pages to a XBEL bookmartdelist.
It is included here to test the new XSLT highlighting by Peter Lammich.
TODO: add better test file.

@ -65,7 +65,7 @@ static void runBuildSycoca(TQObject *callBackObj=0, const char *callBackSlot=0)
if(checkStamps)
args.append("--checkstamps");
if(delayedCheck)
args.append("--nochectdefiles");
args.append("--nocheckfiles");
else
checkStamps = false; // useful only during kded startup
if (callBackObj)

@ -695,7 +695,7 @@ static KCmdLineOptions options[] = {
{ "nosignal", I18N_NOOP("Do not signal applications to update"), 0 },
{ "noincremental", I18N_NOOP("Disable incremental update, re-read everything"), 0 },
{ "checkstamps", I18N_NOOP("Check file timestamps"), 0 },
{ "nochectdefiles", I18N_NOOP("Disable checking files (dangerous)"), 0 },
{ "nocheckfiles", I18N_NOOP("Disable checking files (dangerous)"), 0 },
{ "global", I18N_NOOP("Create global database"), 0 },
{ "menutest", I18N_NOOP("Perform menu generation test run only"), 0 },
{ "track <menu-id>", I18N_NOOP("Track menu id for debug purposes"), 0 },
@ -798,10 +798,10 @@ extern "C" KDE_EXPORT int kdemain(int argc, char **argv)
}
fprintf(stderr, "[tdebuildsycoca] %s running...\n", appName);
bool chectdefiles = bGlobalDatabase || args->isSet("chectdefiles");
bool checkfiles = bGlobalDatabase || args->isSet("checkfiles");
bool incremental = !bGlobalDatabase && args->isSet("incremental") && chectdefiles;
if (incremental || !chectdefiles)
bool incremental = !bGlobalDatabase && args->isSet("incremental") && checkfiles;
if (incremental || !checkfiles)
{
KSycoca::self()->disableAutoRebuild(); // Prevent deadlock
TQString current_language = TDEGlobal::locale()->language();
@ -814,14 +814,14 @@ extern "C" KDE_EXPORT int kdemain(int argc, char **argv)
(KSycoca::self()->timeStamp() == 0))
{
incremental = false;
chectdefiles = true;
checkfiles = true;
delete KSycoca::self();
}
}
g_changeList = new TQStringList;
bool checkstamps = incremental && args->isSet("checkstamps") && chectdefiles;
bool checkstamps = incremental && args->isSet("checkstamps") && checkfiles;
TQ_UINT32 filestamp = 0;
TQStringList oldresourcedirs;
if( checkstamps && incremental )
@ -861,7 +861,7 @@ extern "C" KDE_EXPORT int kdemain(int argc, char **argv)
newTimestamp = (TQ_UINT32) time(0);
if( chectdefiles && ( !checkstamps || !KBuildSycoca::checkTimestamps( filestamp, oldresourcedirs )))
if( checkfiles && ( !checkstamps || !KBuildSycoca::checkTimestamps( filestamp, oldresourcedirs )))
{
TQCString qSycocaPath = TQFile::encodeName(sycocaPath());
cSycocaPath = qSycocaPath.data();

@ -61,20 +61,20 @@ WhatsThis=A TQCombo Box showing the installed system fonts (with preview)
Group=Input (KDE)
[TDEFontChooser]
IncludeFile=kfontdialog.h
IconSet=kfontcombo.png
IncludeFile=tdefontdialog.h
IconSet=tdefontcombo.png
ToolTip=Font Chooser (KDE)
WhatsThis=A font type, size and style selection widget complete with preview
Group=Input (KDE)
[TDEFontRequester]
IncludeFile=kfontrequester.h
IncludeFile=tdefontrequester.h
ToolTip=Font Requester (KDE)
WhatsThis=A compact font selection and preview widget
Group=Input (KDE)
[KGradientSelector]
IncludeFile=kselect.h
IncludeFile=tdeselect.h
WhatsThis=A widget that allows the user to select two colors to form a gradient
Group=Graphics (KDE)
@ -115,7 +115,7 @@ ConstructorArgs=(parent, 0, name)
[TDEListViewSearchLineWidget]
ToolTip=ListView Search Line Widget (KDE)
IncludeFile=klistviewsearchline.h
IncludeFile=tdelistviewsearchline.h
Group=Input (KDE)
ConstructorArgs=(0, parent, name)
@ -244,7 +244,7 @@ Group=Display (KDE)
ConstructorArgs=(parent)
[TDEActionSelector]
IncludeFile=kactionselector.h
IncludeFile=tdeactionselector.h
ToolTip=A widget for selecting and arranging actions/objects
Group=Views (KDE)

@ -13,15 +13,15 @@
install( FILES
klineedit.png ktextbrowser.png kpasswordedit.png kdatewidget.png
kfontrequester.png kurlrequester.png kcombobox.png kiconview.png
tdefontrequester.png kurlrequester.png kcombobox.png kiconview.png
kintspinbox.png kled.png ksqueezedtextlabel.png kprogress.png
kurllabel.png kruler.png tdecmodule.png kdoublespinbox.png
kdoublenuminput.png klistbox.png klistview.png kactivelabel.png
kdoublenuminput.png tdelistbox.png tdelistview.png kactivelabel.png
kiconbutton.png kcolorcombo.png khsselector.png kcolorbutton.png
kgradientselector.png kdualcolorbutton.png ktimewidget.png
kpushbutton.png kcharselect.png kdatepicker.png
kdialog.png keditlistbox.png kfontcombo.png khistorycombo.png
kdialog.png keditlistbox.png tdefontcombo.png khistorycombo.png
kintnuminput.png krestrictedline.png ktextedit.png
kurlcomborequester.png kkeybutton.png kpalettetable.png
kactionselector.png kdatetable.png kdatetimewidget.png
tdeactionselector.png kdatetable.png kdatetimewidget.png
DESTINATION ${DATA_INSTALL_DIR}/kdewidgets/pics )

@ -1,15 +1,15 @@
kdewidgetsdata_DATA = klineedit.png ktextbrowser.png kpasswordedit.png kdatewidget.png \
kfontrequester.png kurlrequester.png kcombobox.png kiconview.png kintspinbox.png \
tdefontrequester.png kurlrequester.png kcombobox.png kiconview.png kintspinbox.png \
kled.png ksqueezedtextlabel.png kprogress.png kurllabel.png \
kruler.png tdecmodule.png kdoublespinbox.png kdoublenuminput.png \
klistbox.png klistview.png kactivelabel.png kiconbutton.png \
tdelistbox.png tdelistview.png kactivelabel.png kiconbutton.png \
kcolorcombo.png khsselector.png kcolorbutton.png \
kgradientselector.png kdualcolorbutton.png ktimewidget.png \
kpushbutton.png kcharselect.png kdatepicker.png \
kdialog.png keditlistbox.png kfontcombo.png khistorycombo.png \
kdialog.png keditlistbox.png tdefontcombo.png khistorycombo.png \
kintnuminput.png krestrictedline.png ktextedit.png \
kurlcomborequester.png kkeybutton.png kpalettetable.png \
kactionselector.png kdatetable.png kdatetimewidget.png
tdeactionselector.png kdatetable.png kdatetimewidget.png
kdewidgetsdatadir = $(kde_datadir)/kdewidgets/pics

@ -61,20 +61,20 @@ WhatsThis=A QCombo Box showing the installed system fonts (with preview)
Group=Input (KDE)
[TDEFontChooser]
IncludeFile=kfontdialog.h
IconSet=kfontcombo.png
IncludeFile=tdefontdialog.h
IconSet=tdefontcombo.png
ToolTip=Font Chooser (KDE)
WhatsThis=A font type, size and style selection widget complete with preview
Group=Input (KDE)
[TDEFontRequester]
IncludeFile=kfontrequester.h
IncludeFile=tdefontrequester.h
ToolTip=Font Requester (KDE)
WhatsThis=A compact font selection and preview widget
Group=Input (KDE)
[KGradientSelector]
IncludeFile=kselect.h
IncludeFile=tdeselect.h
WhatsThis=A widget that allows the user to select two colors to form a gradient
Group=Graphics (KDE)
@ -233,7 +233,7 @@ Group=Display (KDE)
ConstructorArgs=(parent)
[TDEActionSelector]
IncludeFile=kactionselector.h
IncludeFile=tdeactionselector.h
ToolTip=A widget for selecting and arranging actions/objects
Group=Views (KDE)

@ -22,7 +22,7 @@
#include "downloaddialog.moc"
#include <klocale.h>
#include <klistview.h>
#include <tdelistview.h>
#include <kdebug.h>
#include <tdeio/job.h>
#include <tdeio/netaccess.h>

@ -18,7 +18,7 @@
Boston, MA 02110-1301, USA.
*/
#include <kaction.h>
#include <tdeaction.h>
#include <kapplication.h>
#include <kdebug.h>
#include <klocale.h>

@ -22,7 +22,7 @@
#include <tqstring.h>
#include <tqlabel.h>
#include <klistview.h>
#include <tdelistview.h>
#include <klocale.h>
#include <kmessagebox.h>

@ -26,7 +26,7 @@
#include <tqstring.h>
#include <ktextedit.h>
#include <klistview.h>
#include <tdelistview.h>
#include <klocale.h>
#include <kdebug.h>
#include <kurlrequester.h>

@ -18,7 +18,7 @@ Comment[cy]=Ffeil Tarddiad Cyfieithiad Qt
Comment[da]=Qt oversættelseskildefil
Comment[de]=Qt-Übersetzungsquelle
Comment[el]=Πηγαίο αρχείο μετάφρασης Qt
Comment[eo]=Qta tradukfontdosiero
Comment[eo]=Qta tradutdefontdosiero
Comment[es]=Archivo fuente de traducción de Qt
Comment[et]=Qt Translationi lähtetekst
Comment[eu]=Qt itzulpenerako iturburuko fitxategia

@ -15,7 +15,7 @@ Comment[csb]=Lopk dolmaczënkù XLIFF
Comment[da]=XLIFF oversættelsesfil
Comment[de]=XLIFF-Übersetzungsdatei
Comment[el]=Αρχείο μεταφράσεων XLIFF
Comment[eo]=XLIFF tradukfontdosiero
Comment[eo]=XLIFF tradutdefontdosiero
Comment[es]=Archivo de traducción XLIFF
Comment[et]=XLIFF tõlkefail
Comment[eu]=XLIFF itzulpen fitxategia

@ -40,7 +40,7 @@
#include <kprocess.h>
#include <tqtabwidget.h>
#include <kseparator.h>
#include <klistview.h>
#include <tdelistview.h>
#include <tdeio/kmimemagic.h>
#include <tqmultilineedit.h>
#include <tqregexp.h>

@ -27,7 +27,7 @@
#include <tdeparts/part.h>
#include <tqptrlist.h>
#include <tqlistview.h>
#include <klistview.h>
#include <tdelistview.h>
class KSSLCertBox;
class TQFrame;

@ -75,14 +75,14 @@ install( FILES
kapp.h kapplication.h kuniqueapp.h kuniqueapplication.h
kcharsets.h tdeversion.h kpty.h kprocess.h kprocctrl.h
klocale.h kicontheme.h kiconloader.h kdebug.h twinmodule.h
twin.h krootprop.h kshortcut.h kkeynative.h kaccel.h
kglobalaccel.h kstdaccel.h kshortcutlist.h kcatalogue.h
twin.h krootprop.h tdeshortcut.h kkeynative.h tdeaccel.h
kglobalaccel.h tdestdaccel.h tdeshortcutlist.h kcatalogue.h
kregexp.h kcompletion.h kstringhandler.h kstddirs.h
kstandarddirs.h kglobal.h kglobalsettings.h ksharedptr.h
kallocator.h kvmallocator.h kcrash.h krfcdate.h kinstance.h
kpalette.h kipc.h klibloader.h ktempfile.h ksavefile.h
krandomsequence.h knotifyclient.h kiconeffect.h kaudioplayer.h
kdcoppropertyproxy.h netwm.h kaccelmanager.h netwm_def.h
kdcoppropertyproxy.h netwm.h tdeaccelmanager.h netwm_def.h
kpixmapprovider.h kunload.h kstaticdeleter.h kextsock.h
kextendedsocket.h ksockaddr.h kprocio.h kasyncio.h kbufferedio.h
kurldrag.h kmimesourcefactory.h kmdcodec.h ksocks.h tdesycoca.h
@ -126,13 +126,13 @@ set( ${target}_SRCS
ksock.cpp kpty.cpp kprocess.cpp kprocctrl.cpp klocale.cpp
krfcdate.cpp kiconeffect.cpp kicontheme.cpp kiconloader.cpp
twin.cpp twinmodule.cpp krootprop.cpp kcharsets.cpp
kckey.cpp kshortcut.cpp kkeynative_x11.cpp kkeyserver_x11.cpp
kaccelaction.cpp kshortcutmenu.cpp kaccelbase.cpp kaccel.cpp
kglobalaccel_x11.cpp kglobalaccel.cpp kstdaccel.cpp kshortcutlist.cpp
kckey.cpp tdeshortcut.cpp kkeynative_x11.cpp kkeyserver_x11.cpp
tdeaccelaction.cpp tdeshortcutmenu.cpp tdeaccelbase.cpp tdeaccel.cpp
kglobalaccel_x11.cpp kglobalaccel.cpp tdestdaccel.cpp tdeshortcutlist.cpp
kcrash.cpp kurl.cpp kregexp.cpp kglobal.cpp kglobalsettings.cpp
kallocator.cpp kvmallocator.cpp kmimesourcefactory.cpp
kinstance.cpp kpalette.cpp kipc.cpp klibloader.cpp ktempfile.cpp
kuniqueapplication.cpp kaccelmanager.cpp ksavefile.cpp
kuniqueapplication.cpp tdeaccelmanager.cpp ksavefile.cpp
krandomsequence.cpp kstringhandler.cpp kcompletion.cpp
kcmdlineargs.cpp kaboutdata.cpp kcompletionbase.cpp knotifyclient.cpp
kaudioplayer.cpp kdcoppropertyproxy.cpp ksockaddr.cpp

@ -7,9 +7,9 @@ more logical grouping.
dmalloc.cpp
kaboutdata.cpp David Faure <faure@kde.org>
kaccel.cpp Ellis Whitehead <ellis@kde.org>
kaccelaction.cpp Ellis Whitehead <ellis@kde.org>
kaccelbase.cpp Ellis Whitehead <ellis@kde.org>
tdeaccel.cpp Ellis Whitehead <ellis@kde.org>
tdeaccelaction.cpp Ellis Whitehead <ellis@kde.org>
tdeaccelbase.cpp Ellis Whitehead <ellis@kde.org>
kallocator.cpp Waldo Bastian <bastian@kde.org>
kappdcopiface.cpp
kapplication.cpp Waldo Bastian <bastian@kde.org>
@ -56,13 +56,13 @@ kregexp.cpp
krfcdate.cpp Waldo Bastian <bastian@kde.org>
krootprop.cpp Lubos Lunak <l.lunak@kde.org>
ksavefile.cpp Waldo Bastian <bastian@kde.org>
kshortcut.cpp Ellis Whitehead <ellis@kde.org>
tdeshortcut.cpp Ellis Whitehead <ellis@kde.org>
ksimpleconfig.cpp Waldo Bastian <bastian@kde.org>
ksocks.cpp
kstandarddirs.cpp Waldo Bastian <bastian@kde.org>
kstartupinfo.cpp Lubos Lunak <l.lunak@kde.org>
kstaticdeleter.cpp Stephan Kulow <coolo@kde.org>
kstdaccel.cpp Ellis Whitehead <ellis@kde.org>
tdestdaccel.cpp Ellis Whitehead <ellis@kde.org>
kstringhandler.cpp
tdesycoca.cpp Waldo Bastian <bastian@kde.org>
tdesycocadict.cpp Waldo Bastian <bastian@kde.org>
@ -109,7 +109,7 @@ kprotocolinfofactory.cpp Torben Weis <weis@kde.org> (copyright)
kprotocolinfofactory.cpp Waldo Bastian <bastian@kde.org> (copyright)
kpty.cpp
kshell.cpp Oswald Buddenhagen <ossi@kde.org> (copyright)
kshortcutmenu.cpp Ellis Whitehead <ellis@kde.org> (copyright)
tdeshortcutmenu.cpp Ellis Whitehead <ellis@kde.org> (copyright)
ktempdir.cpp Joseph Wenninger <jowenn@kde.org> (copyright)
kuser.cpp Tim Jansen <tim@tjansen.de> (copyright)
kvmallocator.cpp Waldo Bastian (bastian@kde.org) (copyright)

@ -42,14 +42,14 @@ include_HEADERS = tdeconfig.h tdeconfigskeleton.h \
kcmdlineargs.h tdeconfigbackend.h kapp.h kapplication.h kuniqueapp.h \
kuniqueapplication.h kcharsets.h tdeversion.h kpty.h kprocess.h \
kprocctrl.h klocale.h kicontheme.h kiconloader.h kdebug.h \
twinmodule.h twin.h krootprop.h kshortcut.h kkeynative.h kaccel.h \
kglobalaccel.h kstdaccel.h kshortcutlist.h kcatalogue.h \
twinmodule.h twin.h krootprop.h tdeshortcut.h kkeynative.h tdeaccel.h \
kglobalaccel.h tdestdaccel.h tdeshortcutlist.h kcatalogue.h \
kregexp.h kcompletion.h kstringhandler.h \
kstddirs.h kstandarddirs.h kglobal.h kglobalsettings.h ksharedptr.h \
kallocator.h kvmallocator.h kcrash.h krfcdate.h \
kinstance.h kpalette.h kipc.h klibloader.h ktempfile.h ksavefile.h \
krandomsequence.h knotifyclient.h kiconeffect.h \
kaudioplayer.h kdcoppropertyproxy.h netwm.h kaccelmanager.h \
kaudioplayer.h kdcoppropertyproxy.h netwm.h tdeaccelmanager.h \
netwm_def.h kpixmapprovider.h kunload.h kstaticdeleter.h \
kextsock.h kextendedsocket.h ksockaddr.h kprocio.h kasyncio.h \
kbufferedio.h kurldrag.h kmimesourcefactory.h kmdcodec.h ksocks.h \
@ -81,10 +81,10 @@ libtdefakes_pic.a: libtdefakes.la
ar cru libtdefakes_pic.a fakes_pic.o vsnprintf_pic.o
ranlib libtdefakes_pic.a
noinst_HEADERS = kaccelaction.h kaccelbase.h kaccelprivate.h kckey.h \
noinst_HEADERS = tdeaccelaction.h tdeaccelbase.h tdeaccelprivate.h kckey.h \
kcompletion_private.h netwm_p.h \
kglobalaccel_x11.h kglobalaccel_win.h kkeyserver_x11.h kkeyserver.h \
kregpriv.h kshortcutmenu.h tdesycocadict.h tdesycocafactory.h netsupp.h \
kregpriv.h tdeshortcutmenu.h tdesycocadict.h tdesycocafactory.h netsupp.h \
kcheckaccelerators.h kcalendarsystemgregorian.h \
kcalendarsystemhijri.h kcalendarsystemhebrew.h kcalendarsystemjalali.h \
kprotocolinfofactory.h kqiodevicegzip_p.h kiconloader_p.h
@ -95,13 +95,13 @@ libtdecore_la_SOURCES = libintl.cpp kapplication.cpp \
kstandarddirs.cpp ksock.cpp kpty.cpp kprocess.cpp kprocctrl.cpp \
klocale.cpp krfcdate.cpp kiconeffect.cpp kicontheme.cpp \
kiconloader.cpp twin.cpp twinmodule.cpp krootprop.cpp kcharsets.cpp \
kckey.cpp kshortcut.cpp kkeynative_x11.cpp kkeyserver_x11.cpp \
kaccelaction.cpp kshortcutmenu.cpp kaccelbase.cpp kaccel.cpp \
kglobalaccel_x11.cpp kglobalaccel.cpp kstdaccel.cpp kshortcutlist.cpp \
kckey.cpp tdeshortcut.cpp kkeynative_x11.cpp kkeyserver_x11.cpp \
tdeaccelaction.cpp tdeshortcutmenu.cpp tdeaccelbase.cpp tdeaccel.cpp \
kglobalaccel_x11.cpp kglobalaccel.cpp tdestdaccel.cpp tdeshortcutlist.cpp \
kcrash.cpp kurl.cpp kregexp.cpp kglobal.cpp kglobalsettings.cpp \
kallocator.cpp kvmallocator.cpp kmimesourcefactory.cpp \
kinstance.cpp kpalette.cpp kipc.cpp klibloader.cpp ktempfile.cpp \
kuniqueapplication.cpp kaccelmanager.cpp \
kuniqueapplication.cpp tdeaccelmanager.cpp \
ksavefile.cpp krandomsequence.cpp kstringhandler.cpp kcompletion.cpp \
kcmdlineargs.cpp kaboutdata.cpp kcompletionbase.cpp knotifyclient.cpp \
kaudioplayer.cpp kdcoppropertyproxy.cpp \

@ -77,8 +77,8 @@
#include <kdatastream.h>
#include <klibloader.h>
#include <kmimesourcefactory.h>
#include <kstdaccel.h>
#include <kaccel.h>
#include <tdestdaccel.h>
#include <tdeaccel.h>
#include "kcheckaccelerators.h"
#include <tqptrdict.h>
#include <kmacroexpander.h>

@ -26,7 +26,7 @@
#include "config.h"
#include "kcheckaccelerators.h"
#include "kaccelmanager.h"
#include "tdeaccelmanager.h"
#include <tqpopupmenu.h>
#include <tqapplication.h>
#include <tqdialog.h>
@ -42,7 +42,7 @@
#include <tdeconfig.h>
#include <kdebug.h>
#include <kglobal.h>
#include <kshortcut.h>
#include <tdeshortcut.h>
#include <klocale.h>
/*

@ -30,7 +30,7 @@
#include "tdelibs_export.h"
#include <kglobalsettings.h>
#include <ksortablevaluelist.h>
#include <kshortcut.h>
#include <tdeshortcut.h>
class KCompTreeNode;
class KCompletionPrivate;

@ -29,9 +29,9 @@
#endif
#include <tqstring.h>
#include "kaccelbase.h"
#include "tdeaccelbase.h"
#include <kdebug.h>
#include <kshortcut.h>
#include <tdeshortcut.h>
#include <klocale.h>
//----------------------------------------------------

@ -21,7 +21,7 @@
#define _KGLOBALACCEL_H_
#include <tqobject.h>
#include <kshortcut.h>
#include <tdeshortcut.h>
class TQPopupMenu;
class TQWidget;

@ -1,8 +1,8 @@
#ifndef _KGLOBALACCEL_EMB_H
#define _KGLOBALACCEL_EMB_H
#include "kaccelbase.h"
#include "kshortcut.h"
#include "tdeaccelbase.h"
#include "tdeshortcut.h"
class TDEGlobalAccelPrivate
{

@ -3,8 +3,8 @@
#include <tqwidget.h>
#include "kshortcut.h"
#include "kaccelbase.h"
#include "tdeshortcut.h"
#include "tdeaccelbase.h"
class TDEGlobalAccelPrivate: public TDEAccelBase
{

@ -23,9 +23,9 @@
#include <tqmap.h>
#include <tqwidget.h>
#include "kaccelbase.h"
#include "tdeaccelbase.h"
#include "kkeyserver.h"
#include "kshortcut.h"
#include "tdeshortcut.h"
/**
* @internal

@ -23,9 +23,9 @@
#include <tqmap.h>
#include <tqwidget.h>
#include "kaccelbase.h"
#include "tdeaccelbase.h"
#include "kkeyserver_x11.h"
#include "kshortcut.h"
#include "tdeshortcut.h"
/**
* @internal

@ -41,10 +41,10 @@ static QRgb qt_colorref2qrgb(COLORREF col)
#include <kdebug.h>
#include <kglobal.h>
#include <kshortcut.h>
#include <tdeshortcut.h>
#include <kstandarddirs.h>
#include <kcharsets.h>
#include <kaccel.h>
#include <tdeaccel.h>
#include <klocale.h>
#include <tqfontinfo.h>
#include <stdlib.h>

@ -23,7 +23,7 @@
#ifndef __KKEYNATIVE_H
#define __KKEYNATIVE_H
#include <kshortcut.h>
#include <tdeshortcut.h>
#ifdef Q_WS_X11
typedef union _XEvent XEvent;

@ -29,7 +29,7 @@
#include "kkeyserver_x11.h"
#include "kkeynative.h"
#include "kshortcut.h"
#include "tdeshortcut.h"
#include <tdeconfig.h>
#include <kdebug.h>
@ -1020,7 +1020,7 @@ void Variations::init( const KKey& key, bool bQt )
} // end of namespace KKeyServer block
// FIXME: This needs to be moved to kshortcut.cpp, and create a
// FIXME: This needs to be moved to tdeshortcut.cpp, and create a
// KKeyServer::method which it will call.
// Alt+SysReq => Alt+Print
// Ctrl+Shift+Plus => Ctrl+Plus (en)

@ -23,7 +23,7 @@
#ifndef _KKEYSERVER_X11_H
#define _KKEYSERVER_X11_H
#include "kshortcut.h"
#include "tdeshortcut.h"
#include "kkeynative.h"
/**

@ -17,7 +17,7 @@
Boston, MA 02110-1301, USA.
*/
#include "kaccel.h"
#include "tdeaccel.h"
#include <tqaccel.h>
#include <tqguardedptr.h>
@ -26,13 +26,13 @@
#include <tqstring.h>
#include <tqtimer.h>
#include "kaccelbase.h"
#include "tdeaccelbase.h"
#include <kapplication.h>
#include <kdebug.h>
#include <klocale.h>
#include <kshortcut.h>
#include <tdeshortcut.h>
#include "kaccelprivate.h"
#include "tdeaccelprivate.h"
#ifdef Q_WS_X11
# include <X11/Xlib.h>
@ -43,7 +43,7 @@
# endif
#endif
// TODO: Put in kaccelbase.cpp
// TODO: Put in tdeaccelbase.cpp
//---------------------------------------------------------------------
// TDEAccelEventHandler
//---------------------------------------------------------------------
@ -659,5 +659,5 @@ TQString TDEAccel::findKey( int key ) const
void TDEAccel::virtual_hook( int, void* )
{ /*BASE::virtual_hook( id, data );*/ }
#include "kaccel.moc"
#include "kaccelprivate.moc"
#include "tdeaccel.moc"
#include "tdeaccelprivate.moc"

@ -21,8 +21,8 @@
#define _KACCEL_H
#include <tqaccel.h>
#include <kshortcut.h>
#include <kstdaccel.h>
#include <tdeshortcut.h>
#include <tdestdaccel.h>
#include "tdelibs_export.h"
class TQPopupMenu; // for obsolete insertItem() methods below

@ -20,8 +20,8 @@
Boston, MA 02110-1301, USA.
*/
#include "kaccelaction.h"
#include "kaccelbase.h" // for TDEAccelBase::slotRemoveAction() & emitSignal()
#include "tdeaccelaction.h"
#include "tdeaccelbase.h" // for TDEAccelBase::slotRemoveAction() & emitSignal()
#include <tqkeycode.h>
@ -31,7 +31,7 @@
#include <kglobal.h>
#include <kkeynative.h>
#include <klocale.h>
#include <kshortcutlist.h>
#include <tdeshortcutlist.h>
//---------------------------------------------------------------------
// TDEAccelAction

@ -25,7 +25,7 @@
#include <tqstring.h>
#include <tqvaluevector.h>
#include <kshortcut.h>
#include <tdeshortcut.h>
class TDEAccelBase;

@ -20,7 +20,7 @@
Boston, MA 02110-1301, USA.
*/
#include "kaccelbase.h"
#include "tdeaccelbase.h"
#include <tqkeycode.h>
#include <tqlabel.h>
@ -33,7 +33,7 @@
#include <kkeynative.h>
#include "kkeyserver.h"
#include <klocale.h>
#include "kshortcutmenu.h"
#include "tdeshortcutmenu.h"
//---------------------------------------------------------------------
// class TDEAccelBase::ActionInfo

@ -26,7 +26,7 @@
#include <tqvaluevector.h>
#include <tqvaluelist.h>
#include "kaccelaction.h"
#include "tdeaccelaction.h"
#include "kkeyserver.h"
class TQPopupMenu;

@ -17,7 +17,7 @@
Boston, MA 02110-1301, USA.
*/
#include "kaccelmanager.h"
#include "tdeaccelmanager.h"
#include <tqapplication.h>
#include <tqcheckbox.h>
@ -45,7 +45,7 @@
#include <kdebug.h>
#include "kaccelmanager_private.h"
#include "tdeaccelmanager_private.h"
#include "../tdeui/kstdaction_p.h"
#include "../tdeutils/tdemultitabbar.h"
@ -869,4 +869,4 @@ void TDEAcceleratorManager::setNoAccel( TQWidget *widget )
TDEAcceleratorManagerPrivate::ignored_widgets[widget] = 1;
}
#include "kaccelmanager_private.moc"
#include "tdeaccelmanager_private.moc"

@ -24,12 +24,12 @@ if ( system( $cmd ) != 0 ) {
exit 1;
}
chectdefile( $file_h );
chectdefile( $file_cpp );
checkfile( $file_h );
checkfile( $file_cpp );
exit 0;
sub chectdefile()
sub checkfile()
{
my $file = shift;

@ -17,7 +17,7 @@
Boston, MA 02110-1301, USA.
*/
#include "kshortcut.h"
#include "tdeshortcut.h"
#include "kkeynative.h"
#include "kkeyserver.h"

@ -1,15 +1,15 @@
#include <tqstring.h>
#include <tqvariant.h>
#include <kaccel.h>
#include "kaccelaction.h"
#include <tdeaccel.h>
#include "tdeaccelaction.h"
#include <tdeconfig.h>
#include <kdebug.h>
#include <kglobal.h>
#include <kglobalaccel.h>
#include <kinstance.h>
#include <kshortcut.h>
#include "kshortcutlist.h"
#include <tdeshortcut.h>
#include "tdeshortcutlist.h"
//---------------------------------------------------------------------
// TDEShortcutList

@ -21,10 +21,10 @@
#include <tqlabel.h>
#include <tqpopupmenu.h>
#include "kaccelaction.h"
#include "tdeaccelaction.h"
#include <kdebug.h>
#include <kglobalsettings.h>
#include "kshortcutmenu.h"
#include "tdeshortcutmenu.h"
//#include <kkeynative.h>
TDEShortcutMenu::TDEShortcutMenu( TQWidget* pParent, TDEAccelActions* pActions, KKeySequence seq )
@ -158,4 +158,4 @@ void TDEShortcutMenu::keepItemsMatching( KKey key )
updateShortcuts();
}
#include "kshortcutmenu.moc"
#include "tdeshortcutmenu.moc"

@ -23,7 +23,7 @@
#include <tqmap.h>
#include <tqpopupmenu.h>
#include "kshortcut.h"
#include "tdeshortcut.h"
class TQLabel;

@ -19,16 +19,16 @@
*/
#define __KSTDACCEL_CPP_ 1
#include "kstdaccel.h"
#include "tdestdaccel.h"
#include "kaccelaction.h"
#include "kaccelbase.h"
#include "tdeaccelaction.h"
#include "tdeaccelbase.h"
#include <tdeconfig.h>
#include <kdebug.h>
#include <kglobal.h>
#include <klocale.h>
#include <kshortcut.h>
#include <kshortcutlist.h>
#include <tdeshortcut.h>
#include <tdeshortcutlist.h>
namespace TDEStdAccel
{

@ -21,7 +21,7 @@
#define KSTDACCEL_H
#include <tqstring.h>
#include <kshortcut.h>
#include <tdeshortcut.h>
#include "tdelibs_export.h"
class TQKeyEvent;
@ -35,7 +35,7 @@ class TDEAccelActions;
* so do not hardcode the default behavior.
*
* If you want real configurable keybindings in your applications,
* please checkout the class TDEAccel in kaccel.h
* please checkout the class TDEAccel in tdeaccel.h
* @see TDEAccelShortcutList
*/
namespace TDEStdAccel

@ -28,9 +28,9 @@ check_PROGRAMS = tdeconfigtestgui klocaletest kprocesstest ksimpleconfigtest \
cplusplustest kiconloadertest kresolvertest kmdcodectest knotifytest \
ksortablevaluelisttest krfcdatetest testqtargs kprociotest \
kcharsetstest kcalendartest kmacroexpandertest kshelltest \
kxerrorhandlertest startserviceby kstdacceltest kglobaltest ktimezonestest
kxerrorhandlertest startserviceby tdestdacceltest kglobaltest ktimezonestest
TESTS = kurltest kstdacceltest
TESTS = kurltest tdestdacceltest
noinst_HEADERS = klocaletest.h kprocesstest.h KIDLTest.h \
kipctest.h kprociotest.h
@ -75,7 +75,7 @@ kmacroexpandertest_SOURCES = kmacroexpandertest.cpp
kshelltest_SOURCES = kshelltest.cpp
kxerrorhandlertest_SOURCES = kxerrorhandlertest.cpp
startserviceby_SOURCES = startserviceby.cpp
kstdacceltest_SOURCES = kstdacceltest.cpp
tdestdacceltest_SOURCES = tdestdacceltest.cpp
kglobaltest_SOURCES = kglobaltest.cpp
ktimezonestest_SOURCES = ktimezonestest.cpp

@ -2,7 +2,7 @@
#include <kapplication.h>
#include <kdebug.h>
#include <kstdaccel.h>
#include <tdestdaccel.h>
#include <stdlib.h> // for exit
static bool check(TQString txt, TQString a, TQString b)
@ -24,7 +24,7 @@ static bool check(TQString txt, TQString a, TQString b)
int main(int argc, char *argv[])
{
TDEApplication::disableAutoDcopRegistration();
TDEApplication app(argc,argv,"kstdacceltest",false,false);
TDEApplication app(argc,argv,"tdestdacceltest",false,false);
check( "shortcutDefault FullScreen", TDEStdAccel::shortcutDefault( TDEStdAccel::FullScreen ).toString(), "Ctrl+Shift+F" );
check( "shortcutDefault BeginningOfLine", TDEStdAccel::shortcutDefault( TDEStdAccel::BeginningOfLine ).toString(), "Home" );

@ -18,7 +18,7 @@
#ifndef DOMTREEVIEW_H
#define DOMTREEVIEW_H
#include <klistview.h>
#include <tdelistview.h>
#include <kdebug.h>
#include <tqlistview.h>
#include <tqptrdict.h>

@ -47,12 +47,12 @@
#include <kglobal.h>
#include <kmessagebox.h>
#include <kguiitem.h>
#include <kpopupmenu.h>
#include <tdepopupmenu.h>
#include <kmenubar.h>
#include <kaction.h>
#include <kactioncollection.h>
#include <tdeaction.h>
#include <tdeactioncollection.h>
#include <kglobalsettings.h>
#include <kshortcut.h>
#include <tdeshortcut.h>
#include <tdeconfig.h>
#include <tdeconfigbase.h>
#include <kapplication.h>

@ -34,7 +34,7 @@
#include <tqptrstack.h>
#include <tqcheckbox.h>
#include <kdialogbase.h>
#include <kmainwindow.h>
#include <tdemainwindow.h>
#include <tqscrollview.h>
#include <kjs/debugger.h>

@ -25,7 +25,7 @@
#include <kdebug.h>
#include <kdiroperator.h>
#include <klistview.h>
#include <tdelistview.h>
#include <klocale.h>
#include <kstddirs.h>
#include <ktempfile.h>

@ -41,7 +41,7 @@ class QListboxItem;
#include <tqradiobutton.h>
#include <tqpushbutton.h>
#include <tqhbox.h>
#include <klistbox.h>
#include <tdelistbox.h>
#include <kcombobox.h>
#include "dom/dom_misc.h"

@ -48,8 +48,8 @@
#include <tdefiledialog.h>
#include <tdeio/job.h>
#include <kprocess.h>
#include <ktoolbarbutton.h>
#include <ktoolbar.h>
#include <tdetoolbarbutton.h>
#include <tdetoolbar.h>
#include <ksavefile.h>
#include <kurldrag.h>
#include <kstringhandler.h>

@ -31,7 +31,7 @@
#include <tqguardedptr.h>
#include <kaction.h>
#include <tdeaction.h>
#include <tdeio/global.h>
/**

@ -115,7 +115,7 @@ using namespace DOM;
#include "tdehtmlpart_p.h"
#include "kpassivepopup.h"
#include "kpopupmenu.h"
#include "tdepopupmenu.h"
#include "rendering/render_form.h"
#include <twin.h>

@ -29,7 +29,7 @@
#include <kcursor.h>
#include <klibloader.h>
#include <kxmlguifactory.h>
#include <kaction.h>
#include <tdeaction.h>
#include <tdeparts/partmanager.h>
#include <tdeparts/statusbarextension.h>
#include <tdeparts/browserextension.h>

@ -72,7 +72,7 @@
#include <kprinter.h>
#include <ksimpleconfig.h>
#include <kstandarddirs.h>
#include <kstdaccel.h>
#include <tdestdaccel.h>
#include <kstringhandler.h>
#include <kurldrag.h>

@ -59,11 +59,11 @@
#define HTML_DEFAULT_VIEW_FANTASY_FONT "helvetica"
#include <kaction.h>
#include <tdeaction.h>
#include <kcmdlineargs.h>
#include "tdehtml_factory.h"
#include <tdeio/job.h>
#include <kmainwindow.h>
#include <tdemainwindow.h>
#include <ksimpleconfig.h>
#include <kglobalsettings.h>

@ -26,9 +26,9 @@
#include "css/cssstyleselector.h"
#include "html/html_imageimpl.h"
#include "rendering/render_style.h"
#include <kmainwindow.h>
#include <tdemainwindow.h>
#include <kcmdlineargs.h>
#include <kaction.h>
#include <tdeaction.h>
#include "domtreeview.h"
#include <tdefiledialog.h>

@ -28,11 +28,11 @@
#include <kbookmarkmenu.h>
#include <kdebug.h>
#include <ktoolbar.h>
#include <ktoolbarbutton.h>
#include <tdetoolbar.h>
#include <tdetoolbarbutton.h>
#include <tdeconfig.h>
#include <kpopupmenu.h>
#include <tdepopupmenu.h>
#include "kbookmarkdrag.h"
#include "kbookmarkmenu_p.h"

@ -25,7 +25,7 @@
#include <tqguardedptr.h>
#include <tqptrlist.h>
#include <kbookmark.h>
#include <kaction.h>
#include <tdeaction.h>
class TDEToolBar;
class KBookmarkMenu;

@ -167,7 +167,7 @@ public:
/**
* @return true if the NS bookmarks should be dynamically shown
* in the toplevel kactionmenu
* in the toplevel tdeactionmenu
* @deprecated
*/
bool showNSBookmarks() const;

@ -34,8 +34,8 @@
#include <klineedit.h>
#include <klocale.h>
#include <kmessagebox.h>
#include <kpopupmenu.h>
#include <kstdaccel.h>
#include <tdepopupmenu.h>
#include <tdestdaccel.h>
#include <kstdaction.h>
#include <kstringhandler.h>

@ -31,7 +31,7 @@
#include <kdialogbase.h>
#include <klocale.h>
#include <kaction.h>
#include <tdeaction.h>
#include "kbookmark.h"
#include "kbookmarkmanager.h"

@ -31,7 +31,7 @@
#include <kdialogbase.h>
#include <klocale.h>
#include <kaction.h>
#include <tdeaction.h>
#include "kbookmark.h"
#include "kbookmarkimporter.h"

@ -41,8 +41,8 @@
#include <twin.h>
#include <kdialog.h>
#include <ksystemtray.h>
#include <kpopupmenu.h>
#include <kaction.h>
#include <tdepopupmenu.h>
#include <tdeaction.h>
#include <tqcheckbox.h>
#include <tqlabel.h>

@ -27,9 +27,9 @@
#include <tdeio/global.h>
#include <tdeio/authinfo.h>
#include <kurl.h>
#include <kmainwindow.h>
#include <tdemainwindow.h>
#include <kdatastream.h>
#include <klistview.h>
#include <tdelistview.h>
#include <ksslcertdlg.h>
class ListProgress;

@ -33,7 +33,7 @@ install( FILES
tdefiledialog.h kencodingfiledialog.h
kdiroperator.h tdefileview.h tdefilefiltercombo.h
tdefiledetailview.h kcombiview.h kdiskfreesp.h
tdefileiconview.h krecentdocument.h
tdefileiconview.h tderecentdocument.h
kurlrequester.h tdefilepreview.h tdefile.h
kurlcombobox.h kurlrequesterdlg.h kopenwith.h kpropsdlg.h
kicondialog.h kdirsize.h kpreviewwidgetbase.h kimagefilepreview.h tdefilesharedlg.h
@ -56,11 +56,11 @@ set( target tdefile )
set( ${target}_SRCS
tdefilefiltercombo.cpp tdefileview.cpp tdefileiconview.cpp
krecentdocument.cpp tdefiledialog.cpp kdiroperator.cpp
tderecentdocument.cpp tdefiledialog.cpp kdiroperator.cpp
tdefiledetailview.cpp kcombiview.cpp kurlrequester.cpp
tdefilepreview.cpp kurlcombobox.cpp kurlrequesterdlg.cpp
kopenwith.cpp kpropertiesdialog.cpp kicondialog.cpp
kdirsize.cpp krecentdirs.cpp kdiskfreesp.cpp kimagefilepreview.cpp
kdirsize.cpp tderecentdirs.cpp kdiskfreesp.cpp kimagefilepreview.cpp
tdefilesharedlg.cpp kurlbar.cpp kmetaprops.cpp kpreviewprops.cpp
tdefiletreeview.cpp tdefiletreeviewitem.cpp tdefiletreebranch.cpp
kdirselectdialog.cpp tdefilebookmarkhandler.cpp tdefilemetainfowidget.cpp

@ -29,7 +29,7 @@ METASOURCES = AUTO
include_HEADERS = tdefiledialog.h kencodingfiledialog.h\
kdiroperator.h tdefileview.h tdefilefiltercombo.h \
tdefiledetailview.h kcombiview.h kdiskfreesp.h \
tdefileiconview.h krecentdocument.h \
tdefileiconview.h tderecentdocument.h \
kurlrequester.h tdefilepreview.h tdefile.h \
kurlcombobox.h kurlrequesterdlg.h kopenwith.h kpropsdlg.h \
kicondialog.h kdirsize.h kpreviewwidgetbase.h kimagefilepreview.h tdefilesharedlg.h \
@ -37,18 +37,18 @@ include_HEADERS = tdefiledialog.h kencodingfiledialog.h\
kdirselectdialog.h kurlbar.h kpropertiesdialog.h knotifydialog.h \
kcustommenueditor.h knotifywidgetbase.h
noinst_HEADERS = config-tdefile.h krecentdirs.h kmetaprops.h \
noinst_HEADERS = config-tdefile.h tderecentdirs.h kmetaprops.h \
tdefilebookmarkhandler.h tdefilemetainfowidget.h kopenwith_p.h \
tdefilespeedbar.h kpreviewprops.h kacleditwidget.h kacleditwidget_p.h images.h
libtdefile_la_SOURCES = \
tdefilefiltercombo.cpp \
tdefileview.cpp tdefileiconview.cpp \
krecentdocument.cpp tdefiledialog.cpp kdiroperator.cpp \
tderecentdocument.cpp tdefiledialog.cpp kdiroperator.cpp \
tdefiledetailview.cpp kcombiview.cpp kurlrequester.cpp \
tdefilepreview.cpp kurlcombobox.cpp kurlrequesterdlg.cpp \
kopenwith.cpp kpropertiesdialog.cpp kicondialog.cpp kdirsize.cpp \
krecentdirs.cpp kdiskfreesp.cpp kimagefilepreview.cpp tdefilesharedlg.cpp \
tderecentdirs.cpp kdiskfreesp.cpp kimagefilepreview.cpp tdefilesharedlg.cpp \
kurlbar.cpp kmetaprops.cpp kpreviewprops.cpp \
tdefiletreeview.cpp tdefiletreeviewitem.cpp tdefiletreebranch.cpp \
kdirselectdialog.cpp tdefilebookmarkhandler.cpp \

@ -30,7 +30,7 @@
#ifdef USE_POSIX_ACL
#include <klistview.h>
#include <tdelistview.h>
#include <kacl.h>
#include <tdefileitem.h>

@ -29,7 +29,7 @@
#endif // Q_MOC_RUN
#ifdef USE_POSIX_ACL
#include <klistview.h>
#include <tdelistview.h>
#include <sys/acl.h>
#include <kacl.h>
#include <tdefileitem.h>

@ -27,7 +27,7 @@
#include <klocale.h>
#include <kglobal.h>
#include <kiconloader.h>
#include <klistview.h>
#include <tdelistview.h>
#include <kservice.h>
#include <kstandarddirs.h>
#include <tdeconfigbase.h>

@ -31,7 +31,7 @@
#include <tqtimer.h>
#include <tqvbox.h>
#include <kaction.h>
#include <tdeaction.h>
#include <kapplication.h>
#include <kdebug.h>
#include <kdialog.h>
@ -40,7 +40,7 @@
#include <kinputdialog.h>
#include <klocale.h>
#include <kmessagebox.h>
#include <kpopupmenu.h>
#include <tdepopupmenu.h>
#include <kprogress.h>
#include <kstdaction.h>
#include <tdeio/job.h>
@ -50,7 +50,7 @@
#include <tdeio/renamedlg.h>
#include <kpropertiesdialog.h>
#include <kservicetypefactory.h>
#include <kstdaccel.h>
#include <tdestdaccel.h>
#include <kde_file.h>
#include "config-tdefile.h"

@ -24,7 +24,7 @@
#include <tqwidget.h>
#include <tqptrstack.h>
#include <kaction.h>
#include <tdeaction.h>
#include <kcompletion.h>
#include <kdirlister.h>
#include <tdefileview.h>

@ -23,7 +23,7 @@
#include <tqstringlist.h>
#include <tqvaluestack.h>
#include <kactionclasses.h>
#include <tdeactionclasses.h>
#include <kapplication.h>
#include <kcombobox.h>
#include <tdeconfig.h>
@ -33,7 +33,7 @@
#include <kiconloader.h>
#include <klocale.h>
#include <kprotocolinfo.h>
#include <krecentdirs.h>
#include <tderecentdirs.h>
#include <kshell.h>
#include <kurl.h>
#include <kurlcompletion.h>

@ -23,13 +23,13 @@
#include "kencodingfiledialog.h"
#include <kcombobox.h>
#include <ktoolbar.h>
#include <tdetoolbar.h>
#include <kglobal.h>
#include <klocale.h>
#include <kcharsets.h>
#include <tqtextcodec.h>
#include <kdiroperator.h>
#include <krecentdocument.h>
#include <tderecentdocument.h>
struct KEncodingFileDialogPrivate
{

@ -19,7 +19,7 @@
#ifndef KNOTIFYDIALOG_H
#define KNOTIFYDIALOG_H
#include <klistview.h>
#include <tdelistview.h>
#include <kdialogbase.h>
#include <kinstance.h>
#include <kglobal.h>

@ -458,7 +458,7 @@
</tabstops>
<includes>
<include location="global" impldecl="in implementation">kdialog.h</include>
<include location="global" impldecl="in implementation">klistview.h</include>
<include location="global" impldecl="in implementation">tdelistview.h</include>
<include location="global" impldecl="in implementation">kurlrequester.h</include>
<include location="global" impldecl="in implementation">klineedit.h</include>
<include location="global" impldecl="in implementation">kpushbutton.h</include>

@ -53,7 +53,7 @@
#include <dcopclient.h>
#include <kmimetype.h>
#include <kservicegroup.h>
#include <klistview.h>
#include <tdelistview.h>
#include <tdesycoca.h>
#include <kstdguiitem.h>

@ -21,7 +21,7 @@
#define __open_with_p_h__
#include <kurl.h>
#include <klistview.h>
#include <tdelistview.h>
class KURLRequester;

@ -310,7 +310,7 @@ Following the command, you can have several place holders which will be replaced
<includes>
<include location="global" impldecl="in implementation">klineedit.h</include>
<include location="global" impldecl="in implementation">kurlrequester.h</include>
<include location="global" impldecl="in implementation">klistview.h</include>
<include location="global" impldecl="in implementation">tdelistview.h</include>
</includes>
<layoutdefaults spacing="6" margin="11"/>
</UI>

@ -122,7 +122,7 @@ extern "C" {
#include <kpreviewprops.h>
#include <kprocess.h>
#include <krun.h>
#include <klistview.h>
#include <tdelistview.h>
#include <kacl.h>
#include "tdefilesharedlg.h"

@ -64,7 +64,7 @@
</vbox>
</widget>
<includes>
<include location="global" impldecl="in implementation">klistview.h</include>
<include location="global" impldecl="in implementation">tdelistview.h</include>
</includes>
<layoutdefaults spacing="6" margin="11"/>
</UI>

@ -25,7 +25,7 @@
#include <kdialogbase.h>
#include <kicontheme.h>
#include <klistbox.h>
#include <tdelistbox.h>
#include <kurl.h>
class TDEConfig;

@ -24,7 +24,7 @@
#include <tqtooltip.h>
#include <tqapplication.h>
#include <kaccel.h>
#include <tdeaccel.h>
#include <kcombobox.h>
#include <kdebug.h>
#include <kdialog.h>

@ -26,13 +26,13 @@
#include <tqstring.h>
#include <tqtoolbutton.h>
#include <kaccel.h>
#include <tdeaccel.h>
#include <tdefiledialog.h>
#include <kglobal.h>
#include <kiconloader.h>
#include <klineedit.h>
#include <klocale.h>
#include <krecentdocument.h>
#include <tderecentdocument.h>
#include <kurl.h>
#include <kurlrequester.h>

@ -21,7 +21,7 @@
#include <kbookmarkimporter.h>
#include <kbookmarkdombuilder.h>
#include <kpopupmenu.h>
#include <tdepopupmenu.h>
#include <kstandarddirs.h>
#include "tdefiledialog.h"

@ -25,7 +25,7 @@ class KFileItem;
class TQWidget;
class TQKeyEvent;
#include <klistview.h>
#include <tdelistview.h>
#include <kmimetyperesolver.h>
#include "tdefileview.h"

@ -42,8 +42,8 @@
#include <tqwhatsthis.h>
#include <tqfiledialog.h>
#include <kaccel.h>
#include <kaction.h>
#include <tdeaccel.h>
#include <tdeaction.h>
#include <kapplication.h>
#include <kcharsets.h>
#include <kcmdlineargs.h>
@ -61,16 +61,16 @@
#include <klocale.h>
#include <kmessagebox.h>
#include <kmimetype.h>
#include <kpopupmenu.h>
#include <tdepopupmenu.h>
#include <kprotocolinfo.h>
#include <kpushbutton.h>
#include <krecentdirs.h>
#include <tderecentdirs.h>
#include <kshell.h>
#include <kstandarddirs.h>
#include <kstdguiitem.h>
#include <kstaticdeleter.h>
#include <ktoolbar.h>
#include <ktoolbarbutton.h>
#include <tdetoolbar.h>
#include <tdetoolbarbutton.h>
#include <kurl.h>
#include <kurlcombobox.h>
#include <kurlcompletion.h>
@ -81,7 +81,7 @@
#include <kdirselectdialog.h>
#include <tdefileview.h>
#include <krecentdocument.h>
#include <tderecentdocument.h>
#include <tdefilefiltercombo.h>
#include <kdiroperator.h>
#include <kimagefilepreview.h>

@ -29,7 +29,7 @@
#include <tqtimer.h>
#include <tqtooltip.h>
#include <kaction.h>
#include <tdeaction.h>
#include <kapplication.h>
#include <klocale.h>
#include <tdefileitem.h>

@ -19,7 +19,7 @@
Boston, MA 02110-1301, USA.
*/
#include <kaction.h>
#include <tdeaction.h>
#include <tdefilepreview.h>
#include <tdefilepreview.moc>
#include <klocale.h>

@ -27,7 +27,7 @@
#include <tqstrlist.h>
#include <tqtooltip.h>
#include <klistview.h>
#include <tdelistview.h>
#include <kdirnotify.h>
#include <tdeio/job.h>
#include <tdefiletreeviewitem.h>

@ -21,7 +21,7 @@
#define tdefile_tree_view_item_h
#include <tqptrlist.h>
#include <klistview.h>
#include <tdelistview.h>
#include <tdefileitem.h>
#include <tdeio/global.h>

@ -22,7 +22,7 @@
#include <assert.h>
#include <stdlib.h>
#include <kaction.h>
#include <tdeaction.h>
#include <kapplication.h>
#include <kdebug.h>
#include <kglobal.h>

@ -25,7 +25,7 @@
* SUCH DAMAGE.
*
*/
#include <krecentdirs.h>
#include <tderecentdirs.h>
#include <ksimpleconfig.h>
#include <kstandarddirs.h>
#include <kglobalsettings.h>
@ -52,7 +52,7 @@ static TDEConfig *recentdirs_readList(TQString &key, TQStringList &result, bool
if (key[1] == ':')
{
key = key.mid(2);
config = new KSimpleConfig(TQString::fromLatin1("krecentdirsrc"), readOnly);
config = new KSimpleConfig(TQString::fromLatin1("tderecentdirsrc"), readOnly);
}
else
{

@ -25,7 +25,7 @@
* SUCH DAMAGE.
*
*/
#include <krecentdocument.h>
#include <tderecentdocument.h>
#include <ksimpleconfig.h>
#include <kstandarddirs.h>
#include <kapplication.h>

@ -21,7 +21,7 @@
#include <kglobal.h>
#include <kiconloader.h>
#include <kmainwindow.h>
#include <tdemainwindow.h>
#include <kapplication.h>
#include <kurl.h>
#include <kdebug.h>

@ -49,7 +49,7 @@ extern "C" {
#include <kdialog.h>
#include <kmessagebox.h>
#include <kdatastream.h>
#include <kmainwindow.h>
#include <tdemainwindow.h>
#include <kde_file.h>
#include <errno.h>

@ -24,7 +24,7 @@
#include <tqobject.h>
#include <tqvaluelist.h>
#include <kaction.h>
#include <tdeaction.h>
#include <kservice.h>
class KDataTool;

@ -20,7 +20,7 @@
#include <tdeconfig.h>
#include <kiconloader.h>
#include <klistview.h>
#include <tdelistview.h>
#include <klocale.h>
#include <kmimetype.h>
#include <kprocess.h>

@ -37,7 +37,7 @@
#include "tdeio/scheduler.h"
#include "tdeio/netaccess.h"
#include "tdefile/kopenwith.h"
#include "tdefile/krecentdocument.h"
#include "tdefile/tderecentdocument.h"
#include <kdatastream.h>
#include <kmessageboxwrapper.h>

@ -523,17 +523,17 @@ private:
* of the filters you want to use to a TQStringList and invoke
* the appropriate filtering function. The examples below show
* the use of specific filters. The first one uses a single
* filter called kshorturifilter while the second example uses
* filter called tdeshorturifilter while the second example uses
* multiple filters:
*
* \code
* TQString text = "kde.org";
* bool filtered = KURIFilter::self()->filterURI( text, "kshorturifilter" );
* bool filtered = KURIFilter::self()->filterURI( text, "tdeshorturifilter" );
* \endcode
*
* \code
* TQStringList list;
* list << "kshorturifilter" << "localdomainfilter";
* list << "tdeshorturifilter" << "localdomainfilter";
* bool filtered = KURIFilter::self()->filterURI( text, list );
* \endcode
*

@ -182,13 +182,13 @@ int main(int argc, char **argv)
// Enable verbosity for debugging
{
KSimpleConfig cfg( "kshorturifilterrc" );
KSimpleConfig cfg( "tdeshorturifilterrc" );
cfg.writeEntry( "Verbose", true );
cfg.sync();
}
TQStringList minicliFilters;
minicliFilters << "kshorturifilter" << "kurisearchfilter" << "localdomainurifilter";
minicliFilters << "tdeshorturifilter" << "kurisearchfilter" << "localdomainurifilter";
// URI that should require no filtering
filter( "http://www.kde.org", "http://www.kde.org", KURIFilterData::NET_PROTOCOL );
@ -213,8 +213,8 @@ int main(int argc, char **argv)
filter( "ftp://username@ftp.kde.org:500", "ftp://username@ftp.kde.org:500", KURIFilterData::NET_PROTOCOL );
// ShortURI/LocalDomain filter tests. NOTE: any of these tests can fail
// if you have specified your own patterns in kshorturifilterrc. For
// examples, see $TDEDIR/share/config/kshorturifilterrc .
// if you have specified your own patterns in tdeshorturifilterrc. For
// examples, see $TDEDIR/share/config/tdeshorturifilterrc .
filter( "linuxtoday.com", "http://linuxtoday.com", KURIFilterData::NET_PROTOCOL );
filter( "LINUXTODAY.COM", "http://linuxtoday.com", KURIFilterData::NET_PROTOCOL );
filter( "kde.org", "http://kde.org", KURIFilterData::NET_PROTOCOL );
@ -240,10 +240,10 @@ int main(int argc, char **argv)
// filter( "localhost/~blah", "http://localhost.localdomain/~blah", KURIFilterData::NET_PROTOCOL );
filter( "/", "/", KURIFilterData::LOCAL_DIR );
filter( "/", "/", KURIFilterData::LOCAL_DIR, "kshorturifilter" );
filter( "~/.bashrc", TQDir::homeDirPath().local8Bit()+"/.bashrc", KURIFilterData::LOCAL_FILE, "kshorturifilter" );
filter( "~", TQDir::homeDirPath().local8Bit(), KURIFilterData::LOCAL_DIR, "kshorturifilter", "/tmp" );
filter( "~foobar", 0, KURIFilterData::ERROR, "kshorturifilter" );
filter( "/", "/", KURIFilterData::LOCAL_DIR, "tdeshorturifilter" );
filter( "~/.bashrc", TQDir::homeDirPath().local8Bit()+"/.bashrc", KURIFilterData::LOCAL_FILE, "tdeshorturifilter" );
filter( "~", TQDir::homeDirPath().local8Bit(), KURIFilterData::LOCAL_DIR, "tdeshorturifilter", "/tmp" );
filter( "~foobar", 0, KURIFilterData::ERROR, "tdeshorturifilter" );
filter( "user@host.domain", "mailto:user@host.domain", KURIFilterData::NET_PROTOCOL ); // new in KDE-3.2
// Windows style SMB (UNC) URL. Should be converted into the valid smb format...
@ -333,8 +333,8 @@ int main(int argc, char **argv)
// the shortURI filter will return the string
// itself if the requested environment variable
// is not already set.
filter( "$QTDIR", 0, KURIFilterData::LOCAL_DIR, "kshorturifilter" ); //use specific filter.
filter( "$HOME", home, KURIFilterData::LOCAL_DIR, "kshorturifilter" ); //use specific filter.
filter( "$QTDIR", 0, KURIFilterData::LOCAL_DIR, "tdeshorturifilter" ); //use specific filter.
filter( "$HOME", home, KURIFilterData::LOCAL_DIR, "tdeshorturifilter" ); //use specific filter.
TQCString sc;
@ -348,10 +348,10 @@ int main(int argc, char **argv)
filter( sc.sprintf("gg%cé", delimiter) /*eaccent in utf8*/, "http://www.google.com/search?q=%C3%A9&ie=UTF-8&oe=UTF-8", KURIFilterData::NET_PROTOCOL );
filter( sc.sprintf("gg%cпрйвет", delimiter) /* greetings in russian utf-8*/, "http://www.google.com/search?q=%D0%BF%D1%80%D0%B9%D0%B2%D0%B5%D1%82&ie=UTF-8&oe=UTF-8", KURIFilterData::NET_PROTOCOL );
// Absolute Path tests for kshorturifilter
filter( "./", tdehome+"/share", KURIFilterData::LOCAL_DIR, "kshorturifilter", tdehome+"/share/" ); // cleanDirPath removes the trailing slash
filter( "../", tdehome, KURIFilterData::LOCAL_DIR, "kshorturifilter", tdehome+"/share" );
filter( "config", tdehome+"/share/config", KURIFilterData::LOCAL_DIR, "kshorturifilter", tdehome+"/share" );
// Absolute Path tests for tdeshorturifilter
filter( "./", tdehome+"/share", KURIFilterData::LOCAL_DIR, "tdeshorturifilter", tdehome+"/share/" ); // cleanDirPath removes the trailing slash
filter( "../", tdehome, KURIFilterData::LOCAL_DIR, "tdeshorturifilter", tdehome+"/share" );
filter( "config", tdehome+"/share/config", KURIFilterData::LOCAL_DIR, "tdeshorturifilter", tdehome+"/share" );
// Clean up
TDEIO::NetAccess::del( tdehome, 0 );

@ -19,7 +19,7 @@
#include <tqbuttongroup.h>
#include <tqwidget.h>
#include <kmainwindow.h>
#include <tdemainwindow.h>
#include "tdeio/job.h"
#include "tdeio/global.h"

@ -1,7 +1,7 @@
/* This file is part of the KDE libraries
Copyright (C) 2003 Joseph Wenninger <jowenn@kde.org>
Copyright (C) 2004 Christoph Cullmann <cullmann@kde.org>
based on ktoolbarhandler.cpp: Copyright (C) 2002 Simon Hausmann <hausmann@kde.org>
based on tdetoolbarhandler.cpp: Copyright (C) 2002 Simon Hausmann <hausmann@kde.org>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
@ -24,9 +24,9 @@
#include <tqpopupmenu.h>
#include <kapplication.h>
#include <tdeconfig.h>
#include <ktoolbar.h>
#include <tdetoolbar.h>
#include <klocale.h>
#include <kaction.h>
#include <tdeaction.h>
#include <tqstring.h>
#include <kdebug.h>
#include <kdockwidget.h>
@ -73,7 +73,7 @@ GUIClient::GUIClient (KMDI::MainWindow* mdiMainFrm,const char* name)
setXML( completeDescription, false /*merge*/ );
}
if (actionCollection()->kaccel()==0)
if (actionCollection()->tdeaccel()==0)
actionCollection()->setWidget(mdiMainFrm);
m_toolMenu=new TDEActionMenu(i18n("Tool &Views"),actionCollection(),"tdemdi_toolview_menu");

@ -1,7 +1,7 @@
/* This file is part of the KDE libraries
Copyright (C) 2003 Joseph Wenninger <jowenn@kde.org>
Copyright (C) 2004 Christoph Cullmann <cullmann@kde.org>
based on ktoolbarhandler.cpp: Copyright (C) 2002 Simon Hausmann <hausmann@kde.org>
based on tdetoolbarhandler.cpp: Copyright (C) 2002 Simon Hausmann <hausmann@kde.org>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
@ -24,7 +24,7 @@
#include <tqobject.h>
#include <tqguardedptr.h>
#include <kxmlguiclient.h>
#include <kaction.h>
#include <tdeaction.h>
#include <tdemdi/global.h>

@ -44,7 +44,7 @@
#include <tdeparts/dockmainwindow.h>
#include <kmenubar.h>
#include <kpopupmenu.h>
#include <tdepopupmenu.h>
#include <tqptrlist.h>
#include <tqrect.h>

@ -40,7 +40,7 @@
*/
#include <ktabbar.h>
#include <kpopupmenu.h>
#include <tdepopupmenu.h>
#include <kdebug.h>
#include <tqobjectlist.h>

@ -22,7 +22,7 @@
#include <kdockwidget.h>
#include <tqguardedptr.h>
#include <kaction.h>
#include <tdeaction.h>
namespace KMDIPrivate
{

@ -10,7 +10,7 @@
#include <tqtimer.h>
#include <ktabbar.h>
#include <kpopupmenu.h>
#include <tdepopupmenu.h>
#include "tdemdidocumentviewtabwidget.h"
KMdiDocumentViewTabWidget::KMdiDocumentViewTabWidget( TQWidget* parent, const char* name ) : KTabWidget( parent, name )

@ -1,6 +1,6 @@
/* This file is part of the KDE libraries
Copyright (C) 2003 Joseph Wenninger <jowenn@kde.org>
based on ktoolbarhandler.cpp: Copyright (C) 2002 Simon Hausmann <hausmann@kde.org>
based on tdetoolbarhandler.cpp: Copyright (C) 2002 Simon Hausmann <hausmann@kde.org>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
@ -23,10 +23,10 @@
#include <tqpopupmenu.h>
#include <kapplication.h>
#include <tdeconfig.h>
#include <ktoolbar.h>
#include <kmainwindow.h>
#include <tdetoolbar.h>
#include <tdemainwindow.h>
#include <klocale.h>
#include <kaction.h>
#include <tdeaction.h>
#include <tqstring.h>
#include <assert.h>
#include <kdebug.h>
@ -134,7 +134,7 @@ KMDIGUIClient::KMDIGUIClient( KMdiMainFrm* mdiMainFrm, bool showMDIModeAction, c
setXML( completeDescription, false /*merge*/ );
}
if ( actionCollection() ->kaccel() == 0 )
if ( actionCollection() ->tdeaccel() == 0 )
actionCollection() ->setWidget( mdiMainFrm );
m_toolMenu = new TDEActionMenu( i18n( "Tool &Views" ), actionCollection(), "tdemdi_toolview_menu" );
if ( showMDIModeAction )

@ -22,7 +22,7 @@
#include <tqobject.h>
#include <tqguardedptr.h>
#include <kxmlguiclient.h>
#include <kaction.h>
#include <tdeaction.h>
#include "tdemdidefines.h"
class TDEMainWindow;

@ -49,7 +49,7 @@
#include <tdeversion.h>
#include <tqtabwidget.h>
#include <klocale.h>
#include <kstdaccel.h>
#include <tdestdaccel.h>
#include <kiconloader.h>
#include <tdemdidockcontainer.h>

@ -33,7 +33,7 @@
#include <tdeparts/dockmainwindow.h>
#include <kmenubar.h>
#include <kpopupmenu.h>
#include <tdepopupmenu.h>
#include <tqptrlist.h>
#include <tqrect.h>

@ -28,7 +28,7 @@
#ifndef _KMDITASKBAR_H_
#define _KMDITASKBAR_H_
#include <ktoolbar.h>
#include <tdetoolbar.h>
#include <tqptrlist.h>
#include <tqpixmap.h>
#include <tqlabel.h>

@ -27,7 +27,7 @@
#include <tqwidget.h>
#include <kdockwidget.h>
#include <tqguardedptr.h>
#include <kaction.h>
#include <tdeaction.h>
class KMDI_EXPORT KMdiToolViewAccessorPrivate {
public:

@ -22,7 +22,7 @@
#include <tdeparts/dockmainwindow.h>
#include <tdeparts/event.h>
#include <tdeparts/part.h>
#include <kaccel.h>
#include <tdeaccel.h>
#include <tdeparts/plugin.h>
#include <kstatusbar.h>
#include <kinstance.h>

@ -22,7 +22,7 @@
#define __DOCKMAINWINDOW_H
#include <tqptrlist.h>
#include <kaction.h>
#include <tdeaction.h>
#include <kdockwidget.h>

@ -29,7 +29,7 @@
#include <tqapplication.h>
#include <kxmlguifactory.h>
#include <kaccel.h>
#include <tdeaccel.h>
#include <kdebug.h>
#include <assert.h>

@ -21,9 +21,9 @@
#define __MAINWINDOW_H
#include <tqptrlist.h>
#include <kaction.h>
#include <tdeaction.h>
#include <kmainwindow.h>
#include <tdemainwindow.h>
#include <tdeparts/part.h>

@ -21,7 +21,7 @@
#define PLUGIN_H
#include <tqobject.h>
#include <kaction.h>
#include <tdeaction.h>
#include <kxmlguiclient.h>
class TDEInstance;

@ -24,7 +24,7 @@
#include <tqobjectlist.h>
#include <kstatusbar.h>
#include <kmainwindow.h>
#include <tdemainwindow.h>
#include <kdebug.h>
#include <tdelibs_export.h>
#include <tdeparts/part.h>

@ -11,7 +11,7 @@
#include <kstandarddirs.h>
#include <kapplication.h>
#include <kmessagebox.h>
#include <kaction.h>
#include <tdeaction.h>
#include <klocale.h>
Shell::Shell()

@ -1,7 +1,7 @@
#include <kiconloader.h>
#include <kstandarddirs.h>
#include <kapplication.h>
#include <kaction.h>
#include <tdeaction.h>
#include <klocale.h>
#include <tdefiledialog.h>
#include <kmessagebox.h>

@ -11,7 +11,7 @@
#include <kstandarddirs.h>
#include <kapplication.h>
#include <kmessagebox.h>
#include <kaction.h>
#include <tdeaction.h>
#include <klocale.h>
#include <kmenubar.h>

@ -3,7 +3,7 @@
#define __normalktm_h__
#include <tdeparts/part.h>
#include <kmainwindow.h>
#include <tdemainwindow.h>
class TDEAction;
class TQWidget;

@ -11,7 +11,7 @@
#include <kaboutdata.h>
#include <kapplication.h>
#include <kdebug.h>
#include <kaction.h>
#include <tdeaction.h>
#include <klocale.h>
#include <kstatusbar.h>
#include <kstandarddirs.h>

@ -15,7 +15,7 @@
#include <kapplication.h>
#include <kdebug.h>
#include <kmessagebox.h>
#include <kaction.h>
#include <tdeaction.h>
#include <klocale.h>
Part1::Part1( TQObject *parent, TQWidget * parentWidget )

@ -1,7 +1,7 @@
#include "notepad.h" // this plugin applies to a notepad part
#include <tqmultilineedit.h>
#include "plugin_spellcheck.h"
#include <kaction.h>
#include <tdeaction.h>
#include <kgenericfactory.h>
#include <kmessagebox.h>
#include <klocale.h>

@ -19,7 +19,7 @@
#include "editlist.h"
#include <klistbox.h>
#include <tdelistbox.h>
#include <kpushbutton.h>
#include <tqlayout.h>
#include <klocale.h>

@ -22,7 +22,7 @@
#include <tqlayout.h>
#include <tqheader.h>
#include <tqpushbutton.h>
#include <klistview.h>
#include <tdelistview.h>
#include <klocale.h>
#include <tdefiledialog.h>
#include <kiconloader.h>

@ -48,7 +48,7 @@
#include <tdesocketbase.h>
#include <klibloader.h>
#include <kmessagebox.h>
#include <kaction.h>
#include <tdeaction.h>
#include <kdialogbase.h>
#include <kextendedsocket.h>
#include <kprocess.h>

@ -57,7 +57,7 @@
#include <tqwhatsthis.h>
#include <klocale.h>
#include <kdebug.h>
#include <kaction.h>
#include <tdeaction.h>
#include <kmessagebox.h>
#include "config.h"

@ -25,7 +25,7 @@
#include <tqlabel.h>
#include <tqlayout.h>
#include <klistbox.h>
#include <tdelistbox.h>
#include <klocale.h>
#include <kiconloader.h>
#include <kurl.h>

@ -24,7 +24,7 @@
#include "kmcupsmanager.h"
#include "networkscanner.h"
#include <klistview.h>
#include <tdelistview.h>
#include <tqheader.h>
#include <kpushbutton.h>
#include <tqlineedit.h>

@ -23,7 +23,7 @@
#include "cupsinfos.h"
#include "ipprequest.h"
#include <klistbox.h>
#include <tdelistbox.h>
#include <tqlayout.h>
#include <klocale.h>
#include <kdebug.h>

@ -30,7 +30,7 @@
#include <tqdict.h>
#include <klocale.h>
#include <klistview.h>
#include <tdelistview.h>
#include <kiconloader.h>
#include <kdebug.h>

@ -22,7 +22,7 @@
#define DRIVERVIEW_H
#include <tqwidget.h>
#include <klistview.h>
#include <tdelistview.h>
#include <tqmap.h>
#include <tdelibs_export.h>

@ -25,7 +25,7 @@
#include <tqlineedit.h>
#include <tqslider.h>
#include <tqlabel.h>
#include <klistbox.h>
#include <tdelistbox.h>
#include <tqvbuttongroup.h>
#include <tqradiobutton.h>
#include <tqwidgetstack.h>

@ -22,7 +22,7 @@
#include "kmthreadjob.h"
#include "kmfactory.h"
#include <kaction.h>
#include <tdeaction.h>
#include <kdebug.h>
#include <tdeconfig.h>

@ -26,7 +26,7 @@
#include <tqtooltip.h>
#include <tqlayout.h>
#include <tqwhatsthis.h>
#include <klistview.h>
#include <tdelistview.h>
#include <klocale.h>
#include <kiconloader.h>
#include <kmessagebox.h>

@ -22,7 +22,7 @@
#include <kprinter.h>
#include <tdeprint/kmmanager.h>
#include <kiconloader.h>
#include <kpopupmenu.h>
#include <tdepopupmenu.h>
#include <klocale.h>
class KPrintAction::KPrintActionPrivate

@ -20,7 +20,7 @@
#ifndef KPRINTACTION_H
#define KPRINTACTION_H
#include <kaction.h>
#include <tdeaction.h>
class KPrinter;

@ -26,8 +26,8 @@
#include <tqvbox.h>
#include <tdeparts/part.h>
#include <kaccel.h>
#include <kaction.h>
#include <tdeaccel.h>
#include <tdeaction.h>
#include <klibloader.h>
#include <ktrader.h>
#include <kuserprofile.h>
@ -38,7 +38,7 @@
#include <kmessagebox.h>
#include <kdebug.h>
#include <tdeconfig.h>
#include <ktoolbar.h>
#include <tdetoolbar.h>
#include <kmimetype.h>
KPreviewProc::KPreviewProc()

@ -25,7 +25,7 @@
#include <tqcombobox.h>
#include <tqlabel.h>
#include <tqheader.h>
#include <klistview.h>
#include <tdelistview.h>
#include <tqlayout.h>
#include <tqwidgetstack.h>
#include <klocale.h>

@ -35,7 +35,7 @@
#include <kdebug.h>
#include <kprinter.h>
#include <kprocess.h>
#include <kaction.h>
#include <tdeaction.h>
#include <kmessagebox.h>
#include <klibloader.h>

@ -22,7 +22,7 @@
#include <tqwidgetstack.h>
#include <tqlabel.h>
#include <tqpainter.h>
#include <klistbox.h>
#include <tdelistbox.h>
#include <tqlayout.h>
#include <kseparator.h>

@ -22,8 +22,8 @@
#include <tqpopupmenu.h>
#include <kiconloader.h>
#include <kdebug.h>
#include <ktoolbar.h>
#include <ktoolbarbutton.h>
#include <tdetoolbar.h>
#include <tdetoolbarbutton.h>
class KIconSelectActionPrivate
{

@ -20,7 +20,7 @@
#ifndef KICONSELECTACTION_H
#define KICONSELECTACTION_H
#include <kaction.h>
#include <tdeaction.h>
class KIconSelectActionPrivate;

@ -31,7 +31,7 @@
#include <klocale.h>
#include <tdeconfig.h>
#include <kiconloader.h>
#include <klistbox.h>
#include <tdelistbox.h>
#include <kdialog.h>
KMConfigFilter::KMConfigFilter(TQWidget *parent, const char *name)

@ -33,7 +33,7 @@
#include <kiconloader.h>
#include <kurlrequester.h>
#include <tdefile.h>
#include <klistview.h>
#include <tdelistview.h>
#include <kdialog.h>
KMConfigFonts::KMConfigFonts(TQWidget *parent, const char *name)

@ -23,7 +23,7 @@
#include "kmmanager.h"
#include "driver.h"
#include <klistbox.h>
#include <tdelistbox.h>
#include <kpushbutton.h>
#include <tqcheckbox.h>
#include <kcursor.h>

@ -32,7 +32,7 @@
#include <tqpushbutton.h>
#include <kmessagebox.h>
#include <kinputdialog.h>
#include <klistbox.h>
#include <tdelistbox.h>
#include <klocale.h>
#include <kiconloader.h>
#include <kstandarddirs.h>

@ -30,13 +30,13 @@
#include "kmconfigpage.h"
#include "kprinter.h"
#include <klistview.h>
#include <tdelistview.h>
#include <kstatusbar.h>
#include <tqpopupmenu.h>
#include <kmessagebox.h>
#include <klocale.h>
#include <kpopupmenu.h>
#include <kaction.h>
#include <tdepopupmenu.h>
#include <tdeaction.h>
#include <kstdaction.h>
#include <kiconloader.h>
#include <kapplication.h>

@ -24,7 +24,7 @@
#warning internal header, do not use except if you are a TDEPrint developer
#endif
#include <kmainwindow.h>
#include <tdemainwindow.h>
#include "kmprinterpage.h"
#include "kpreloadobject.h"

@ -43,13 +43,13 @@
#include <tqlayout.h>
#include <tqpopupmenu.h>
#include <kmessagebox.h>
#include <kaction.h>
#include <tdeaction.h>
#include <klocale.h>
#include <tdeconfig.h>
#include <ktoolbar.h>
#include <ktoolbarbutton.h>
#include <tdetoolbar.h>
#include <tdetoolbarbutton.h>
#include <kdebug.h>
#include <kpopupmenu.h>
#include <tdepopupmenu.h>
#include <klibloader.h>
#include <kdialogbase.h>
#include <ksimpleconfig.h>

@ -26,7 +26,7 @@
#include <tqwidget.h>
#include <tdeprint/kpreloadobject.h>
#include <kmainwindow.h>
#include <tdemainwindow.h>
class KMManager;
class KMPrinterView;

@ -26,7 +26,7 @@
#include <tqlayout.h>
#include <tqpopupmenu.h>
#include <kaction.h>
#include <tdeaction.h>
#include <klocale.h>
KMPrinterView::KMPrinterView(TQWidget *parent, const char *name)

@ -26,7 +26,7 @@
#include <tqlayout.h>
#include <tqlabel.h>
#include <tqtoolbutton.h>
#include <klistbox.h>
#include <tdelistbox.h>
#include <klocale.h>
#include <kiconloader.h>

@ -26,7 +26,7 @@
#include <tqlabel.h>
#include <tqlayout.h>
#include <kpushbutton.h>
#include <klistbox.h>
#include <tdelistbox.h>
#include <klocale.h>
#include <kmessagebox.h>

@ -28,7 +28,7 @@
#include <tqlineedit.h>
#include <tqlabel.h>
#include <tqheader.h>
#include <klistview.h>
#include <tdelistview.h>
#include <kmessagebox.h>
#include <kiconloader.h>

@ -22,7 +22,7 @@
#include "kmwizard.h"
#include "kmprinter.h"
#include <klistview.h>
#include <tdelistview.h>
#include <tqheader.h>
#include <tqlineedit.h>
#include <tqlabel.h>

@ -37,12 +37,12 @@
#include <tqwhatsthis.h>
#include <tqapplication.h>
#include <klistview.h>
#include <tdelistview.h>
#include <klocale.h>
#include <kiconloader.h>
#include <kdialogbase.h>
#include <kseparator.h>
#include <klistbox.h>
#include <tdelistbox.h>
#include <kmimetype.h>
#include <kmessagebox.h>
#include <kapplication.h>

@ -20,7 +20,7 @@
#ifndef PLUGINACTION_H
#define PLUGINACTION_H
#include <kaction.h>
#include <tdeaction.h>
class TDEPRINT_EXPORT PluginAction : public TDEAction
{

@ -20,7 +20,7 @@
#ifndef SMBVIEW_H
#define SMBVIEW_H
#include <klistview.h>
#include <tdelistview.h>
class TDEProcess;
class KTempFile;

@ -28,7 +28,7 @@
#include <tqlabel.h>
#include <tqlineedit.h>
#include <tqheader.h>
#include <klistview.h>
#include <tdelistview.h>
#include <klocale.h>
#include <kiconloader.h>

@ -31,7 +31,7 @@
#include <tdefiledialog.h>
#include <klocale.h>
#include <kiconloader.h>
#include <klistview.h>
#include <tdelistview.h>
#include <krun.h>
#include <kmimetype.h>

@ -14,7 +14,7 @@
#include <tqpixmap.h>
#include <tqpopupmenu.h>
#include <kmenubar.h>
#include <ktoolbar.h>
#include <tdetoolbar.h>
#include <kstatusbar.h>
#include <tqtoolbutton.h>
#include <tqiconset.h>

@ -11,7 +11,7 @@
#ifndef HELPWINDOW_H
#define HELPWINDOW_H
#include <kmainwindow.h>
#include <tdemainwindow.h>
#include <tqtextbrowser.h>
#include <tqstringlist.h>
#include <tqmap.h>

@ -33,7 +33,7 @@
#include <ksimpleconfig.h>
#include <kstandarddirs.h>
#include <kurlrequester.h>
#include <klistview.h>
#include <tdelistview.h>
#include <kbuttonbox.h>
#include <ktrader.h>
#include <kinputdialog.h>

@ -22,7 +22,7 @@
*/
#include <kbuttonbox.h>
#include <klistbox.h>
#include <tdelistbox.h>
#include <klocale.h>
#include <kmessagebox.h>

@ -75,19 +75,19 @@
#include <kinstance.h>
#include <twin.h>
#include <kaction.h>
#include <kpopupmenu.h>
#include <tdeaction.h>
#include <tdepopupmenu.h>
#include <kmessagebox.h>
#include <kiconloader.h>
#include <kprogressbox.h>
#include <kpassdlg.h>
#include <klistview.h>
#include <tdelistview.h>
#include <kapplication.h>
#include <tdeconfigdialog.h>
#include <kdirlister.h>
#include <kstandarddirs.h>
#include <klistviewsearchline.h>
#include <tdelistviewsearchline.h>
#include <kiconviewsearchline.h>
#include <kstaticdeleter.h>
#include <kgenericfactory.h>

@ -54,19 +54,19 @@
#include <twin.h>
#include <kurl.h>
#include <kaction.h>
#include <kpopupmenu.h>
#include <tdeaction.h>
#include <tdepopupmenu.h>
#include <kmessagebox.h>
#include <kiconloader.h>
#include <kprogressbox.h>
#include <kpassdlg.h>
#include <klistview.h>
#include <tdelistview.h>
#include <kapplication.h>
#include <tdeconfigdialog.h>
#include <kdirlister.h>
#include <kstandarddirs.h>
#include <klistviewsearchline.h>
#include <tdelistviewsearchline.h>
#include <kiconviewsearchline.h>
#include <kstaticdeleter.h>
#include <kgenericfactory.h>

@ -61,7 +61,7 @@ Michael Wiedmann <mw@miwie.in-berlin.de>
KRestrictedLine, KIntegerLine
Matthias Ettrich <ettrich@kde.org>
KWMModuleApplication, tearing/docking of ktoolbar and kmenubar, heavy
KWMModuleApplication, tearing/docking of tdetoolbar and kmenubar, heavy
modifications to kbutton
Stephan Kulow <coolo@kde.org>

@ -40,10 +40,10 @@ link_directories(
install( FILES
kprogressbox.h kprogress.h kcolordlg.h
kcolordialog.h kselect.h
kdatepik.h kdatepicker.h kdatetbl.h kfontdialog.h kpopupmenu.h
kfontrequester.h ktabctl.h kstatusbar.h
kmainwindow.h kmainwindowiface.h ktoolbar.h kmenubar.h
kcolordialog.h tdeselect.h
kdatepik.h kdatepicker.h kdatetbl.h tdefontdialog.h tdepopupmenu.h
tdefontrequester.h ktabctl.h kstatusbar.h
tdemainwindow.h tdemainwindowiface.h tdetoolbar.h kmenubar.h
knuminput.h kseparator.h klineedit.h
krestrictedline.h kcolorbutton.h kcolorbtn.h
ksystemtray.h kdockwindow.h kbuttonbox.h
@ -55,28 +55,28 @@ install( FILES
knumvalidator.h kdialog.h kdialogbase.h
kjanuswidget.h kaboutdialog.h
kauthicon.h kmessagebox.h ksharedpixmap.h
kdualcolorbtn.h kdualcolorbutton.h ktoolbarbutton.h
ktoolbarradiogroup.h ktextbrowser.h
kaction.h kactioncollection.h kactionclasses.h khelpmenu.h kswitchlanguagedialog.h
kdualcolorbtn.h kdualcolorbutton.h tdetoolbarbutton.h
tdetoolbarradiogroup.h ktextbrowser.h
tdeaction.h tdeactioncollection.h tdeactionclasses.h khelpmenu.h kswitchlanguagedialog.h
tdecmodule.h kcmenumngr.h kpanelmenu.h kpanelappmenu.h
kactionshortcutlist.h kstdaction.h kcombobox.h
kiconview.h klistview.h klistbox.h kbugreport.h kpassdlg.h
tdeactionshortcutlist.h kstdaction.h kcombobox.h
kiconview.h tdelistview.h tdelistbox.h kbugreport.h kpassdlg.h
kxmlguiclient.h kxmlgui.h kxmlguibuilder.h kxmlguifactory.h
kpixmapio.h kwordwrap.h
kedittoolbar.h kdockwidget.h kanimwidget.h
krootpixmap.h kaboutkde.h kaboutapplication.h
kpanelapplet.h kpushbutton.h kdcopactionproxy.h kcolorcombo.h
kpanelextension.h kcompletionbox.h ksqueezedtextlabel.h
kcommand.h twindowlistmenu.h kfontcombo.h kaccelgen.h ktip.h
kcommand.h twindowlistmenu.h tdefontcombo.h tdeaccelgen.h ktip.h
kdatewidget.h karrowbutton.h kguiitem.h kstdguiitem.h
kstringvalidator.h twindowinfo.h
ktextedit.h kpassivepopup.h
kdatetimewidget.h ktimewidget.h ktimezonewidget.h kscrollview.h
tdespell.h ksconfig.h tdespelldlg.h ksyntaxhighlighter.h
ktabbar.h ktabwidget.h ksplashscreen.h tdeconfigdialog.h
kactionselector.h klanguagebutton.h klistviewsearchline.h
tdeactionselector.h klanguagebutton.h tdelistviewsearchline.h
kpixmapregionselectorwidget.h kpixmapregionselectordialog.h
kiconviewsearchline.h ktoolbarlabelaction.h kshortcutdialog.h
kiconviewsearchline.h tdetoolbarlabelaction.h tdeshortcutdialog.h
DESTINATION ${INCLUDE_INSTALL_DIR} )
@ -101,28 +101,28 @@ set( target tdeui )
set( ${target}_SRCS
qxembed.cpp ksharedpixmap.cpp kpixmapio.cpp
kpopupmenu.cpp ktoolbar.cpp kaction.cpp kstdaction.cpp
kactioncollection.cpp kactionclasses.cpp
tdepopupmenu.cpp tdetoolbar.cpp tdeaction.cpp kstdaction.cpp
tdeactioncollection.cpp tdeactionclasses.cpp
kurllabel.cpp kmenubar.cpp kinputdialog.cpp
knuminput.cpp klineedit.cpp klistview.cpp kprogress.cpp
kprogressbox.cpp kcolordialog.cpp kselect.cpp kdatepicker.cpp
kdatetbl.cpp kfontrequester.cpp kfontdialog.cpp ktabctl.cpp
kstatusbar.cpp kmainwindow.cpp
knuminput.cpp klineedit.cpp tdelistview.cpp kprogress.cpp
kprogressbox.cpp kcolordialog.cpp tdeselect.cpp kdatepicker.cpp
kdatetbl.cpp tdefontrequester.cpp tdefontdialog.cpp ktabctl.cpp
kstatusbar.cpp tdemainwindow.cpp
keditlistbox.cpp kscrollview.cpp
kseparator.cpp krestrictedline.cpp
kcolorbutton.cpp ksystemtray.cpp
kbuttonbox.cpp keditcl1.cpp keditcl2.cpp kled.cpp
kshortcutdialog_simple.ui kshortcutdialog_advanced.ui
kshortcutdialog.cpp kkeybutton.cpp kkeydialog.cpp
tdeshortcutdialog_simple.ui tdeshortcutdialog_advanced.ui
tdeshortcutdialog.cpp kkeybutton.cpp kkeydialog.cpp
kruler.cpp kcursor.cpp klineeditdlg.cpp
kcharselect.cpp kcolordrag.cpp
knumvalidator.cpp kdialog.cpp kdialogbase.cpp
kjanuswidget.cpp kaboutdialog.cpp
kauthicon.cpp kmessagebox.cpp kdualcolorbutton.cpp
ktoolbarradiogroup.cpp ktoolbarbutton.cpp
tdetoolbarradiogroup.cpp tdetoolbarbutton.cpp
ktextbrowser.cpp khelpmenu.cpp kswitchlanguagedialog.cpp
kcmenumngr.cpp kpanelmenu.cpp
kiconview.cpp klistbox.cpp kwordwrap.cpp kbugreport.cpp
kiconview.cpp tdelistbox.cpp kwordwrap.cpp kbugreport.cpp
kcombobox.cpp kpassdlg.cpp kxmlguiclient.cpp kxmlguifactory.cpp
kxmlguifactory_p.cpp kxmlguibuilder.cpp kedittoolbar.cpp
kpanelappmenu.cpp kdockwidget.cpp kdockwidget_private.cpp
@ -130,19 +130,19 @@ set( ${target}_SRCS
kaboutapplication.cpp kpanelapplet.cpp kdcopactionproxy.cpp
kcolorcombo.cpp kpushbutton.cpp kpanelextension.cpp
kcompletionbox.cpp ksqueezedtextlabel.cpp tdecmodule.cpp
kcommand.cpp twindowlistmenu.cpp kfontcombo.cpp ktip.cpp
kdatewidget.cpp karrowbutton.cpp kmainwindowiface.cpp
kmainwindowiface.skel kguiitem.cpp kstdguiitem.cpp
kcommand.cpp twindowlistmenu.cpp tdefontcombo.cpp ktip.cpp
kdatewidget.cpp karrowbutton.cpp tdemainwindowiface.cpp
tdemainwindowiface.skel kguiitem.cpp kstdguiitem.cpp
kstringvalidator.cpp kactivelabel.cpp
twindowinfo.cpp ktextedit.cpp kwizard.cpp kpassivepopup.cpp
ktoolbarhandler.cpp kdatetimewidget.cpp ktimewidget.cpp ktimezonewidget.cpp
tdetoolbarhandler.cpp kdatetimewidget.cpp ktimewidget.cpp ktimezonewidget.cpp
ksconfig.cpp tdespelldlg.cpp
tdespell.cpp ksyntaxhighlighter.cpp ktabbar.cpp ktabwidget.cpp
ksplashscreen.cpp tdespellui.ui tdeconfigdialog.cpp
kactionselector.cpp klanguagebutton.cpp klistviewsearchline.cpp
tdeactionselector.cpp klanguagebutton.cpp tdelistviewsearchline.cpp
kpixmapregionselectorwidget.cpp kpixmapregionselectordialog.cpp
kwhatsthismanager.cpp kiconviewsearchline.cpp
ktoolbarlabelaction.cpp
tdetoolbarlabelaction.cpp
)
tde_add_library( ${target} SHARED AUTOMOC

@ -8,7 +8,7 @@ more logical grouping.
kaboutapplication.cpp
kaboutdialog.cpp
kaboutkde.cpp
kaction.cpp Holger Freyther <freyther@kde.org>, Martijn Klingens <klingens@kde.org>
tdeaction.cpp Holger Freyther <freyther@kde.org>, Martijn Klingens <klingens@kde.org>
kanimwidget.cpp Waldo Bastian <bastian@kde.org>
karrowbutton.cpp Frerich Raabe <raabe@kde.org>
kauthicon.cpp
@ -39,8 +39,8 @@ keditcl1.cpp Waldo Bastian <bastian@kde.org>
keditcl2.cpp Waldo Bastian <bastian@kde.org>
keditlistbox.cpp
kedittoolbar.cpp
kfontcombo.cpp
kfontdialog.cpp
tdefontcombo.cpp
tdefontdialog.cpp
kguiitem.cpp Holger Freyther <freyther@kde.org>, Martijn Klingens <klingens@kde.org>
khelpmenu.cpp
kiconview.cpp
@ -50,10 +50,10 @@ kkeydialog.cpp Ellis Whitehead <ellis@kde.org>
kled.cpp
klineedit.cpp Dawit Alemayehu <adawit@kde.org>, Carsten Pfeiffer <pfeiffer@kde.org>
klineeditdlg.cpp
klistbox.cpp
klistview.cpp
kmainwindow.cpp
kmainwindowiface.cpp
tdelistbox.cpp
tdelistview.cpp
tdemainwindow.cpp
tdemainwindowiface.cpp
kmenubar.cpp
kmessagebox.cpp Waldo Bastian <bastian@kde.org>
knuminput.cpp Dirk Mueller <mueller@kde.org>
@ -64,16 +64,16 @@ kpanelextension.cpp
kpanelmenu.cpp
kpassdlg.cpp Waldo Bastian <bastian@kde.org>
kpixmapio.cpp
kpopupmenu.cpp Holger Freyther <freyther@kde.org>
tdepopupmenu.cpp Holger Freyther <freyther@kde.org>
kprogress.cpp
kpushbutton.cpp Carsten Pfeiffer <pfeiffer@kde.org>, Martijn Klingens <klingens@kde.org>
krestrictedline.cpp
krootpixmap.cpp
kruler.cpp
kselect.cpp
tdeselect.cpp
kseparator.cpp Waldo Bastian <bastian@kde.org>
ksharedpixmap.cpp
kshortcutdialog.cpp Ellis Whitehead <ellis@kde.org>
tdeshortcutdialog.cpp Ellis Whitehead <ellis@kde.org>
ksqueezedtextlabel.cpp
kstatusbar.cpp
kstdaction.cpp
@ -84,9 +84,9 @@ ktabctl.cpp
ktextbrowser.cpp
ktimewidget Hans Petter Bieker <bieker@kde.org>
ktip.cpp
ktoolbar.cpp Waldo Bastian <bastian@kde.org>
ktoolbarbutton.cpp Waldo Bastian <bastian@kde.org>
ktoolbarradiogroup.cpp
tdetoolbar.cpp Waldo Bastian <bastian@kde.org>
tdetoolbarbutton.cpp Waldo Bastian <bastian@kde.org>
tdetoolbarradiogroup.cpp
kurllabel.cpp
twindowlistmenu.cpp
kwizard.cpp

@ -37,10 +37,10 @@ picsdir = $(kde_datadir)/tdeui/pics
pics_DATA = aboutkde.png ktip-bulb.png ktip-background.png
include_HEADERS = kprogressbox.h kprogress.h kcolordlg.h \
kcolordialog.h kselect.h \
kdatepik.h kdatepicker.h kdatetbl.h kfontdialog.h kpopupmenu.h \
kfontrequester.h ktabctl.h kstatusbar.h \
kmainwindow.h kmainwindowiface.h ktoolbar.h kmenubar.h \
kcolordialog.h tdeselect.h \
kdatepik.h kdatepicker.h kdatetbl.h tdefontdialog.h tdepopupmenu.h \
tdefontrequester.h ktabctl.h kstatusbar.h \
tdemainwindow.h tdemainwindowiface.h tdetoolbar.h kmenubar.h \
knuminput.h kseparator.h klineedit.h \
krestrictedline.h kcolorbutton.h kcolorbtn.h \
ksystemtray.h kdockwindow.h kbuttonbox.h \
@ -52,28 +52,28 @@ include_HEADERS = kprogressbox.h kprogress.h kcolordlg.h \
knumvalidator.h kdialog.h kdialogbase.h \
kjanuswidget.h kaboutdialog.h \
kauthicon.h kmessagebox.h ksharedpixmap.h \
kdualcolorbtn.h kdualcolorbutton.h ktoolbarbutton.h \
ktoolbarradiogroup.h ktextbrowser.h \
kaction.h kactioncollection.h kactionclasses.h khelpmenu.h kswitchlanguagedialog.h \
kdualcolorbtn.h kdualcolorbutton.h tdetoolbarbutton.h \
tdetoolbarradiogroup.h ktextbrowser.h \
tdeaction.h tdeactioncollection.h tdeactionclasses.h khelpmenu.h kswitchlanguagedialog.h \
tdecmodule.h kcmenumngr.h kpanelmenu.h kpanelappmenu.h \
kactionshortcutlist.h kstdaction.h kcombobox.h \
kiconview.h klistview.h klistbox.h kbugreport.h kpassdlg.h \
tdeactionshortcutlist.h kstdaction.h kcombobox.h \
kiconview.h tdelistview.h tdelistbox.h kbugreport.h kpassdlg.h \
kxmlguiclient.h kxmlgui.h kxmlguibuilder.h kxmlguifactory.h \
kpixmapio.h kwordwrap.h \
kedittoolbar.h kdockwidget.h kanimwidget.h \
krootpixmap.h kaboutkde.h kaboutapplication.h \
kpanelapplet.h kpushbutton.h kdcopactionproxy.h kcolorcombo.h \
kpanelextension.h kcompletionbox.h ksqueezedtextlabel.h \
kcommand.h twindowlistmenu.h kfontcombo.h kaccelgen.h ktip.h \
kcommand.h twindowlistmenu.h tdefontcombo.h tdeaccelgen.h ktip.h \
kdatewidget.h karrowbutton.h kguiitem.h kstdguiitem.h \
kstringvalidator.h twindowinfo.h \
ktextedit.h kpassivepopup.h \
kdatetimewidget.h ktimewidget.h ktimezonewidget.h kscrollview.h \
tdespell.h ksconfig.h tdespelldlg.h ksyntaxhighlighter.h \
ktabbar.h ktabwidget.h ksplashscreen.h tdeconfigdialog.h \
kactionselector.h klanguagebutton.h klistviewsearchline.h \
tdeactionselector.h klanguagebutton.h tdelistviewsearchline.h \
kpixmapregionselectorwidget.h kpixmapregionselectordialog.h \
kiconviewsearchline.h ktoolbarlabelaction.h kshortcutdialog.h
kiconviewsearchline.h tdetoolbarlabelaction.h tdeshortcutdialog.h
# the order of the sources isn't randomly (at least not completely).
# the order is predictated by the use of X11 header files
@ -82,28 +82,28 @@ include_HEADERS = kprogressbox.h kprogress.h kcolordlg.h \
# in ksharedpixmap.cpp
libtdeui_la_SOURCES = \
qxembed.cpp ksharedpixmap.cpp kpixmapio.cpp \
kpopupmenu.cpp ktoolbar.cpp kaction.cpp kstdaction.cpp \
kactioncollection.cpp kactionclasses.cpp \
tdepopupmenu.cpp tdetoolbar.cpp tdeaction.cpp kstdaction.cpp \
tdeactioncollection.cpp tdeactionclasses.cpp \
kurllabel.cpp kmenubar.cpp kinputdialog.cpp \
knuminput.cpp klineedit.cpp klistview.cpp kprogress.cpp \
kprogressbox.cpp kcolordialog.cpp kselect.cpp kdatepicker.cpp \
kdatetbl.cpp kfontrequester.cpp kfontdialog.cpp ktabctl.cpp \
kstatusbar.cpp kmainwindow.cpp \
knuminput.cpp klineedit.cpp tdelistview.cpp kprogress.cpp \
kprogressbox.cpp kcolordialog.cpp tdeselect.cpp kdatepicker.cpp \
kdatetbl.cpp tdefontrequester.cpp tdefontdialog.cpp ktabctl.cpp \
kstatusbar.cpp tdemainwindow.cpp \
keditlistbox.cpp kscrollview.cpp \
kseparator.cpp krestrictedline.cpp \
kcolorbutton.cpp ksystemtray.cpp \
kbuttonbox.cpp keditcl1.cpp keditcl2.cpp kled.cpp \
kshortcutdialog_simple.ui kshortcutdialog_advanced.ui \
kshortcutdialog.cpp kkeybutton.cpp kkeydialog.cpp \
tdeshortcutdialog_simple.ui tdeshortcutdialog_advanced.ui \
tdeshortcutdialog.cpp kkeybutton.cpp kkeydialog.cpp \
kruler.cpp kcursor.cpp klineeditdlg.cpp \
kcharselect.cpp kcolordrag.cpp \
knumvalidator.cpp kdialog.cpp kdialogbase.cpp \
kjanuswidget.cpp kaboutdialog.cpp \
kauthicon.cpp kmessagebox.cpp kdualcolorbutton.cpp \
ktoolbarradiogroup.cpp ktoolbarbutton.cpp \
tdetoolbarradiogroup.cpp tdetoolbarbutton.cpp \
ktextbrowser.cpp khelpmenu.cpp kswitchlanguagedialog.cpp \
kcmenumngr.cpp kpanelmenu.cpp \
kiconview.cpp klistbox.cpp kwordwrap.cpp kbugreport.cpp \
kiconview.cpp tdelistbox.cpp kwordwrap.cpp kbugreport.cpp \
kcombobox.cpp kpassdlg.cpp kxmlguiclient.cpp kxmlguifactory.cpp \
kxmlguifactory_p.cpp kxmlguibuilder.cpp kedittoolbar.cpp \
kpanelappmenu.cpp kdockwidget.cpp kdockwidget_private.cpp \
@ -111,21 +111,21 @@ libtdeui_la_SOURCES = \
kaboutapplication.cpp kpanelapplet.cpp kdcopactionproxy.cpp \
kcolorcombo.cpp kpushbutton.cpp kpanelextension.cpp \
kcompletionbox.cpp ksqueezedtextlabel.cpp tdecmodule.cpp \
kcommand.cpp twindowlistmenu.cpp kfontcombo.cpp ktip.cpp \
kdatewidget.cpp karrowbutton.cpp kmainwindowiface.cpp \
kmainwindowiface.skel kguiitem.cpp kstdguiitem.cpp \
kcommand.cpp twindowlistmenu.cpp tdefontcombo.cpp ktip.cpp \
kdatewidget.cpp karrowbutton.cpp tdemainwindowiface.cpp \
tdemainwindowiface.skel kguiitem.cpp kstdguiitem.cpp \
kstringvalidator.cpp kactivelabel.cpp \
twindowinfo.cpp ktextedit.cpp kwizard.cpp kpassivepopup.cpp \
ktoolbarhandler.cpp kdatetimewidget.cpp ktimewidget.cpp ktimezonewidget.cpp \
tdetoolbarhandler.cpp kdatetimewidget.cpp ktimewidget.cpp ktimezonewidget.cpp \
ksconfig.cpp tdespelldlg.cpp \
tdespell.cpp ksyntaxhighlighter.cpp ktabbar.cpp ktabwidget.cpp \
ksplashscreen.cpp tdespellui.ui tdeconfigdialog.cpp \
kactionselector.cpp klanguagebutton.cpp klistviewsearchline.cpp \
tdeactionselector.cpp klanguagebutton.cpp tdelistviewsearchline.cpp \
kpixmapregionselectorwidget.cpp kpixmapregionselectordialog.cpp \
kwhatsthismanager.cpp kiconviewsearchline.cpp \
ktoolbarlabelaction.cpp
tdetoolbarlabelaction.cpp
noinst_HEADERS = kdockwidget_private.h kdockwidget_p.h klistviewlineedit.h \
noinst_HEADERS = kdockwidget_private.h kdockwidget_p.h tdelistviewlineedit.h \
kdialogbase_priv.h kaboutdialog_private.h kcursor_private.h \
kdepackages.h kxmlguifactory_p.h \
kstdaction_p.h kwhatsthismanager_p.h

@ -22,7 +22,7 @@
#include <tqtimer.h>
#include <tqpainter.h>
#include <tqimage.h>
#include <ktoolbar.h>
#include <tdetoolbar.h>
#include <kdebug.h>
#include <kiconloader.h>

@ -23,7 +23,7 @@
#include "kcmenumngr.h"
#include "kglobal.h"
#include "tdeconfig.h"
#include "kshortcut.h"
#include "tdeshortcut.h"
#undef KeyPress
#undef None

@ -26,7 +26,7 @@
#include <tqclipboard.h>
#include <tqstyle.h>
#include <kglobalsettings.h>
#include <kstdaccel.h>
#include <tdestdaccel.h>
#include "kcolordialog.h"
#include "kcolorbutton.h"
#include "kcolordrag.h"

@ -49,7 +49,7 @@
#include <kglobal.h>
#include <kglobalsettings.h>
#include <kiconloader.h>
#include <klistbox.h>
#include <tdelistbox.h>
#include <klocale.h>
#include <kmessagebox.h>
#include <kseparator.h>

@ -28,7 +28,7 @@
#include <tqcombobox.h>
#include <kcolordialog.h>
#include "kselect.h"
#include "tdeselect.h"
class KColorComboInternal;

@ -51,7 +51,7 @@
#include <kglobalsettings.h>
#include <kiconloader.h>
#include <klineedit.h>
#include <klistbox.h>
#include <tdelistbox.h>
#include <klocale.h>
#include <kmessagebox.h>
#include <kseparator.h>

@ -35,7 +35,7 @@
#include <tqpixmap.h>
#include <tqgridview.h>
#include "kselect.h"
#include "tdeselect.h"
class TQComboBox;
class TQLineEdit;

@ -29,12 +29,12 @@
#include <kcursor.h>
#include <kiconloader.h>
#include <kicontheme.h>
#include <klistviewsearchline.h>
#include <tdelistviewsearchline.h>
#include <klineedit.h>
#include <klocale.h>
#include <knotifyclient.h>
#include <kpixmapprovider.h>
#include <kstdaccel.h>
#include <tdestdaccel.h>
#include <kurl.h>
#include <kurldrag.h>

@ -32,7 +32,7 @@
#include <kcompletion.h>
#include <kdialogbase.h>
#include <klistview.h>
#include <tdelistview.h>
class TQListBoxItem;
class TQPopupMenu;

@ -19,12 +19,12 @@
*/
#include "kcommand.h"
#include <kaction.h>
#include <kstdaccel.h>
#include <tdeaction.h>
#include <tdestdaccel.h>
#include <kstdaction.h>
#include <kdebug.h>
#include <klocale.h>
#include <kpopupmenu.h>
#include <tdepopupmenu.h>
KCommand::~KCommand()
{

@ -25,7 +25,7 @@
class TQEvent;
#include <tqstringlist.h>
#include <klistbox.h>
#include <tdelistbox.h>
/**
* @short A helper widget for "completion-widgets" (KLineEdit, KComboBox))

@ -37,7 +37,7 @@
#include <kdialog.h>
#include <klocale.h>
#include <kiconloader.h>
#include <ktoolbar.h>
#include <tdetoolbar.h>
#include <klineedit.h>
#include <kdebug.h>
#include <knotifyclient.h>

@ -36,16 +36,16 @@
#include <kglobal.h>
#include <kglobalsettings.h>
#include <kapplication.h>
#include <kaccel.h>
#include <tdeaccel.h>
#include <klocale.h>
#include <kdebug.h>
#include <knotifyclient.h>
#include <kcalendarsystem.h>
#include <kshortcut.h>
#include <kstdaccel.h>
#include <tdeshortcut.h>
#include <tdestdaccel.h>
#include "kdatepicker.h"
#include "kdatetbl.h"
#include "kpopupmenu.h"
#include "tdepopupmenu.h"
#include <tqdatetime.h>
#include <tqguardedptr.h>
#include <tqstring.h>

@ -21,7 +21,7 @@
#include <dcopclient.h>
#include <kapplication.h>
#include <kaction.h>
#include <tdeaction.h>
#include <kdebug.h>
#include <kdcoppropertyproxy.h>

@ -693,7 +693,7 @@ const char * const packages[] = {
"tdeio/zeroconf",
"tdeio/zip",
"kiosk",
"kiosk/tdeiosktool",
"kiosk/kiosktool",
"kipiplugins",
"kipiplugins/GPSSync",
"kipiplugins/HTMLExport",

@ -36,8 +36,8 @@
#include <tdeconfig.h>
#include <kglobal.h>
#include <klocale.h>
#include <ktoolbar.h>
#include <kpopupmenu.h>
#include <tdetoolbar.h>
#include <tdepopupmenu.h>
#include <twin.h>
#include <kdebug.h>
#include <kglobalsettings.h>

@ -55,13 +55,13 @@
#include <tqtabwidget.h>
#ifndef NO_KDE2
#include <kmainwindow.h>
#include <tdemainwindow.h>
#include <netwm_def.h>
#else
#include <tqmainwindow.h>
#include "exportdockclass.h"
#include "dummykmainwindow.h"
#include "dummytdemainwindow.h"
#endif
class KDockSplitter;

@ -28,10 +28,10 @@
#include <kcursor.h>
#include <kdebug.h>
#include <kcmenumngr.h>
#include <kfontdialog.h>
#include <tdefontdialog.h>
#include <klocale.h>
#include <kmessagebox.h>
#include <kstdaccel.h>
#include <tdestdaccel.h>
#include <kurldrag.h>
#include "keditcl.h"

@ -31,7 +31,7 @@
#include <tqapplication.h>
#include <tqtextstream.h>
#include <kaction.h>
#include <tdeaction.h>
#include <kstandarddirs.h>
#include <klocale.h>
#include <kicontheme.h>
@ -41,7 +41,7 @@
#include <kxmlguifactory.h>
#include <kseparator.h>
#include <tdeconfig.h>
#include <klistview.h>
#include <tdelistview.h>
#include <kdebug.h>
#include <kpushbutton.h>
#include <kprocio.h>

@ -30,7 +30,7 @@
#include <kaboutapplication.h>
#include <kaboutdata.h>
#include <kaboutkde.h>
#include <kaction.h>
#include <tdeaction.h>
#include <kapplication.h>
#include <kbugreport.h>
#include <kdialogbase.h>
@ -38,8 +38,8 @@
#include <kiconloader.h>
#include <klocale.h>
#include <kmessagebox.h>
#include <kpopupmenu.h>
#include <kstdaccel.h>
#include <tdepopupmenu.h>
#include <tdestdaccel.h>
#include <kstdaction.h>
#include <kstandarddirs.h>

@ -20,7 +20,7 @@
/**
* \todo
* Maybe we should have a common interface for SearchLines, this file
* is so close (it's actually based on) klistviewsearchline! Only few methods
* is so close (it's actually based on) tdelistviewsearchline! Only few methods
* would be reimplemented.
*/

@ -29,7 +29,7 @@
#include <klineedit.h>
#include <knuminput.h>
#include <kcombobox.h>
#include <klistbox.h>
#include <tdelistbox.h>
#include <ktextedit.h>
#include "kinputdialog.h"

@ -41,7 +41,7 @@
#include <kseparator.h>
#include <kdebug.h>
#include "kjanuswidget.h"
#include <klistview.h>
#include <tdelistview.h>
#include "kpushbutton.h"
#include "kguiitem.h"

@ -24,7 +24,7 @@
#include <tqpixmap.h>
#include <tqsplitter.h>
#include <klistbox.h>
#include <tdelistbox.h>
#include <tqstringlist.h>
#include <tqmap.h>

@ -19,7 +19,7 @@
*/
#include "kkeybutton.h"
#include "kshortcutdialog.h"
#include "tdeshortcutdialog.h"
#include <tqcursor.h>
#include <tqdrawutil.h>

@ -21,7 +21,7 @@
#define _KKEYBUTTON_H_
#include <tqpushbutton.h>
#include <kshortcut.h>
#include <tdeshortcut.h>
/**
* @short A push button that looks like a keyboard key.

@ -35,21 +35,21 @@
#include <tqtoolbutton.h>
#include <tqwhatsthis.h>
#include <kaccel.h>
#include <kaction.h>
#include <kaccelaction.h>
#include <kactionshortcutlist.h>
#include <tdeaccel.h>
#include <tdeaction.h>
#include <tdeaccelaction.h>
#include <tdeactionshortcutlist.h>
#include <kapplication.h>
#include <tdeconfig.h>
#include <kdebug.h>
#include <kglobal.h>
#include <kglobalaccel.h>
#include <kiconloader.h>
#include <klistviewsearchline.h>
#include <tdelistviewsearchline.h>
#include <klocale.h>
#include <kmessagebox.h>
#include <kshortcut.h>
#include <kshortcutlist.h>
#include <tdeshortcut.h>
#include <tdeshortcutlist.h>
#include <kxmlguifactory.h>
#include <kaboutdata.h>
#include <kstaticdeleter.h>

@ -23,7 +23,7 @@
#include <tqdict.h>
#include <kdialogbase.h>
#include <klistview.h>
#include <tdelistview.h>
class TQButtonGroup;
class TQCheckBox;

@ -33,8 +33,8 @@
#include <tqtooltip.h>
#include <kcursor.h>
#include <klocale.h>
#include <kstdaccel.h>
#include <kpopupmenu.h>
#include <tdestdaccel.h>
#include <tdepopupmenu.h>
#include <kdebug.h>
#include <kcompletionbox.h>
#include <kurl.h>

@ -36,7 +36,7 @@
#include <kdebug.h>
#include <kdialogbase.h>
#include <kguiitem.h>
#include <klistbox.h>
#include <tdelistbox.h>
#include <klocale.h>
#include <kmessagebox.h>
#include <knotifyclient.h>

@ -28,7 +28,7 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#include "kpanelmenu.h"
#include "kpanelmenu.moc"
//#include "kaccelmanager.h"
//#include "tdeaccelmanager.h"
class KPanelMenuPrivate

@ -26,7 +26,7 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#define __KPANELMENU_H__
#include <tqstring.h>
#include <kpopupmenu.h>
#include <tdepopupmenu.h>
#include <kgenericfactory.h>
class KPanelMenuPrivate;

@ -31,8 +31,8 @@
#include <kimageeffect.h>
#include <kdebug.h>
#include <klocale.h>
#include <kpopupmenu.h>
#include <kaction.h>
#include <tdepopupmenu.h>
#include <tdeaction.h>
#include <stdlib.h>
#include <tqcursor.h>
#include <tqapplication.h>

@ -22,14 +22,14 @@
#include <tqwhatsthis.h>
#include <kaboutdata.h>
#include <kaction.h>
#include <tdeaction.h>
#include <kapplication.h>
#include <kdebug.h>
#include <kglobal.h>
#include <kiconloader.h>
#include <klocale.h>
#include <kstdaccel.h>
#include <kmainwindow.h>
#include <tdestdaccel.h>
#include <tdemainwindow.h>
#include "kstdaction_p.h"
namespace KStdAction

@ -20,7 +20,7 @@
#define _KSTDACTION_PRIVATE_H_
#include <klocale.h>
#include <kstdaccel.h>
#include <tdestdaccel.h>
namespace KStdAction
{

@ -19,11 +19,11 @@
*/
#include "config.h"
#include "kaction.h"
#include "tdeaction.h"
#include "kmessagebox.h"
#include "kshortcut.h"
#include "tdeshortcut.h"
#include "ksystemtray.h"
#include "kpopupmenu.h"
#include "tdepopupmenu.h"
#include "kapplication.h"
#include "klocale.h"
#include "kaboutdata.h"

@ -27,7 +27,7 @@
#include <tdespell.h>
#include <kcursor.h>
#include <kglobalsettings.h>
#include <kstdaccel.h>
#include <tdestdaccel.h>
#include <kiconloader.h>
#include <klocale.h>

@ -20,7 +20,7 @@
#include <kdialog.h>
#include <kdebug.h>
#include <tdefile.h>
#include <klistview.h>
#include <tdelistview.h>
#include <klocale.h>
#include <kstandarddirs.h>
#include <ktimezones.h>

@ -21,7 +21,7 @@
#define KTIMEZONEWIDGET_H
#include <tdelibs_export.h>
#include <klistview.h>
#include <tdelistview.h>
#include <tqstring.h>
class KTimezone;

@ -21,11 +21,11 @@
#include "kapplication.h"
#include "kxmlguibuilder.h"
#include "kmenubar.h"
#include "kpopupmenu.h"
#include "ktoolbar.h"
#include "tdepopupmenu.h"
#include "tdetoolbar.h"
#include "kstatusbar.h"
#include "kmainwindow.h"
#include "kaction.h"
#include "tdemainwindow.h"
#include "tdeaction.h"
#include "kglobalsettings.h"
#include <klocale.h>
#include <kiconloader.h>
@ -139,7 +139,7 @@ TQWidget *KXMLGUIBuilder::createContainer( TQWidget *parent, int index, const TQ
if ( element.tagName().lower() == d->tagMenu )
{
// Look up to see if we are inside a mainwindow. If yes, then
// use it as parent widget (to get kaction to plug itself into the
// use it as parent widget (to get tdeaction to plug itself into the
// mainwindow). Don't use a popupmenu as parent widget, otherwise
// the popup won't be hidden if it is used as a standalone menu as well.
// And we don't want to set the parent for a standalone popupmenu,

@ -31,7 +31,7 @@
#include <kinstance.h>
#include <kstandarddirs.h>
#include <kdebug.h>
#include <kaction.h>
#include <tdeaction.h>
#include <kapplication.h>
#include <assert.h>

@ -32,11 +32,11 @@
#include <tqdatetime.h>
#include <tqvariant.h>
#include <kaction.h>
#include <tdeaction.h>
#include <kdebug.h>
#include <kinstance.h>
#include <kglobal.h>
#include <kshortcut.h>
#include <tdeshortcut.h>
#include <kstandarddirs.h>
#include <kkeydialog.h>

@ -24,7 +24,7 @@
#include <tqdom.h>
#include <tqvaluestack.h>
#include <kaction.h>
#include <tdeaction.h>
class TQWidget;
class KXMLGUIClient;

@ -23,24 +23,24 @@
Boston, MA 02110-1301, USA.
*/
#include "kaction.h"
#include "tdeaction.h"
#include <assert.h>
#include <tqtooltip.h>
#include <tqwhatsthis.h>
#include <kaccel.h>
#include <kaccelbase.h>
#include <kaccelprivate.h>
#include <tdeaccel.h>
#include <tdeaccelbase.h>
#include <tdeaccelprivate.h>
#include <kapplication.h>
#include <kdebug.h>
#include <kguiitem.h>
#include <kmainwindow.h>
#include <tdemainwindow.h>
#include <kmenubar.h>
#include <kpopupmenu.h>
#include <ktoolbar.h>
#include <ktoolbarbutton.h>
#include <tdepopupmenu.h>
#include <tdetoolbar.h>
#include <tdetoolbarbutton.h>
#include <ft2build.h>
#include <X11/Xdefs.h>
@ -88,12 +88,12 @@ class TDEAction::TDEActionPrivate : public KGuiItem
public:
TDEActionPrivate() : KGuiItem()
{
m_kaccel = 0;
m_tdeaccel = 0;
m_configurable = true;
}
TDEAccel *m_kaccel;
TQValueList<TDEAccel*> m_kaccelList;
TDEAccel *m_tdeaccel;
TQValueList<TDEAccel*> m_tdeaccelList;
TQString m_groupText;
TQString m_group;
@ -223,7 +223,7 @@ TDEAction::~TDEAction()
{
kdDebug(129) << "TDEAction::~TDEAction( this = \"" << name() << "\" )" << endl; // -- ellis
#ifndef KDE_NO_COMPAT
if (d->m_kaccel)
if (d->m_tdeaccel)
unplugAccel();
#endif
@ -231,7 +231,7 @@ TDEAction::~TDEAction()
if ( m_parentCollection ) {
m_parentCollection->take( this );
const TQValueList<TDEAccel*> & accelList = d->m_kaccelList;
const TQValueList<TDEAccel*> & accelList = d->m_tdeaccelList;
TQValueList<TDEAccel*>::const_iterator itr = accelList.constBegin();
const TQValueList<TDEAccel*>::const_iterator itrEnd = accelList.constEnd();
@ -272,7 +272,7 @@ void TDEAction::initPrivate( const TQString& text, const TDEShortcut& cut,
bool TDEAction::isPlugged() const
{
return (!d->m_containers.empty()) || d->m_kaccel;
return (!d->m_containers.empty()) || d->m_tdeaccel;
}
bool TDEAction::isPlugged( const TQWidget *container ) const
@ -353,7 +353,7 @@ shortcut may be set:
On Construction: [via initShortcut()]
insert into TDEAccel of m_parentCollection,
if kaccel() && isAutoConnectShortcuts() exists
if tdeaccel() && isAutoConnectShortcuts() exists
On Plug: [via plug() -> plugShortcut()]
insert into TDEAccel of m_parentCollection, if exists and not already inserted into
@ -363,12 +363,12 @@ On Read XML: [via setShortcut()]
insert into TDEAccel of m_parentCollection, if exists and not already inserted into
*/
TDEAccel* TDEAction::kaccelCurrent()
TDEAccel* TDEAction::tdeaccelCurrent()
{
if( m_parentCollection && m_parentCollection->builderTDEAccel() )
return m_parentCollection->builderTDEAccel();
else if( m_parentCollection && m_parentCollection->kaccel() )
return m_parentCollection->kaccel();
else if( m_parentCollection && m_parentCollection->tdeaccel() )
return m_parentCollection->tdeaccel();
else
return 0L;
}
@ -382,9 +382,9 @@ bool TDEAction::initShortcut( const TDEShortcut& cut )
if( qstrcmp( name(), "unnamed" ) &&
m_parentCollection &&
m_parentCollection->isAutoConnectShortcuts() &&
m_parentCollection->kaccel() )
m_parentCollection->tdeaccel() )
{
insertTDEAccel( m_parentCollection->kaccel() );
insertTDEAccel( m_parentCollection->tdeaccel() );
return true;
}
return false;
@ -393,21 +393,21 @@ bool TDEAction::initShortcut( const TDEShortcut& cut )
// Only to be called from plug()
void TDEAction::plugShortcut()
{
TDEAccel* const kaccel = kaccelCurrent();
TDEAccel* const tdeaccel = tdeaccelCurrent();
//kdDebug(129) << "TDEAction::plugShortcut(): this = " << this << " kaccel() = " << (m_parentCollection ? m_parentCollection->kaccel() : 0) << endl;
if( kaccel && qstrcmp( name(), "unnamed" ) ) {
//kdDebug(129) << "TDEAction::plugShortcut(): this = " << this << " tdeaccel() = " << (m_parentCollection ? m_parentCollection->tdeaccel() : 0) << endl;
if( tdeaccel && qstrcmp( name(), "unnamed" ) ) {
// Check if already plugged into current TDEAccel object
const TQValueList<TDEAccel*> & accelList = d->m_kaccelList;
const TQValueList<TDEAccel*> & accelList = d->m_tdeaccelList;
TQValueList<TDEAccel*>::const_iterator itr = accelList.constBegin();
const TQValueList<TDEAccel*>::const_iterator itrEnd = accelList.constEnd();
for( ; itr != itrEnd; ++itr) {
if( (*itr) == kaccel )
if( (*itr) == tdeaccel )
return;
}
insertTDEAccel( kaccel );
insertTDEAccel( tdeaccel );
}
}
@ -416,31 +416,31 @@ bool TDEAction::setShortcut( const TDEShortcut& cut )
bool bChanged = (d->m_cut != cut);
d->m_cut = cut;
TDEAccel* const kaccel = kaccelCurrent();
TDEAccel* const tdeaccel = tdeaccelCurrent();
bool bInsertRequired = true;
// Apply new shortcut to all existing TDEAccel objects
const TQValueList<TDEAccel*> & accelList = d->m_kaccelList;
const TQValueList<TDEAccel*> & accelList = d->m_tdeaccelList;
TQValueList<TDEAccel*>::const_iterator itr = accelList.constBegin();
const TQValueList<TDEAccel*>::const_iterator itrEnd = accelList.constEnd();
for( ; itr != itrEnd; ++itr) {
// Check whether shortcut has already been plugged into
// the current kaccel object.
if( (*itr) == kaccel )
// the current tdeaccel object.
if( (*itr) == tdeaccel )
bInsertRequired = false;
if( bChanged )
updateTDEAccelShortcut( *itr );
}
// Only insert action into TDEAccel if it has a valid name,
if( kaccel && bInsertRequired && qstrcmp( name(), "unnamed" ) )
insertTDEAccel( kaccel );
if( tdeaccel && bInsertRequired && qstrcmp( name(), "unnamed" ) )
insertTDEAccel( tdeaccel );
if( bChanged ) {
#ifndef KDE_NO_COMPAT // KDE 4: remove
if ( d->m_kaccel )
d->m_kaccel->setShortcut( name(), cut );
if ( d->m_tdeaccel )
d->m_tdeaccel->setShortcut( name(), cut );
#endif // KDE 4: remove end
int len = containerCount();
for( int i = 0; i < len; ++i )
@ -449,7 +449,7 @@ bool TDEAction::setShortcut( const TDEShortcut& cut )
return true;
}
bool TDEAction::updateTDEAccelShortcut( TDEAccel* kaccel )
bool TDEAction::updateTDEAccelShortcut( TDEAccel* tdeaccel )
{
// Check if action is permitted
if (kapp && !kapp->authorizeTDEAction(name()))
@ -457,46 +457,46 @@ bool TDEAction::updateTDEAccelShortcut( TDEAccel* kaccel )
bool b = true;
if ( !kaccel->actions().actionPtr( name() ) ) {
if ( !tdeaccel->actions().actionPtr( name() ) ) {
if(!d->m_cut.isNull() ) {
kdDebug(129) << "Inserting " << name() << ", " << d->text() << ", " << d->plainText() << endl;
b = kaccel->insert( name(), d->plainText(), TQString::null,
b = tdeaccel->insert( name(), d->plainText(), TQString::null,
d->m_cut,
this, TQT_SLOT(slotActivated()),
isShortcutConfigurable(), isEnabled() );
}
}
else
b = kaccel->setShortcut( name(), d->m_cut );
b = tdeaccel->setShortcut( name(), d->m_cut );
return b;
}
void TDEAction::insertTDEAccel( TDEAccel* kaccel )
void TDEAction::insertTDEAccel( TDEAccel* tdeaccel )
{
//kdDebug(129) << "TDEAction::insertTDEAccel( " << kaccel << " ): this = " << this << endl;
if ( !kaccel->actions().actionPtr( name() ) ) {
if( updateTDEAccelShortcut( kaccel ) ) {
d->m_kaccelList.append( kaccel );
connect( kaccel, TQT_SIGNAL(destroyed()), this, TQT_SLOT(slotDestroyed()) );
//kdDebug(129) << "TDEAction::insertTDEAccel( " << tdeaccel << " ): this = " << this << endl;
if ( !tdeaccel->actions().actionPtr( name() ) ) {
if( updateTDEAccelShortcut( tdeaccel ) ) {
d->m_tdeaccelList.append( tdeaccel );
connect( tdeaccel, TQT_SIGNAL(destroyed()), this, TQT_SLOT(slotDestroyed()) );
}
}
else
kdWarning(129) << "TDEAction::insertTDEAccel( kaccel = " << kaccel << " ): TDEAccel object already contains an action name \"" << name() << "\"" << endl; // -- ellis
kdWarning(129) << "TDEAction::insertTDEAccel( tdeaccel = " << tdeaccel << " ): TDEAccel object already contains an action name \"" << name() << "\"" << endl; // -- ellis
}
void TDEAction::removeTDEAccel( TDEAccel* kaccel )
void TDEAction::removeTDEAccel( TDEAccel* tdeaccel )
{
//kdDebug(129) << "TDEAction::removeTDEAccel( " << i << " ): this = " << this << endl;
TQValueList<TDEAccel*> & accelList = d->m_kaccelList;
TQValueList<TDEAccel*> & accelList = d->m_tdeaccelList;
TQValueList<TDEAccel*>::iterator itr = accelList.begin();
const TQValueList<TDEAccel*>::iterator itrEnd = accelList.end();
for( ; itr != itrEnd; ++itr) {
if( (*itr) == kaccel ) {
kaccel->remove( name() );
if( (*itr) == tdeaccel ) {
tdeaccel->remove( name() );
accelList.remove( itr );
disconnect( kaccel, TQT_SIGNAL(destroyed()), this, TQT_SLOT(slotDestroyed()) );
disconnect( tdeaccel, TQT_SIGNAL(destroyed()), this, TQT_SLOT(slotDestroyed()) );
break;
}
}
@ -525,10 +525,10 @@ void TDEAction::updateShortcut( int i )
void TDEAction::updateShortcut( TQPopupMenu* menu, int id )
{
//kdDebug(129) << "TDEAction::updateShortcut(): this = " << this << " d->m_kaccelList.count() = " << d->m_kaccelList.count() << endl;
//kdDebug(129) << "TDEAction::updateShortcut(): this = " << this << " d->m_tdeaccelList.count() = " << d->m_tdeaccelList.count() << endl;
// If the action has a TDEAccel object,
// show the string representation of its shortcut.
if ( d->m_kaccel || d->m_kaccelList.count() ) {
if ( d->m_tdeaccel || d->m_tdeaccelList.count() ) {
TQString s = menu->text( id );
int i = s.find( '\t' );
if ( i >= 0 )
@ -637,8 +637,8 @@ int TDEAction::plug( TQWidget *w, int index )
// David: Well, it doesn't matter much, things still work (e.g. Undo in koffice) via TQAccel.
// We should probably re-enable the warning for things that only TDEAccel can do, though - e.g. WIN key (mapped to Meta).
#if 0 //ndef NDEBUG
TDEAccel* kaccel = kaccelCurrent();
if( !d->m_cut.isNull() && !kaccel ) {
TDEAccel* tdeaccel = tdeaccelCurrent();
if( !d->m_cut.isNull() && !tdeaccel ) {
kdDebug(129) << "TDEAction::plug(): has no TDEAccel object; this = " << this << " name = " << name() << " parentCollection = " << m_parentCollection << endl; // ellis
}
#endif
@ -654,7 +654,7 @@ int TDEAction::plug( TQWidget *w, int index )
TQPopupMenu* menu = static_cast<TQPopupMenu*>( w );
int id;
// Don't insert shortcut into menu if it's already in a TDEAccel object.
int keyQt = (d->m_kaccelList.count() || d->m_kaccel) ? 0 : d->m_cut.keyCodeQt();
int keyQt = (d->m_tdeaccelList.count() || d->m_tdeaccel) ? 0 : d->m_cut.keyCodeQt();
if ( d->hasIcon() )
{
@ -674,7 +674,7 @@ int TDEAction::plug( TQWidget *w, int index )
// If the shortcut is already in a TDEAccel object, then
// we need to set the menu item's shortcut text.
if ( d->m_kaccelList.count() || d->m_kaccel )
if ( d->m_tdeaccelList.count() || d->m_tdeaccel )
updateShortcut( menu, id );
// call setItemEnabled only if the item really should be disabled,
@ -775,7 +775,7 @@ void TDEAction::plugAccel(TDEAccel *kacc, bool configurable)
kdWarning(129) << "TDEAction::plugAccel(): call to deprecated action." << endl;
kdDebug(129) << kdBacktrace() << endl;
//kdDebug(129) << "TDEAction::plugAccel( kacc = " << kacc << " ): name \"" << name() << "\"" << endl;
if ( d->m_kaccel )
if ( d->m_tdeaccel )
unplugAccel();
// If the parent collection's accel ptr isn't set yet
@ -786,13 +786,13 @@ void TDEAction::plugAccel(TDEAccel *kacc, bool configurable)
// if it does not already contain an action with the same name.
if ( !kacc->actions().actionPtr(name()) )
{
d->m_kaccel = kacc;
d->m_kaccel->insert(name(), d->plainText(), TQString::null,
d->m_tdeaccel = kacc;
d->m_tdeaccel->insert(name(), d->plainText(), TQString::null,
TDEShortcut(d->m_cut),
this, TQT_SLOT(slotActivated()),
configurable, isEnabled());
connect(d->m_kaccel, TQT_SIGNAL(destroyed()), this, TQT_SLOT(slotDestroyed()));
//connect(d->m_kaccel, TQT_SIGNAL(keycodeChanged()), this, TQT_SLOT(slotKeycodeChanged()));
connect(d->m_tdeaccel, TQT_SIGNAL(destroyed()), this, TQT_SLOT(slotDestroyed()));
//connect(d->m_tdeaccel, TQT_SIGNAL(keycodeChanged()), this, TQT_SLOT(slotKeycodeChanged()));
}
else
kdWarning(129) << "TDEAction::plugAccel( kacc = " << kacc << " ): TDEAccel object already contains an action name \"" << name() << "\"" << endl; // -- ellis
@ -801,10 +801,10 @@ void TDEAction::plugAccel(TDEAccel *kacc, bool configurable)
void TDEAction::unplugAccel()
{
//kdDebug(129) << "TDEAction::unplugAccel() " << this << " " << name() << endl;
if ( d->m_kaccel )
if ( d->m_tdeaccel )
{
d->m_kaccel->remove(name());
d->m_kaccel = 0;
d->m_tdeaccel->remove(name());
d->m_tdeaccel = 0;
}
}
@ -816,7 +816,7 @@ void TDEAction::plugMainWindowAccel( TQWidget *w )
while ( !tl->isDialog() && ( n = tl->parentWidget() ) ) // lookup parent and store
tl = n;
TDEMainWindow * mw = tqt_dynamic_cast<TDEMainWindow *>(tl); // try to see if it's a kmainwindow
TDEMainWindow * mw = tqt_dynamic_cast<TDEMainWindow *>(tl); // try to see if it's a tdemainwindow
if (mw)
plugAccel( mw->accel() );
else
@ -825,17 +825,17 @@ void TDEAction::plugMainWindowAccel( TQWidget *w )
void TDEAction::setEnabled(bool enable)
{
//kdDebug(129) << "TDEAction::setEnabled( " << enable << " ): this = " << this << " d->m_kaccelList.count() = " << d->m_kaccelList.count() << endl;
//kdDebug(129) << "TDEAction::setEnabled( " << enable << " ): this = " << this << " d->m_tdeaccelList.count() = " << d->m_tdeaccelList.count() << endl;
if ( enable == d->isEnabled() )
return;
#ifndef KDE_NO_COMPAT
// KDE 4: remove
if (d->m_kaccel)
d->m_kaccel->setEnabled(name(), enable);
if (d->m_tdeaccel)
d->m_tdeaccel->setEnabled(name(), enable);
#endif // KDE 4: remove end
const TQValueList<TDEAccel*> & accelList = d->m_kaccelList;
const TQValueList<TDEAccel*> & accelList = d->m_tdeaccelList;
TQValueList<TDEAccel*>::const_iterator itr = accelList.constBegin();
const TQValueList<TDEAccel*>::const_iterator itrEnd = accelList.constEnd();
@ -874,13 +874,13 @@ void TDEAction::setText( const TQString& text )
{
#ifndef KDE_NO_COMPAT
// KDE 4: remove
if (d->m_kaccel) {
TDEAccelAction* pAction = d->m_kaccel->actions().actionPtr(name());
if (d->m_tdeaccel) {
TDEAccelAction* pAction = d->m_tdeaccel->actions().actionPtr(name());
if (pAction)
pAction->setLabel( text );
}
#endif // KDE 4: remove end
const TQValueList<TDEAccel*> & accelList = d->m_kaccelList;
const TQValueList<TDEAccel*> & accelList = d->m_tdeaccelList;
TQValueList<TDEAccel*>::const_iterator itr = accelList.constBegin();
const TQValueList<TDEAccel*>::const_iterator itrEnd = accelList.constEnd();
@ -1074,9 +1074,9 @@ int TDEAction::containerCount() const
return d->m_containers.count();
}
uint TDEAction::kaccelCount() const
uint TDEAction::tdeaccelCount() const
{
return d->m_kaccelList.count();
return d->m_tdeaccelList.count();
}
void TDEAction::addContainer( TQWidget* c, int id )
@ -1164,13 +1164,13 @@ void TDEAction::slotDestroyed()
const TQObject* const o = TQT_TQOBJECT_CONST(sender());
#ifndef KDE_NO_COMPAT // KDE 4: remove
if ( o == d->m_kaccel )
if ( o == d->m_tdeaccel )
{
d->m_kaccel = 0;
d->m_tdeaccel = 0;
return;
}
#endif // KDE 4: remove end
TQValueList<TDEAccel*> & accelList = d->m_kaccelList;
TQValueList<TDEAccel*> & accelList = d->m_tdeaccelList;
TQValueList<TDEAccel*>::iterator itr = accelList.begin();
const TQValueList<TDEAccel*>::iterator itrEnd = accelList.end();
@ -1258,7 +1258,7 @@ void TDEAction::removeContainer( int index )
void TDEAction::slotKeycodeChanged()
{
kdDebug(129) << "TDEAction::slotKeycodeChanged()" << endl; // -- ellis
TDEAccelAction* pAction = d->m_kaccel->actions().actionPtr(name());
TDEAccelAction* pAction = d->m_tdeaccel->actions().actionPtr(name());
if( pAction )
setShortcut(pAction->shortcut());
}
@ -1285,4 +1285,4 @@ void TDEAction::virtual_hook( int, void* )
/* vim: et sw=2 ts=2
*/
#include "kaction.moc"
#include "tdeaction.moc"

@ -23,15 +23,15 @@
*/
//$Id$
#ifndef __kaction_h__
#define __kaction_h__
#ifndef __tdeaction_h__
#define __tdeaction_h__
#include <tqkeysequence.h>
#include <tqobject.h>
#include <tqvaluelist.h>
#include <tqguardedptr.h>
#include <kguiitem.h>
#include <kshortcut.h>
#include <tdeshortcut.h>
#include <kstdaction.h>
#include <kicontheme.h>
@ -414,7 +414,7 @@ public:
TQWidget* representative( int index ) const;
int containerCount() const;
/// @since 3.1
uint kaccelCount() const;
uint tdeaccelCount() const;
virtual bool hasIcon() const;
#ifndef KDE_NO_COMPAT
@ -626,10 +626,10 @@ signals:
private:
void initPrivate( const TQString& text, const TDEShortcut& cut,
const TQObject* receiver, const char* slot );
TDEAccel* kaccelCurrent();
TDEAccel* tdeaccelCurrent();
bool initShortcut( const TDEShortcut& );
void plugShortcut();
bool updateTDEAccelShortcut( TDEAccel* kaccel );
bool updateTDEAccelShortcut( TDEAccel* tdeaccel );
void insertTDEAccel( TDEAccel* );
/** @internal To be used exclusively by TDEActionCollection::removeWidget(). */
void removeTDEAccel( TDEAccel* );
@ -670,7 +670,7 @@ private:
TDEActionPrivate* const d;
};
#include <kactioncollection.h>
#include <kactionclasses.h>
#include <tdeactioncollection.h>
#include <tdeactionclasses.h>
#endif

@ -24,7 +24,7 @@
Boston, MA 02110-1301, USA.
*/
#include "kactionclasses.h"
#include "tdeactionclasses.h"
#include <assert.h>
#include <ft2build.h>
@ -41,18 +41,18 @@
#include <dcopclient.h>
#include <dcopref.h>
#include <kaccel.h>
#include <tdeaccel.h>
#include <kapplication.h>
#include <tdeconfig.h>
#include <kdebug.h>
#include <kfontcombo.h>
#include <kfontdialog.h>
#include <tdefontcombo.h>
#include <tdefontdialog.h>
#include <klocale.h>
#include <kmainwindow.h>
#include <tdemainwindow.h>
#include <kmenubar.h>
#include <kpopupmenu.h>
#include <ktoolbar.h>
#include <ktoolbarbutton.h>
#include <tdepopupmenu.h>
#include <tdetoolbar.h>
#include <tdetoolbarbutton.h>
#include <kurl.h>
#include <kstandarddirs.h>
#include <kstringhandler.h>
@ -2027,7 +2027,7 @@ int TDEToggleToolBarAction::plug( TQWidget* w, int index )
while ( !tl->isDialog() && ( n = tl->parentWidget() ) ) // lookup parent and store
tl = n;
TDEMainWindow * mw = tqt_dynamic_cast<TDEMainWindow *>(tl); // try to see if it's a kmainwindow
TDEMainWindow * mw = tqt_dynamic_cast<TDEMainWindow *>(tl); // try to see if it's a tdemainwindow
if ( mw )
m_toolBar = mw->toolBar( m_toolBarName );
@ -2418,4 +2418,4 @@ void TDEPasteTextAction::virtual_hook( int id, void* data )
/* vim: et sw=2 ts=2
*/
#include "kactionclasses.moc"
#include "tdeactionclasses.moc"

@ -24,17 +24,17 @@
*/
//$Id$
#ifndef __kactionclasses_h__
#define __kactionclasses_h__
#ifndef __tdeactionclasses_h__
#define __tdeactionclasses_h__
#include <kaction.h>
#include <tdeaction.h>
#include <tqkeysequence.h>
#include <tqobject.h>
#include <tqvaluelist.h>
#include <tqguardedptr.h>
#include <kguiitem.h>
#include <kshortcut.h>
#include <tdeshortcut.h>
#include <kstdaction.h>
#include <kicontheme.h>

@ -23,14 +23,14 @@
Boston, MA 02110-1301, USA.
*/
#include "kactioncollection.h"
#include "kactionshortcutlist.h"
#include "ktoolbar.h"
#include "tdeactioncollection.h"
#include "tdeactionshortcutlist.h"
#include "tdetoolbar.h"
#include "kxmlguifactory.h"
#include "kxmlguiclient.h"
#include <kaccel.h>
#include <kaccelbase.h>
#include <tdeaccel.h>
#include <tdeaccelbase.h>
#include <kapplication.h>
#include <kdebug.h>
@ -48,7 +48,7 @@ public:
//m_iWidgetCurrent = 0;
m_bAutoConnectShortcuts = true;
m_widget = 0;
m_kaccel = m_builderTDEAccel = 0;
m_tdeaccel = m_builderTDEAccel = 0;
m_dctHighlightContainers.setAutoDelete( true );
m_highlight = false;
m_currentHighlightAction = 0;
@ -62,10 +62,10 @@ public:
//bool m_bOneTDEAccelOnly;
//int m_iWidgetCurrent;
//TQValueList<TQWidget*> m_widgetList;
//TQValueList<TDEAccel*> m_kaccelList;
//TQValueList<TDEAccel*> m_tdeaccelList;
TQValueList<TDEActionCollection*> m_docList;
TQWidget *m_widget;
TDEAccel *m_kaccel;
TDEAccel *m_tdeaccel;
TDEAccel *m_builderTDEAccel;
TQAsciiDict<TDEAction> m_actionDict;
@ -84,7 +84,7 @@ TDEActionCollection::TDEActionCollection( TQWidget *parent, const char *name,
d = new TDEActionCollectionPrivate;
if( parent )
setWidget( parent );
//d->m_bOneTDEAccelOnly = (d->m_kaccelList.count() > 0);
//d->m_bOneTDEAccelOnly = (d->m_tdeaccelList.count() > 0);
setInstance( instance );
}
@ -97,7 +97,7 @@ TDEActionCollection::TDEActionCollection( TQWidget *watch, TQObject* parent, con
d = new TDEActionCollectionPrivate;
if( watch )
setWidget( watch );
//d->m_bOneTDEAccelOnly = (d->m_kaccelList.count() > 0);
//d->m_bOneTDEAccelOnly = (d->m_tdeaccelList.count() > 0);
setInstance( instance );
}
@ -113,7 +113,7 @@ TDEActionCollection::TDEActionCollection( TQObject *parent, const char *name,
TQWidget* w = tqt_dynamic_cast<TQWidget*>( parent );
if( w )
setWidget( w );
//d->m_bOneTDEAccelOnly = (d->m_kaccelList.count() > 0);
//d->m_bOneTDEAccelOnly = (d->m_tdeaccelList.count() > 0);
setInstance( instance );
}
@ -144,7 +144,7 @@ TDEActionCollection::~TDEActionCollection()
pAction->m_parentCollection = 0L;
}
delete d->m_kaccel;
delete d->m_tdeaccel;
delete d->m_builderTDEAccel;
delete d; d = 0;
}
@ -158,7 +158,7 @@ void TDEActionCollection::setWidget( TQWidget* w )
//else
if ( !d->m_widget ) {
d->m_widget = w;
d->m_kaccel = new TDEAccel( w, this, "TDEActionCollection-TDEAccel" );
d->m_tdeaccel = new TDEAccel( w, this, "TDEActionCollection-TDEAccel" );
}
else if ( d->m_widget != w )
kdWarning(129) << "TDEActionCollection::setWidget(): tried to change widget from " << d->m_widget << " to " << w << endl;
@ -192,13 +192,13 @@ void TDEActionCollection::beginXMLPlug( TQWidget *widget )
void TDEActionCollection::endXMLPlug()
{
kdDebug(129) << "TDEActionCollection::endXMLPlug(): this = " << this << endl;
//s_kaccelXML = 0;
//s_tdeaccelXML = 0;
}
void TDEActionCollection::prepareXMLUnplug()
{
kdDebug(129) << "TDEActionCollection::prepareXMLUnplug(): this = " << this << endl;
unplugShortcuts( d->m_kaccel );
unplugShortcuts( d->m_tdeaccel );
if( d->m_builderTDEAccel ) {
unplugShortcuts( d->m_builderTDEAccel );
@ -207,15 +207,15 @@ void TDEActionCollection::prepareXMLUnplug()
}
}
void TDEActionCollection::unplugShortcuts( TDEAccel* kaccel )
void TDEActionCollection::unplugShortcuts( TDEAccel* tdeaccel )
{
for ( TQAsciiDictIterator<TDEAction> it( d->m_actionDict ); it.current(); ++it ) {
TDEAction* pAction = it.current();
pAction->removeTDEAccel( kaccel );
pAction->removeTDEAccel( tdeaccel );
}
for( uint i = 0; i < d->m_docList.count(); i++ )
d->m_docList[i]->unplugShortcuts( kaccel );
d->m_docList[i]->unplugShortcuts( tdeaccel );
}
/*void TDEActionCollection::addWidget( TQWidget* w )
@ -230,7 +230,7 @@ void TDEActionCollection::unplugShortcuts( TDEAccel* kaccel )
}
d->m_iWidgetCurrent = d->m_widgetList.count();
d->m_widgetList.append( w );
d->m_kaccelList.append( new TDEAccel( w, this, "TDEActionCollection-TDEAccel" ) );
d->m_tdeaccelList.append( new TDEAccel( w, this, "TDEActionCollection-TDEAccel" ) );
}
}
@ -241,7 +241,7 @@ void TDEActionCollection::removeWidget( TQWidget* w )
for( uint i = 0; i < d->m_widgetList.count(); i++ ) {
if( d->m_widgetList[i] == w ) {
// Remove TDEAccel object from children.
TDEAccel* pTDEAccel = d->m_kaccelList[i];
TDEAccel* pTDEAccel = d->m_tdeaccelList[i];
for ( TQAsciiDictIterator<TDEAction> it( d->m_actionDict ); it.current(); ++it ) {
TDEAction* pAction = it.current();
if ( pAction->m_parentCollection == this ) {
@ -251,7 +251,7 @@ void TDEActionCollection::removeWidget( TQWidget* w )
delete pTDEAccel;
d->m_widgetList.remove( d->m_widgetList.at( i ) );
d->m_kaccelList.remove( d->m_kaccelList.at( i ) );
d->m_tdeaccelList.remove( d->m_tdeaccelList.at( i ) );
if( d->m_iWidgetCurrent == (int)i )
d->m_iWidgetCurrent = -1;
@ -276,25 +276,25 @@ uint TDEActionCollection::widgetCount() const
const TDEAccel* TDEActionCollection::widgetTDEAccel( uint i ) const
{
return d->m_kaccelList[i];
return d->m_tdeaccelList[i];
}*/
TDEAccel* TDEActionCollection::kaccel()
TDEAccel* TDEActionCollection::tdeaccel()
{
//if( d->m_kaccelList.count() > 0 )
// return d->m_kaccelList[d->m_iWidgetCurrent];
//if( d->m_tdeaccelList.count() > 0 )
// return d->m_tdeaccelList[d->m_iWidgetCurrent];
//else
// return 0;
return d->m_kaccel;
return d->m_tdeaccel;
}
const TDEAccel* TDEActionCollection::kaccel() const
const TDEAccel* TDEActionCollection::tdeaccel() const
{
//if( d->m_kaccelList.count() > 0 )
// return d->m_kaccelList[d->m_iWidgetCurrent];
//if( d->m_tdeaccelList.count() > 0 )
// return d->m_tdeaccelList[d->m_iWidgetCurrent];
//else
// return 0;
return d->m_kaccel;
return d->m_tdeaccel;
}
// Return the key to use in d->m_actionDict for the given action.
@ -334,7 +334,7 @@ void TDEActionCollection::_remove( TDEAction* action )
emit removed( action );
// note that we delete the action without its parent collection set to 0.
// This triggers kaccel::remove, to remove any shortcut.
// This triggers tdeaccel::remove, to remove any shortcut.
delete a;
}
@ -366,8 +366,8 @@ void TDEActionCollection::insert( TDEAction* action ) { _insert( action ); }
void TDEActionCollection::remove( TDEAction* action ) { _remove( action ); }
TDEAction* TDEActionCollection::take( TDEAction* action ) { return _take( action ); }
void TDEActionCollection::clear() { _clear(); }
TDEAccel* TDEActionCollection::accel() { return kaccel(); }
const TDEAccel* TDEActionCollection::accel() const { return kaccel(); }
TDEAccel* TDEActionCollection::accel() { return tdeaccel(); }
const TDEAccel* TDEActionCollection::accel() const { return tdeaccel(); }
TDEAccel* TDEActionCollection::builderTDEAccel() const { return d->m_builderTDEAccel; }
TDEAction* TDEActionCollection::action( const char* name, const char* classname ) const
@ -651,9 +651,9 @@ TDEActionCollection &TDEActionCollection::operator=( const TDEActionCollection &
//d->m_bOneTDEAccelOnly = copy.d->m_bOneTDEAccelOnly;
//d->m_iWidgetCurrent = copy.d->m_iWidgetCurrent;
//d->m_widgetList = copy.d->m_widgetList;
//d->m_kaccelList = copy.d->m_kaccelList;
//d->m_tdeaccelList = copy.d->m_tdeaccelList;
d->m_widget = copy.d->m_widget;
d->m_kaccel = copy.d->m_kaccel;
d->m_tdeaccel = copy.d->m_tdeaccel;
d->m_actionDict = copy.d->m_actionDict;
setInstance( copy.instance() );
return *this;
@ -799,4 +799,4 @@ void TDEActionCollection::virtual_hook( int, void* )
/* vim: et sw=2 ts=2
*/
#include "kactioncollection.moc"
#include "tdeactioncollection.moc"

@ -22,17 +22,17 @@
Boston, MA 02110-1301, USA.
*/
#ifndef __kactioncollection_h__
#define __kactioncollection_h__
#ifndef __tdeactioncollection_h__
#define __tdeactioncollection_h__
#include <kaction.h>
#include <tdeaction.h>
#include <tqkeysequence.h>
#include <tqobject.h>
#include <tqvaluelist.h>
#include <tqguardedptr.h>
#include <kguiitem.h>
#include <kshortcut.h>
#include <tdeshortcut.h>
#include <kstdaction.h>
#include <kicontheme.h>
@ -142,17 +142,17 @@ public:
*/
//bool ownsTDEAccel() const;
/** @deprecated Deprecated because of ambiguous name. Use kaccel() */
/** @deprecated Deprecated because of ambiguous name. Use tdeaccel() */
virtual TDEAccel* accel() KDE_DEPRECATED;
/** @deprecated Deprecated because of ambiguous name. Use kaccel() */
/** @deprecated Deprecated because of ambiguous name. Use tdeaccel() */
virtual const TDEAccel* accel() const KDE_DEPRECATED;
/** Returns the TDEAccel object of the most recently set widget. */
TDEAccel* kaccel();
TDEAccel* tdeaccel();
/** Returns the TDEAccel object of the most recently set widget. Const version for convenience. */
const TDEAccel* kaccel() const;
const TDEAccel* tdeaccel() const;
/** @internal, for TDEAction::kaccelCurrent() */
/** @internal, for TDEAction::tdeaccelCurrent() */
TDEAccel* builderTDEAccel() const;
/** Returns the TDEAccel object associated with widget #. */
//TDEAccel* widgetTDEAccel( uint i );
@ -317,7 +317,7 @@ private:
void endXMLPlug();
/** @internal. Only to be called by KXMLGUIFactory::removeClient() */
void prepareXMLUnplug();
void unplugShortcuts( TDEAccel* kaccel );
void unplugShortcuts( TDEAccel* tdeaccel );
void _clear();
void _insert( TDEAction* );

@ -17,7 +17,7 @@
*/
#include "kactionselector.h"
#include "tdeactionselector.h"
#include <klocale.h>
#include <kiconloader.h>
@ -537,4 +537,4 @@ int TDEActionSelector::insertionIndex( TQListBox *lb, InsertionPolicy policy )
}
//END Private Methods
#include "kactionselector.moc"
#include "tdeactionselector.moc"

@ -1,8 +1,8 @@
#ifndef _KACTIONSHORTCUTLIST_H
#define _KACTIONSHORTCUTLIST_H
#include <kshortcutlist.h>
#include <kaction.h>
#include <tdeshortcutlist.h>
#include <tdeaction.h>
//---------------------------------------------------------------------
// class TDEActionShortcutList

@ -25,10 +25,10 @@
#include <kcharsets.h>
#include <tdeconfig.h>
#include <kglobal.h>
#include <kfontdialog.h>
#include <tdefontdialog.h>
#include "kfontcombo.h"
#include "kfontcombo.moc"
#include "tdefontcombo.h"
#include "tdefontcombo.moc"
#include <ft2build.h>
#include <fontconfig/fontconfig.h>

@ -48,13 +48,13 @@
#include <kglobal.h>
#include <kglobalsettings.h>
#include <tqlineedit.h>
#include <klistbox.h>
#include <tdelistbox.h>
#include <klocale.h>
#include <kstandarddirs.h>
#include <kdebug.h>
#include <knuminput.h>
#include "kfontdialog.moc"
#include "tdefontdialog.moc"
static int minimumListWidth( const TQListBox *list )
{

@ -46,7 +46,7 @@ class KIntNumInput;
* it is preferable to use the convenience functions in
* TDEFontDialog.
*
* \image html kfontchooser.png "KDE Font Chooser"
* \image html tdefontchooser.png "KDE Font Chooser"
*
* @author Preston Brown <pbrown@kde.org>, Bernd Wuebben <wuebben@kde.org>
* @version $Id$
@ -331,7 +331,7 @@ private:
* ...
* \endcode
*
* \image html kfontdialog.png "KDE Font Dialog"
* \image html tdefontdialog.png "KDE Font Dialog"
*
* @author Preston Brown <pbrown@kde.org>, Bernd Wuebben <wuebben@kde.org>
* @version $Id$

@ -17,7 +17,7 @@
Boston, MA 02110-1301, USA.
*/
#include "kfontrequester.h"
#include "tdefontrequester.h"
#include <tqlabel.h>
#include <tqpushbutton.h>
@ -25,7 +25,7 @@
#include <tqtooltip.h>
#include <tqwhatsthis.h>
#include <kfontdialog.h>
#include <tdefontdialog.h>
#include <klocale.h>
TDEFontRequester::TDEFontRequester( TQWidget *parent, const char *name,
@ -121,7 +121,7 @@ void TDEFontRequester::setToolTip()
}
}
#include "kfontrequester.moc"
#include "tdefontrequester.moc"
/* vim: et sw=2 ts=2
*/

@ -36,7 +36,7 @@ class TQPushButton;
* The lineedit provides a preview of the selected font. The preview text can
* be customized. You can also have the font dialog show only the fixed fonts.
*
* \image html kfontrequester.png "KDE Font Requester"
* \image html tdefontrequester.png "KDE Font Requester"
*
* @author Nadeem Hasan <nhasan@kde.org>
*

@ -25,7 +25,7 @@
#include <kipc.h>
#include <kdebug.h>
#include "klistbox.h"
#include "tdelistbox.h"
TDEListBox::TDEListBox( TQWidget *parent, const char *name, WFlags f )
: TQListBox( parent, name, f ), d(0)
@ -263,4 +263,4 @@ void TDEListBox::slotMouseButtonClicked( int btn, TQListBoxItem *item, const TQP
void TDEListBox::virtual_hook( int, void* )
{ /*BASE::virtual_hook( id, data );*/ }
#include "klistbox.moc"
#include "tdelistbox.moc"

@ -34,8 +34,8 @@
#include <kipc.h>
#include <kdebug.h>
#include "klistview.h"
#include "klistviewlineedit.h"
#include "tdelistview.h"
#include "tdelistviewlineedit.h"
class TDEListView::Tooltip : public TQToolTip
{
@ -2405,7 +2405,7 @@ void TDEListView::selectAll( bool select )
void TDEListView::virtual_hook( int, void* )
{ /*BASE::virtual_hook( id, data );*/ }
#include "klistview.moc"
#include "klistviewlineedit.moc"
#include "tdelistview.moc"
#include "tdelistviewlineedit.moc"
// vim: noet

@ -19,7 +19,7 @@
#define KLISTVIEWLINEEDIT_H
#include <klineedit.h>
#include <klistview.h>
#include <tdelistview.h>
/**
* the editor for a TDEListView. please don't use this.

@ -16,12 +16,12 @@
Boston, MA 02110-1301, USA.
*/
#include "klistviewsearchline.h"
#include "tdelistviewsearchline.h"
#include <klistview.h>
#include <tdelistview.h>
#include <kiconloader.h>
#include <ktoolbar.h>
#include <ktoolbarbutton.h>
#include <tdetoolbar.h>
#include <tdetoolbarbutton.h>
#include <kdebug.h>
#include <klocale.h>
@ -498,4 +498,4 @@ void TDEListViewSearchLineWidget::positionInToolBar()
d->searchLine->show();
}
#include "klistviewsearchline.moc"
#include "tdelistviewsearchline.moc"

@ -23,9 +23,9 @@
*/
#include "config.h"
#include "kmainwindow.h"
#include "kmainwindowiface.h"
#include "ktoolbarhandler.h"
#include "tdemainwindow.h"
#include "tdemainwindowiface.h"
#include "tdetoolbarhandler.h"
#include "kwhatsthismanager_p.h"
#include <tqsessionmanager.h>
#include <tqobjectlist.h>
@ -34,8 +34,8 @@
#include <tqwidgetlist.h>
#include <tqtimer.h>
#include <kaccel.h>
#include <kaction.h>
#include <tdeaccel.h>
#include <tdeaction.h>
#include <kapplication.h>
#include <tdeconfig.h>
#include <kdebug.h>
@ -44,7 +44,7 @@
#include <kstatusbar.h>
#include <twin.h>
#include <kedittoolbar.h>
#include <kmainwindow.h>
#include <tdemainwindow.h>
#include <klocale.h>
#include <kstandarddirs.h>
@ -67,7 +67,7 @@ public:
bool care_about_geometry:1;
bool shuttingDown:1;
TQString autoSaveGroup;
TDEAccel * kaccel;
TDEAccel * tdeaccel;
TDEMainWindowInterface *m_interface;
KDEPrivate::ToolBarHandler *toolBarHandler;
TQTimer* settingsTimer;
@ -238,7 +238,7 @@ void TDEMainWindow::initTDEMainWindow(const char *name, int cflags)
d->settingsDirty = false;
d->autoSaveSettings = false;
d->autoSaveWindowSize = true; // for compatibility
d->kaccel = actionCollection()->kaccel();
d->tdeaccel = actionCollection()->tdeaccel();
d->toolBarHandler = 0;
d->settingsTimer = 0;
d->showStatusBarAction = NULL;
@ -1170,9 +1170,9 @@ TQPtrListIterator<TDEToolBar> TDEMainWindow::toolBarIterator()
TDEAccel * TDEMainWindow::accel()
{
if ( !d->kaccel )
d->kaccel = new TDEAccel( this, "kmw-kaccel" );
return d->kaccel;
if ( !d->tdeaccel )
d->tdeaccel = new TDEAccel( this, "kmw-tdeaccel" );
return d->tdeaccel;
}
void TDEMainWindow::paintEvent( TQPaintEvent * pe )
@ -1245,5 +1245,5 @@ void TDEMainWindow::virtual_hook( int id, void* data )
#include "kmainwindow.moc"
#include "tdemainwindow.moc"

@ -26,7 +26,7 @@
#include "kxmlguibuilder.h"
#include <tqmainwindow.h>
#include <tqmetaobject.h>
#include <ktoolbar.h>
#include <tdetoolbar.h>
class TDEPopupMenu;
class KXMLGUIFactory;
@ -379,7 +379,7 @@ public:
*
* If there is no status bar yet, one will be created.
*
* Note that tooltips for kactions in actionCollection() are not
* Note that tooltips for tdeactions in actionCollection() are not
* automatically connected to this statusBar.
* See the TDEActionCollection documentation for more details.
*
@ -541,7 +541,7 @@ public:
* know when that status (hidden/shown) of the statusbar has changed.
* For example:
* connect(action, TQT_SIGNAL(activated()),
* kmainwindow, TQT_SLOT(setSettingsDirty()));
* tdemainwindow, TQT_SLOT(setSettingsDirty()));
* Otherwise the status (hidden/show) of the statusbar might not be saved
* by TDEMainWindow.
* @since 3.2

@ -17,14 +17,14 @@
Boston, MA 02110-1301, USA.
*/
#include "kmainwindowiface.h"
#include "tdemainwindowiface.h"
#include <dcopclient.h>
#include <kapplication.h>
#include <kdcopactionproxy.h>
#include <kdcoppropertyproxy.h>
#include <kmainwindow.h>
#include <kaction.h>
#include <tdemainwindow.h>
#include <tdeaction.h>
#include <tqclipboard.h>

@ -109,7 +109,7 @@ k_dcop:
Returns a dcop reference to the selected TDEAction
@param name The name of the action. The names of valid
actions can be found by calling actions().
@return A DCOPRef for the kaction.
@return A DCOPRef for the tdeaction.
**/
DCOPRef action( const TQCString &name );

@ -27,7 +27,7 @@
#include <tqstyle.h>
#include "kpopupmenu.h"
#include "tdepopupmenu.h"
#include <kdebug.h>
#include <kapplication.h>
@ -691,4 +691,4 @@ void TDEPopupTitle::virtual_hook( int, void* )
void TDEPopupMenu::virtual_hook( int, void* )
{ /*BASE::virtual_hook( id, data );*/ }
#include "kpopupmenu.moc"
#include "tdepopupmenu.moc"

@ -22,7 +22,7 @@
#include <tqdrawutil.h>
#include <tqstyle.h>
#include <kimageeffect.h>
#include "kselect.h"
#include "tdeselect.h"
#define STORE_W 8
#define STORE_W2 STORE_W * 2
@ -530,5 +530,5 @@ void TDESelector::virtual_hook( int, void* )
void KGradientSelector::virtual_hook( int id, void* data )
{ TDESelector::virtual_hook( id, data ); }
#include "kselect.moc"
#include "tdeselect.moc"

@ -17,7 +17,7 @@
Boston, MA 02110-1301, USA.
*/
#include "kshortcutdialog.h"
#include "tdeshortcutdialog.h"
#include <tqvariant.h>
@ -41,8 +41,8 @@
# include <kkeyserver.h>
#endif
#include <kshortcutdialog_simple.h>
#include <kshortcutdialog_advanced.h>
#include <tdeshortcutdialog_simple.h>
#include <tdeshortcutdialog_advanced.h>
#include <tqbuttongroup.h>
#include <tqcheckbox.h>
@ -526,4 +526,4 @@ void TDEShortcutDialog::keyPressed( KKey key )
TQTimer::singleShot(500, this, TQT_SLOT(accept()));
}
#include "kshortcutdialog.moc"
#include "tdeshortcutdialog.moc"

@ -21,7 +21,7 @@
#define _KSHORTCUTDIALOG_H_
#include "kdialogbase.h"
#include "kshortcut.h"
#include "tdeshortcut.h"
class TQVBox;
class KPushButton;

@ -238,7 +238,7 @@
</connection>
</connections>
<includes>
<include location="global" impldecl="in declaration">kshortcut.h</include>
<include location="global" impldecl="in declaration">tdeshortcut.h</include>
<include location="global" impldecl="in declaration">kdialog.h</include>
<include location="global" impldecl="in implementation">kpushbutton.h</include>
</includes>

@ -105,7 +105,7 @@
</grid>
</widget>
<includes>
<include location="global" impldecl="in declaration">kshortcut.h</include>
<include location="global" impldecl="in declaration">tdeshortcut.h</include>
<include location="global" impldecl="in declaration">kdialog.h</include>
<include location="global" impldecl="in implementation">kpushbutton.h</include>
</includes>

@ -813,7 +813,7 @@ void KSpell::checkList2 ()
// send next word
if (wlIt != wordlist->end())
{
kdDebug(750) << "KS::cklist2 " << lastpos << ": " << *wlIt << endl;
kdDebug(750) << "KS::ctdelist2 " << lastpos << ": " << *wlIt << endl;
d->endOfResponse = false;
bool put;
@ -937,7 +937,7 @@ void KSpell::checkList4 ()
{
case KS_REPLACE:
case KS_REPLACEALL:
kdDebug(750) << "KS: cklist4: lastpos: " << lastpos << endl;
kdDebug(750) << "KS: ctdelist4: lastpos: " << lastpos << endl;
old = *(--wlIt);
++wlIt;
// replace word

@ -26,9 +26,9 @@
#include <kapplication.h>
#include <klocale.h>
#include <klistbox.h>
#include <tdelistbox.h>
#include <kcombobox.h>
#include <klistview.h>
#include <tdelistview.h>
#include <klineedit.h>
#include <kpushbutton.h>
#include <kprogress.h>

@ -42,25 +42,25 @@
#include <tqstyle.h>
#include <tqlayout.h>
#include <ktoolbar.h>
#include <kmainwindow.h>
#include <tdetoolbar.h>
#include <tdemainwindow.h>
#include <klineedit.h>
#include <kseparator.h>
#include <klocale.h>
#include <kapplication.h>
#include <kaction.h>
#include <tdeaction.h>
#include <kstdaction.h>
#include <kglobal.h>
#include <tdeconfig.h>
#include <kiconloader.h>
#include <kcombobox.h>
#include <kpopupmenu.h>
#include <tdepopupmenu.h>
#include <kanimwidget.h>
#include <kedittoolbar.h>
#include <kipc.h>
#include <twin.h>
#include <kdebug.h>
#include <ktoolbarbutton.h>
#include <tdetoolbarbutton.h>
enum {
CONTEXT_TOP = 0,
@ -2260,5 +2260,5 @@ void TDEToolBar::removeWidgetInternal( TQWidget * w )
void TDEToolBar::virtual_hook( int, void* )
{ /*BASE::virtual_hook( id, data );*/ }
#include "ktoolbar.moc"
#include "tdetoolbar.moc"

@ -24,8 +24,8 @@
#include <config.h>
#include <string.h>
#include "ktoolbarbutton.h"
#include "ktoolbar.h"
#include "tdetoolbarbutton.h"
#include "tdetoolbar.h"
#include <tqstyle.h>
#include <tqimage.h>
@ -46,7 +46,7 @@
#include <kiconloader.h>
// needed to get our instance
#include <kmainwindow.h>
#include <tdemainwindow.h>
template class TQIntDict<TDEToolBarButton>;
@ -778,4 +778,4 @@ TDEToolBarButtonList::TDEToolBarButtonList()
void TDEToolBarButton::virtual_hook( int, void* )
{ /*BASE::virtual_hook( id, data );*/ }
#include "ktoolbarbutton.moc"
#include "tdetoolbarbutton.moc"

@ -16,14 +16,14 @@
Boston, MA 02110-1301, USA.
*/
#include "ktoolbarhandler.h"
#include "tdetoolbarhandler.h"
#include <tqpopupmenu.h>
#include <kapplication.h>
#include <ktoolbar.h>
#include <kmainwindow.h>
#include <tdetoolbar.h>
#include <tdemainwindow.h>
#include <klocale.h>
#include <kaction.h>
#include <tdeaction.h>
#include <assert.h>
namespace
@ -240,7 +240,7 @@ void ToolBarHandler::connectToActionContainer( TQWidget *container )
this, TQT_SLOT( setupActions() ) );
}
#include "ktoolbarhandler.moc"
#include "tdetoolbarhandler.moc"
/* vim: et sw=4 ts=4
*/

@ -16,7 +16,7 @@
Boston, MA 02110-1301, USA.
*/
#include "ktoolbarlabelaction.h"
#include "tdetoolbarlabelaction.h"
#include <tqlabel.h>
#include <tqapplication.h>

@ -18,7 +18,7 @@
#ifndef KTOOLBARLABELACTION_H
#define KTOOLBARLABELACTION_H
#include <kactionclasses.h>
#include <tdeactionclasses.h>
class TQLabel;

@ -22,9 +22,9 @@
#include <config.h>
#include "ktoolbarradiogroup.h"
#include "ktoolbar.h"
#include "ktoolbarbutton.h"
#include "tdetoolbarradiogroup.h"
#include "tdetoolbar.h"
#include "tdetoolbarbutton.h"
/*************************************************************************
* TDEToolBarRadioGroup *
@ -73,5 +73,5 @@ void TDEToolBarRadioGroup::slotToggled(int id)
}
}
#include "ktoolbarradiogroup.moc"
#include "tdetoolbarradiogroup.moc"

@ -27,21 +27,21 @@ set( test_PROGS
kcolortest kcolordlgtest kcomboboxtest kcompletiontest
kdatepicktest kdatewidgettest kdialogbasetest
kdockwidgetdemo kdockwidgettest
kdualcolortest keditlistboxtest kfontdialogtest
kdualcolortest keditlistboxtest tdefontdialogtest
kgradienttest khashtest kdesattest
kledtest klineedittest klineeditdlgtest
kmessageboxtest knuminputtest
kpalettetest
kpopuptest kprogresstest krulertest kseparatortest
tdepopuptest kprogresstest krulertest kseparatortest
kstatusbartest ktabctltest
kunbalancedgrdtest twindowtest kwizardtest
itemcontainertest kpanelmenutest kedittest
kxmlguitest kaccelgentest ksystemtraytest klistviewtest
ktextedittest kmainwindowtest kmainwindowrestoretest
kactiontest kdatetimewidgettest ktimewidgettest
kxmlguitest tdeaccelgentest ksystemtraytest tdelistviewtest
ktextedittest tdemainwindowtest tdemainwindowrestoretest
tdeactiontest kdatetimewidgettest ktimewidgettest
tdespelltest kinputdialogtest ktabwidgettest kwordwraptest
kdocktest qxembedtest ksqueezedtextlabeltest
kpixmapregionselectordialogtest kjanuswidgettest ktoolbarlabelactiontest
kpixmapregionselectordialogtest kjanuswidgettest tdetoolbarlabelactiontest
)
foreach( PROG ${test_PROGS} )

@ -26,21 +26,21 @@ check_PROGRAMS = kaboutdialogtest kblendtest kbuttonboxtest kcharselecttest \
kcolortest kcolordlgtest kcomboboxtest kcompletiontest \
kdatepicktest kdatewidgettest kdialogbasetest \
kdockwidgetdemo kdockwidgettest \
kdualcolortest keditlistboxtest kfontdialogtest \
kdualcolortest keditlistboxtest tdefontdialogtest \
kgradienttest khashtest kdesattest\
kledtest klineedittest klineeditdlgtest \
kmessageboxtest knuminputtest \
kpalettetest \
kpopuptest kprogresstest krulertest kseparatortest \
tdepopuptest kprogresstest krulertest kseparatortest \
kstatusbartest ktabctltest \
kunbalancedgrdtest twindowtest kwizardtest \
itemcontainertest kpanelmenutest kedittest \
kxmlguitest kaccelgentest ksystemtraytest klistviewtest \
ktextedittest kmainwindowtest kmainwindowrestoretest \
kactiontest kdatetimewidgettest ktimewidgettest \
kxmlguitest tdeaccelgentest ksystemtraytest tdelistviewtest \
ktextedittest tdemainwindowtest tdemainwindowrestoretest \
tdeactiontest kdatetimewidgettest ktimewidgettest \
tdespelltest kinputdialogtest ktabwidgettest kwordwraptest \
kdocktest qxembedtest ksqueezedtextlabeltest \
kpixmapregionselectordialogtest kjanuswidgettest ktoolbarlabelactiontest
kpixmapregionselectordialogtest kjanuswidgettest tdetoolbarlabelactiontest
METASOURCES = AUTO
@ -62,7 +62,7 @@ kdialogbasetest_SOURCES = kdialogbasetest.cpp
kdualcolortest_SOURCES = kdualcolortest.cpp
kedittest_SOURCES = kedittest.cpp
keditlistboxtest_SOURCES = keditlistboxtest.cpp
kfontdialogtest_SOURCES = kfontdialogtest.cpp
tdefontdialogtest_SOURCES = tdefontdialogtest.cpp
kgradienttest_SOURCES = kgradienttest.cpp
khashtest_SOURCES = khashtest.cpp
kledtest_SOURCES = kledtest.cpp
@ -71,7 +71,7 @@ klineeditdlgtest_SOURCES = klineeditdlgtest.cpp
kmessageboxtest_SOURCES = kmessageboxtest.cpp
knuminputtest_SOURCES = knuminputtest.cpp
kpalettetest_SOURCES = kpalettetest.cpp
kpopuptest_SOURCES = kpopuptest.cpp
tdepopuptest_SOURCES = tdepopuptest.cpp
kprogresstest_SOURCES = kprogresstest.cpp
krulertest_SOURCES = krulertest.cpp
kseparatortest_SOURCES = kseparatortest.cpp
@ -86,13 +86,13 @@ kpanelmenutest_SOURCES = kpanelmenutest.cpp
kdockwidgetdemo_SOURCES = kdockwidgetdemo.cpp
kdockwidgettest_SOURCES = kdockwidgettest.cpp
kxmlguitest_SOURCES = kxmlguitest.cpp
kaccelgentest_SOURCES = kaccelgentest.cpp
tdeaccelgentest_SOURCES = tdeaccelgentest.cpp
ksystemtraytest_SOURCES = ksystemtraytest.cpp
klistviewtest_SOURCES = klistviewtest.cpp
tdelistviewtest_SOURCES = tdelistviewtest.cpp
ktextedittest_SOURCES = ktextedittest.cpp
kmainwindowtest_SOURCES = kmainwindowtest.cpp
kmainwindowrestoretest_SOURCES = kmainwindowrestoretest.cpp
kactiontest_SOURCES = kactiontest.cpp
tdemainwindowtest_SOURCES = tdemainwindowtest.cpp
tdemainwindowrestoretest_SOURCES = tdemainwindowrestoretest.cpp
tdeactiontest_SOURCES = tdeactiontest.cpp
tdespelltest_SOURCES = tdespelltest.cpp
kinputdialogtest_SOURCES = kinputdialogtest.cpp
ktabwidgettest_SOURCES = ktabwidgettest.cpp
@ -102,4 +102,4 @@ qxembedtest_SOURCES=qxembedtest.cpp
ksqueezedtextlabeltest_SOURCES = ksqueezedtextlabeltest.cpp
kjanuswidgettest_SOURCES = kjanuswidgettest.cpp
kpixmapregionselectordialogtest_SOURCES = kpixmapregionselectordialogtest.cpp
ktoolbarlabelactiontest_SOURCES = ktoolbarlabelactiontest.cpp
tdetoolbarlabelactiontest_SOURCES = tdetoolbarlabelactiontest.cpp

@ -20,8 +20,8 @@
#include <kglobal.h>
#include <tdeconfig.h>
#include <kiconview.h>
#include <klistview.h>
#include <klistbox.h>
#include <tdelistview.h>
#include <tdelistbox.h>
#include "itemcontainertest.h"

@ -19,7 +19,7 @@
#include <kiconloader.h>
#include <kstatusbar.h>
#include <kmenubar.h>
#include <ktoolbar.h>
#include <tdetoolbar.h>
#include <tqvbox.h>
static const char*folder[]={

@ -4,7 +4,7 @@
#define krulertest_h
#include <kapplication.h>
#include <kmainwindow.h>
#include <tdemainwindow.h>
#include <tqwidget.h>
#include <tqcheckbox.h>
#include <tqradiobutton.h>

@ -11,7 +11,7 @@
#include "kstatusbar.h"
#include <kapplication.h>
#include <kmainwindow.h>
#include <tdemainwindow.h>
#include <kmenubar.h>
#include "kstatusbartest.h"

@ -4,7 +4,7 @@
#include <kmenubar.h>
#include <tqpopupmenu.h>
#include <kstatusbar.h>
#include <kmainwindow.h>
#include <tdemainwindow.h>
class TQMultiLineEdit;

@ -1,10 +1,10 @@
#include "kxmlguitest.h"
#include <kapplication.h>
#include <kmainwindow.h>
#include <tdemainwindow.h>
#include <kxmlguifactory.h>
#include <kxmlguiclient.h>
#include <kxmlguibuilder.h>
#include <kaction.h>
#include <tdeaction.h>
#include <kdebug.h>
#include <kstdaction.h>
#include <kstandarddirs.h>

@ -1,4 +1,4 @@
#include "kaccelgen.h"
#include "tdeaccelgen.h"
#include <tqstringlist.h>

@ -2,13 +2,13 @@
#include <tqguardedptr.h>
#include <kapplication.h>
#include <kaction.h>
#include <tdeaction.h>
#include <assert.h>
int main( int argc, char **argv )
{
TDEApplication app( argc, argv, "kactiontest" );
TDEApplication app( argc, argv, "tdeactiontest" );
TDEActionCollection coll( static_cast<TQObject *>( 0 ) );

@ -25,7 +25,7 @@
#include <kapplication.h>
#include "kfontdialog.h"
#include "tdefontdialog.h"
#include <tdeconfig.h>

@ -1,4 +1,4 @@
#include <klistview.h>
#include <tdelistview.h>
#include <kapplication.h>
#include <kdialogbase.h>
#include <tqvbox.h>
@ -6,7 +6,7 @@
int main( int argc, char **argv )
{
TDEApplication app( argc, argv, "klistviewtest" );
TDEApplication app( argc, argv, "tdelistviewtest" );
KDialogBase dialog;
TDEListView *view = new TDEListView( dialog.makeVBoxMainWidget() );
view->setSelectionModeExt( TDEListView::FileManager );

@ -1,5 +1,5 @@
#include "kmainwindowrestoretest.h"
#include "tdemainwindowrestoretest.h"
#include <kapplication.h>
@ -14,7 +14,7 @@
int main( int argc, char * argv[] ) {
TDEApplication app( argc, argv, "kmainwindowrestoretest" );
TDEApplication app( argc, argv, "tdemainwindowrestoretest" );
if ( kapp->isRestored() ) {
kRestoreMainWindows< MainWin1, MainWin2, MainWin3 >();
@ -38,4 +38,4 @@ int main( int argc, char * argv[] ) {
return app.exec();
}
#include "kmainwindowrestoretest.moc"
#include "tdemainwindowrestoretest.moc"

@ -1,7 +1,7 @@
#ifndef _TDEUI_TESTS_KMAINWINDOWRESTORETEST_H_
#define _TDEUI_TESTS_KMAINWINDOWRESTORETEST_H_
#include <kmainwindow.h>
#include <tdemainwindow.h>
class MainWin1 : public TDEMainWindow {
Q_OBJECT

@ -5,7 +5,7 @@
#include <kstatusbar.h>
#include <kmenubar.h>
#include "kmainwindowtest.h"
#include "tdemainwindowtest.h"
MainWindow::MainWindow()
{
@ -24,7 +24,7 @@ void MainWindow::showMessage()
int main( int argc, char **argv )
{
TDEApplication app( argc, argv, "kmainwindowtest" );
TDEApplication app( argc, argv, "tdemainwindowtest" );
MainWindow* mw = new MainWindow; // deletes itself when closed
mw->show();
@ -32,7 +32,7 @@ int main( int argc, char **argv )
return app.exec();
}
#include "kmainwindowtest.moc"
#include "tdemainwindowtest.moc"
/* vim: et sw=4 ts=4
*/

@ -1,7 +1,7 @@
#ifndef KMAINWINDOWTEST_H
#define KMAINWINDOWTEST_H
#include <kmainwindow.h>
#include <tdemainwindow.h>
class MainWindow : public TDEMainWindow
{

@ -1,7 +1,7 @@
#include <kapplication.h>
#include <tqwidget.h>
#include <tqcursor.h>
#include "kpopupmenu.h"
#include "tdepopupmenu.h"
class DemoWidget : public TQWidget {
private:
@ -30,7 +30,7 @@ public:
int main(int argc, char **argv)
{
TDEApplication app(argc, argv, "kpopupmenutest");
TDEApplication app(argc, argv, "tdepopupmenutest");
DemoWidget w;
app.setMainWidget(&w);
w.setFont(TQFont("helvetica", 12, TQFont::Bold), true);

@ -19,11 +19,11 @@
#include <tqguardedptr.h>
#include <kapplication.h>
#include <kmainwindow.h>
#include <tdemainwindow.h>
#include <klineedit.h>
#include <klistview.h>
#include <tdelistview.h>
#include <kstandarddirs.h>
#include <ktoolbarlabelaction.h>
#include <tdetoolbarlabelaction.h>
#include <ksqueezedtextlabel.h>
#include <kdebug.h>
#include <tqvbox.h>
@ -78,13 +78,13 @@ public:
// customLabel->setText("&test me again some time soon");
createGUI("ktoolbarlabelactiontestui.rc");
createGUI("tdetoolbarlabelactiontestui.rc");
}
};
int main( int argc, char **argv )
{
TDEApplication app( argc, argv, "ktoolbarlabelactiontest" );
TDEApplication app( argc, argv, "tdetoolbarlabelactiontest" );
TDEGlobal::instance()->dirs()->addResourceDir("data", ".");

@ -1,5 +1,5 @@
<!DOCTYPE kpartgui>
<kpartgui name="ktoolbarlabelactiontest" version="0.1">
<kpartgui name="tdetoolbarlabelactiontest" version="0.1">
<ToolBar>
<Action name="label1"/>
<Action name="label2"/>

@ -14,9 +14,9 @@
#include <khelpmenu.h>
#include <kcmdlineargs.h>
#include <kmenubar.h>
#include <ktoolbarradiogroup.h>
#include <tdetoolbarradiogroup.h>
#include <kiconloader.h>
#include <kpopupmenu.h>
#include <tdepopupmenu.h>
#include <tqmultilineedit.h>
#include "twindowtest.h"

@ -6,8 +6,8 @@
#include <tqprogressbar.h>
#include <kmenubar.h>
#include <kstatusbar.h>
#include <ktoolbar.h>
#include <kmainwindow.h>
#include <tdetoolbar.h>
#include <tdemainwindow.h>
class TQMultiLineEdit;
class TDEToolBarRadioGroup;

@ -25,7 +25,7 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#ifndef __twindowlistmenu_h__
#define __twindowlistmenu_h__
#include <kpopupmenu.h>
#include <tdepopupmenu.h>
#include <tqmap.h>
#ifdef Q_MOC_RUN

@ -36,7 +36,7 @@
#include <kdebug.h>
#include <klocale.h>
#include <klistview.h>
#include <tdelistview.h>
#include <ksimpleconfig.h>
#include <kdialog.h>
#include <kglobal.h>

@ -20,7 +20,7 @@
#include "ksettings/componentsdialog.h"
#include <klocale.h>
#include <tqlayout.h>
#include <klistview.h>
#include <tdelistview.h>
#include <tqlabel.h>
#include <tqheader.h>
#include <kplugininfo.h>

@ -21,7 +21,7 @@ SOURCES = \
tdetexteditor.cpp \
editinterface.cpp editinterfaceext.cpp \
clipboardinterface.cpp selectioninterface.cpp searchinterface.cpp \
codecompletioninterface.cpp wordwrapinterface.cpp blockselectioninterface.cpp \
codecompletioninterface.cpp wordwrapinterface.cpp bloctdeselectioninterface.cpp \
configinterface.cpp cursorinterface.cpp dynwordwrapinterface.cpp \
printinterface.cpp highlightinginterface.cpp markinterface.cpp \
popupmenuinterface.cpp undointerface.cpp viewcursorinterface.cpp \
@ -30,7 +30,7 @@ SOURCES = \
searchdcopinterface.cpp markinterfaceextension.cpp \
configinterfaceextension.cpp encodinginterface.cpp sessionconfiginterface.cpp \
viewstatusmsginterface.cpp editorchooser.cpp \
blockselectiondcopinterface.cpp documentinfo.cpp documentdcopinfo.cpp\
bloctdeselectiondcopinterface.cpp documentinfo.cpp documentdcopinfo.cpp\
encodingdcopinterface.cpp \
printdcopinterface.cpp \
undodcopinterface.cpp viewcursordcopinterface.cpp \
@ -48,7 +48,7 @@ undodcopinterface_skel.cpp \
printdcopinterface_skel.cpp \
encodingdcopinterface_skel.cpp \
documentdcopinfo_skel.cpp \
blockselectiondcopinterface_skel.cpp \
bloctdeselectiondcopinterface_skel.cpp \
searchdcopinterface_skel.cpp \
selectiondcopinterface_skel.cpp \
clipboarddcopinterface_skel.cpp \
@ -61,7 +61,7 @@ undodcopinterface_stub.cpp \
printdcopinterface_stub.cpp \
encodingdcopinterface_stub.cpp \
documentdcopinfo_stub.cpp \
blockselectiondcopinterface_stub.cpp \
bloctdeselectiondcopinterface_stub.cpp \
searchdcopinterface_stub.cpp \
selectiondcopinterface_stub.cpp \
clipboarddcopinterface_stub.cpp \

@ -145,8 +145,8 @@ tdefile/kopenwith.cpp \
tdefile/kpreviewprops.cpp \
tdefile/kpreviewwidgetbase.cpp \
tdefile/kpropertiesdialog.cpp \
tdefile/krecentdirs.cpp \
tdefile/krecentdocument.cpp \
tdefile/tderecentdirs.cpp \
tdefile/tderecentdocument.cpp \
tdefile/kurlbar.cpp \
tdefile/kurlcombobox.cpp \
tdefile/kurlrequester.cpp \

@ -58,16 +58,16 @@ tdeconfigbackend.cpp \
tdeconfigbase.cpp \
tdeconfigskeleton.cpp \
klockfile.cpp \
kstdaccel.cpp \
tdestdaccel.cpp \
kcheckaccelerators.cpp \
kkeyserver_x11.cpp \
kkeynative_x11.cpp \
kaccelbase.cpp \
kaccel.cpp \
kaccelmanager.cpp \
kshortcut.cpp \
kshortcutmenu.cpp \
kshortcutlist.cpp \
tdeaccelbase.cpp \
tdeaccel.cpp \
tdeaccelmanager.cpp \
tdeshortcut.cpp \
tdeshortcutmenu.cpp \
tdeshortcutlist.cpp \
kinstance.cpp \
tdeversion.cpp \
klocale.cpp \
@ -78,7 +78,7 @@ kglobalsettings.cpp \
kckey.cpp \
kglobalaccel.cpp \
kglobalaccel_win.cpp \
kaccelaction.cpp \
tdeaccelaction.cpp \
kuniqueapplication.cpp \
tdesycoca.cpp \
tdesycocadict.cpp \

@ -18,10 +18,10 @@ SOURCES = \
kaboutapplication.cpp \
kaboutdialog.cpp \
kaboutkde.cpp \
kactionclasses.cpp \
kactioncollection.cpp \
kaction.cpp \
kactionselector.cpp \
tdeactionclasses.cpp \
tdeactioncollection.cpp \
tdeaction.cpp \
tdeactionselector.cpp \
kactivelabel.cpp \
kanimwidget.cpp \
karrowbutton.cpp \
@ -52,9 +52,9 @@ keditcl1.cpp \
keditcl2.cpp \
keditlistbox.cpp \
kedittoolbar.cpp \
kfontcombo.cpp \
kfontdialog.cpp \
kfontrequester.cpp \
tdefontcombo.cpp \
tdefontdialog.cpp \
tdefontrequester.cpp \
kguiitem.cpp \
khelpmenu.cpp \
kiconview.cpp \
@ -66,11 +66,11 @@ klanguagebutton.cpp \
kled.cpp \
klineedit.cpp \
klineeditdlg.cpp \
klistbox.cpp \
klistview.cpp \
klistviewsearchline.cpp \
kmainwindowiface.cpp \
kmainwindow.cpp \
tdelistbox.cpp \
tdelistview.cpp \
tdelistviewsearchline.cpp \
tdemainwindowiface.cpp \
tdemainwindow.cpp \
kmenubar.cpp \
knuminput.cpp \
knumvalidator.cpp \
@ -83,16 +83,16 @@ kpassivepopup.cpp \
kpixmapio.cpp \
kpixmapregionselectordialog.cpp \
kpixmapregionselectorwidget.cpp \
kpopupmenu.cpp \
tdepopupmenu.cpp \
kprogress.cpp \
kpushbutton.cpp \
krestrictedline.cpp \
krootpixmap.cpp \
kruler.cpp \
ksconfig.cpp \
kselect.cpp \
tdeselect.cpp \
kseparator.cpp \
kshortcutdialog.cpp \
tdeshortcutdialog.cpp \
tdespell.cpp \
tdespelldlg.cpp \
ksplashscreen.cpp \
@ -107,10 +107,10 @@ ktabctl.cpp \
ktextbrowser.cpp \
ktextedit.cpp \
ktip.cpp \
ktoolbar.cpp \
ktoolbarbutton.cpp \
ktoolbarhandler.cpp \
ktoolbarradiogroup.cpp \
tdetoolbar.cpp \
tdetoolbarbutton.cpp \
tdetoolbarhandler.cpp \
tdetoolbarradiogroup.cpp \
kurllabel.cpp \
kwhatsthismanager.cpp \
twindowinfo.cpp \
@ -137,12 +137,12 @@ exists( kmessagebox_win.cpp ) {
# generated:
SOURCES += \
kmainwindowiface_stub.cpp \
kmainwindowiface_skel.cpp
tdemainwindowiface_stub.cpp \
tdemainwindowiface_skel.cpp
FORMS = \
kshortcutdialog_advanced.ui \
kshortcutdialog_simple.ui \
tdeshortcutdialog_advanced.ui \
tdeshortcutdialog_simple.ui \
tdespellui.ui
HEADERS =

@ -162,7 +162,7 @@ declared but not defined. The compiler was unable to find any destructors for th
# pragma warning(disable: 4250)
# pragma warning(disable: 4006) /*libxxx : warning LNK4006:
".... already defined in kaction.obj; second definition ignored" */
".... already defined in tdeaction.obj; second definition ignored" */
/* disable C4100: unreferenced formal parameter */
# pragma warning(disable: 4100)

Loading…
取消
儲存