summaryrefslogtreecommitdiffstats
path: root/tdeparts
diff options
context:
space:
mode:
Diffstat (limited to 'tdeparts')
-rw-r--r--tdeparts/mainwindow.cpp6
-rw-r--r--tdeparts/mainwindow.h8
-rw-r--r--tdeparts/part.cpp2
-rw-r--r--tdeparts/part.h10
-rw-r--r--tdeparts/statusbarextension.cpp2
-rw-r--r--tdeparts/statusbarextension.h6
-rw-r--r--tdeparts/tests/example.cpp16
-rw-r--r--tdeparts/tests/example.h6
-rw-r--r--tdeparts/tests/ghostview.cpp4
-rw-r--r--tdeparts/tests/normalktm.cpp10
-rw-r--r--tdeparts/tests/normalktm.h8
-rw-r--r--tdeparts/tests/notepad.cpp2
-rw-r--r--tdeparts/tests/parts.cpp2
-rw-r--r--tdeparts/tests/plugin_spellcheck.cpp2
14 files changed, 42 insertions, 42 deletions
diff --git a/tdeparts/mainwindow.cpp b/tdeparts/mainwindow.cpp
index 37fc97acd..5f0a31a91 100644
--- a/tdeparts/mainwindow.cpp
+++ b/tdeparts/mainwindow.cpp
@@ -58,21 +58,21 @@ public:
}
MainWindow::MainWindow( TQWidget* parent, const char *name, WFlags f )
- : KMainWindow( parent, name, f )
+ : TDEMainWindow( parent, name, f )
{
d = new MainWindowPrivate();
PartBase::setPartObject( TQT_TQOBJECT(this) );
}
MainWindow::MainWindow( const char *name, WFlags f )
- : KMainWindow( 0L, name, f )
+ : TDEMainWindow( 0L, name, f )
{
d = new MainWindowPrivate();
PartBase::setPartObject( TQT_TQOBJECT(this) );
}
MainWindow::MainWindow( int cflags, TQWidget* parent, const char *name, WFlags f )
- : KMainWindow( cflags, parent, name, f )
+ : TDEMainWindow( cflags, parent, name, f )
{
d = new MainWindowPrivate();
PartBase::setPartObject( TQT_TQOBJECT(this) );
diff --git a/tdeparts/mainwindow.h b/tdeparts/mainwindow.h
index b99527c00..4619a72cc 100644
--- a/tdeparts/mainwindow.h
+++ b/tdeparts/mainwindow.h
@@ -41,15 +41,15 @@ class MainWindowPrivate;
* and don't forget to call setXMLFile() in the inherited constructor.
*
* It implements all internal interfaces in the case of a
- * KMainWindow as host: the builder and servant interface (for menu
+ * TDEMainWindow as host: the builder and servant interface (for menu
* merging).
*/
-class KPARTS_EXPORT MainWindow : public KMainWindow, virtual public PartBase
+class KPARTS_EXPORT MainWindow : public TDEMainWindow, virtual public PartBase
{
Q_OBJECT
public:
/**
- * Constructor, same signature as KMainWindow.
+ * Constructor, same signature as TDEMainWindow.
*/
#ifdef qdoc
MainWindow( TQWidget* parent, const char *name = 0L, WFlags f = WType_TopLevel | WDestructiveClose );
@@ -65,7 +65,7 @@ class KPARTS_EXPORT MainWindow : public KMainWindow, virtual public PartBase
MainWindow( const char *name = 0L, WFlags f = (WFlags)WDestructiveClose );
#endif
/**
- * Constructor with creation flags, see KMainWindow.
+ * Constructor with creation flags, see TDEMainWindow.
* @since 3.2
*/
#ifdef qdoc
diff --git a/tdeparts/part.cpp b/tdeparts/part.cpp
index 034dc00b4..9372adc08 100644
--- a/tdeparts/part.cpp
+++ b/tdeparts/part.cpp
@@ -204,7 +204,7 @@ void Part::setWidget( TQWidget *widget )
// Since KParts objects are XML-based, shortcuts should
// be connected to the widget when the XML settings
- // are processed, rather than on KAction construction.
+ // are processed, rather than on TDEAction construction.
actionCollection()->setAutoConnectShortcuts( false );
}
diff --git a/tdeparts/part.h b/tdeparts/part.h
index 530da61c3..7550bce38 100644
--- a/tdeparts/part.h
+++ b/tdeparts/part.h
@@ -29,8 +29,8 @@
class TDEInstance;
class TQWidget;
-class KAction;
-class KActionCollection;
+class TDEAction;
+class TDEActionCollection;
class TQEvent;
struct QUnknownInterface;
@@ -554,7 +554,7 @@ public:
* Destructor.
* Applications using a ReadWritePart should make sure, before
* destroying it, to call closeURL().
- * In KMainWindow::queryClose(), for instance, they should allow
+ * In TDEMainWindow::queryClose(), for instance, they should allow
* closing only if the return value of closeURL() was true.
* This allows to cancel.
*/
@@ -578,7 +578,7 @@ public:
/**
* If the document has been modified, ask the user to save changes.
- * This method is meant to be called from KMainWindow::queryClose().
+ * This method is meant to be called from TDEMainWindow::queryClose().
* It will also be called from closeURL().
*
* @return true if closeURL() can be called without the user losing
@@ -605,7 +605,7 @@ public:
/**
* Call this method instead of the above if you need control if
* the save prompt is shown. For example, if you call queryClose()
- * from KMainWindow::queryClose(), you would not want to prompt
+ * from TDEMainWindow::queryClose(), you would not want to prompt
* again when closing the url.
*
* Equivalent to promptToSave ? closeURL() : ReadOnlyPart::closeURL()
diff --git a/tdeparts/statusbarextension.cpp b/tdeparts/statusbarextension.cpp
index 02dd79acb..f0c7204ae 100644
--- a/tdeparts/statusbarextension.cpp
+++ b/tdeparts/statusbarextension.cpp
@@ -135,7 +135,7 @@ KStatusBar * StatusBarExtension::statusBar() const
{
if ( !m_statusBar ) {
TQWidget* w = static_cast<KParts::ReadOnlyPart*>(parent())->widget();
- KMainWindow* mw = tqt_dynamic_cast<KMainWindow *>( w->topLevelWidget() );
+ TDEMainWindow* mw = tqt_dynamic_cast<TDEMainWindow *>( w->topLevelWidget() );
if ( mw )
m_statusBar = mw->statusBar();
}
diff --git a/tdeparts/statusbarextension.h b/tdeparts/statusbarextension.h
index fa635a12b..8e6ea062d 100644
--- a/tdeparts/statusbarextension.h
+++ b/tdeparts/statusbarextension.h
@@ -27,7 +27,7 @@
#include <tdelibs_export.h>
class KStatusBar;
-class KMainWindow;
+class TDEMainWindow;
class TQEvent;
namespace KParts
@@ -87,7 +87,7 @@ namespace KParts
void removeStatusBarItem( TQWidget * widget );
/**
- * @return the statusbar of the KMainWindow in which this part is currently embedded.
+ * @return the statusbar of the TDEMainWindow in which this part is currently embedded.
* WARNING: this could return 0L
*/
KStatusBar* statusBar() const;
@@ -95,7 +95,7 @@ namespace KParts
/**
* This allows the hosting application to set a particular KStatusBar
* for this part. If it doesn't do this, the statusbar used will be
- * the one of the KMainWindow in which the part is embedded.
+ * the one of the TDEMainWindow in which the part is embedded.
* Konqueror uses this to assign a view-statusbar to the part.
* The part should never call this method!
*/
diff --git a/tdeparts/tests/example.cpp b/tdeparts/tests/example.cpp
index e8495ffe9..34a96a334 100644
--- a/tdeparts/tests/example.cpp
+++ b/tdeparts/tests/example.cpp
@@ -32,19 +32,19 @@ Shell::Shell()
m_part1 = new Part1(this, m_splitter);
m_part2 = new Part2(this, m_splitter);
- KActionCollection *coll = actionCollection();
+ TDEActionCollection *coll = actionCollection();
- (void)new KAction( "&View local file", 0, this, TQT_SLOT( slotFileOpen() ), coll, "open_local_file" );
- (void)new KAction( "&View remote file", 0, this, TQT_SLOT( slotFileOpenRemote() ), coll, "open_remote_file" );
+ (void)new TDEAction( "&View local file", 0, this, TQT_SLOT( slotFileOpen() ), coll, "open_local_file" );
+ (void)new TDEAction( "&View remote file", 0, this, TQT_SLOT( slotFileOpenRemote() ), coll, "open_remote_file" );
- m_paEditFile = new KAction( "&Edit file", 0, this, TQT_SLOT( slotFileEdit() ), coll, "edit_file" );
- m_paCloseEditor = new KAction( "&Close file editor", 0, this, TQT_SLOT( slotFileCloseEditor() ), coll, "close_editor" );
+ m_paEditFile = new TDEAction( "&Edit file", 0, this, TQT_SLOT( slotFileEdit() ), coll, "edit_file" );
+ m_paCloseEditor = new TDEAction( "&Close file editor", 0, this, TQT_SLOT( slotFileCloseEditor() ), coll, "close_editor" );
m_paCloseEditor->setEnabled(false);
- KAction * paQuit = new KAction( "&Quit", 0, this, TQT_SLOT( close() ), coll, "shell_quit" );
+ TDEAction * paQuit = new TDEAction( "&Quit", 0, this, TQT_SLOT( close() ), coll, "shell_quit" );
paQuit->setIconSet(TQIconSet(BarIcon("exit")));
- (void)new KAction( "Yet another menu item", 0, coll, "shell_yami" );
- (void)new KAction( "Yet another submenu item", 0, coll, "shell_yasmi" );
+ (void)new TDEAction( "Yet another menu item", 0, coll, "shell_yami" );
+ (void)new TDEAction( "Yet another submenu item", 0, coll, "shell_yasmi" );
setCentralWidget( m_splitter );
m_splitter->setMinimumSize( 400, 300 );
diff --git a/tdeparts/tests/example.h b/tdeparts/tests/example.h
index b4bdead61..76541437d 100644
--- a/tdeparts/tests/example.h
+++ b/tdeparts/tests/example.h
@@ -5,7 +5,7 @@
#include <tdeparts/partmanager.h>
#include <tdeparts/mainwindow.h>
-class KAction;
+class TDEAction;
class TQWidget;
class Shell : public KParts::MainWindow
@@ -26,8 +26,8 @@ protected:
private:
- KAction * m_paEditFile;
- KAction * m_paCloseEditor;
+ TDEAction * m_paEditFile;
+ TDEAction * m_paCloseEditor;
KParts::ReadOnlyPart *m_part1;
KParts::Part *m_part2;
diff --git a/tdeparts/tests/ghostview.cpp b/tdeparts/tests/ghostview.cpp
index c94823aaf..c365bcfcb 100644
--- a/tdeparts/tests/ghostview.cpp
+++ b/tdeparts/tests/ghostview.cpp
@@ -20,10 +20,10 @@ Shell::Shell()
{
setXMLFile( "ghostviewtest_shell.rc" );
- KAction * paOpen = new KAction( "&Open file" , "fileopen", 0, this,
+ TDEAction * paOpen = new TDEAction( "&Open file" , "fileopen", 0, this,
TQT_SLOT( slotFileOpen() ), actionCollection(), "file_open" );
- KAction * paQuit = new KAction( "&Quit" , "exit", 0, this, TQT_SLOT( close() ), actionCollection(), "file_quit" );
+ TDEAction * paQuit = new TDEAction( "&Quit" , "exit", 0, this, TQT_SLOT( close() ), actionCollection(), "file_quit" );
// Try to find a postscript component first
TDETrader::OfferList offers = TDETrader::self()->query("application/postscript", "('KParts/ReadOnlyPart' in ServiceTypes) or ('Browser/View' in ServiceTypes)");
diff --git a/tdeparts/tests/normalktm.cpp b/tdeparts/tests/normalktm.cpp
index 277f3ccde..b3907402e 100644
--- a/tdeparts/tests/normalktm.cpp
+++ b/tdeparts/tests/normalktm.cpp
@@ -29,21 +29,21 @@ Shell::Shell()
TQPopupMenu * pFile = new TQPopupMenu( this );
menuBar()->insertItem( "File", pFile );
TQObject * coll = this;
- KAction * paLocal = new KAction( "&View local file", 0, this, TQT_SLOT( slotFileOpen() ), coll, "open_local_file" );
+ TDEAction * paLocal = new TDEAction( "&View local file", 0, this, TQT_SLOT( slotFileOpen() ), coll, "open_local_file" );
// No XML : we need to plug our actions ourselves
paLocal->plug( pFile );
- KAction * paRemote = new KAction( "&View remote file", 0, this, TQT_SLOT( slotFileOpenRemote() ), coll, "open_remote_file" );
+ TDEAction * paRemote = new TDEAction( "&View remote file", 0, this, TQT_SLOT( slotFileOpenRemote() ), coll, "open_remote_file" );
paRemote->plug( pFile );
- m_paEditFile = new KAction( "&Edit file", 0, this, TQT_SLOT( slotFileEdit() ), coll, "edit_file" );
+ m_paEditFile = new TDEAction( "&Edit file", 0, this, TQT_SLOT( slotFileEdit() ), coll, "edit_file" );
m_paEditFile->plug( pFile );
- m_paCloseEditor = new KAction( "&Close file editor", 0, this, TQT_SLOT( slotFileCloseEditor() ), coll, "close_editor" );
+ m_paCloseEditor = new TDEAction( "&Close file editor", 0, this, TQT_SLOT( slotFileCloseEditor() ), coll, "close_editor" );
m_paCloseEditor->setEnabled(false);
m_paCloseEditor->plug( pFile );
- KAction * paQuit = new KAction( "&Quit", 0, this, TQT_SLOT( close() ), coll, "shell_quit" );
+ TDEAction * paQuit = new TDEAction( "&Quit", 0, this, TQT_SLOT( close() ), coll, "shell_quit" );
paQuit->setIconSet(TQIconSet(BarIcon("exit")));
paQuit->plug( pFile );
diff --git a/tdeparts/tests/normalktm.h b/tdeparts/tests/normalktm.h
index 26a93a52a..7183690f0 100644
--- a/tdeparts/tests/normalktm.h
+++ b/tdeparts/tests/normalktm.h
@@ -5,10 +5,10 @@
#include <tdeparts/part.h>
#include <kmainwindow.h>
-class KAction;
+class TDEAction;
class TQWidget;
-class Shell : public KMainWindow
+class Shell : public TDEMainWindow
{
Q_OBJECT
public:
@@ -26,8 +26,8 @@ protected:
private:
- KAction * m_paEditFile;
- KAction * m_paCloseEditor;
+ TDEAction * m_paEditFile;
+ TDEAction * m_paCloseEditor;
KParts::ReadOnlyPart *m_part1;
KParts::Part *m_part2;
diff --git a/tdeparts/tests/notepad.cpp b/tdeparts/tests/notepad.cpp
index 6494288cd..f2b43ccda 100644
--- a/tdeparts/tests/notepad.cpp
+++ b/tdeparts/tests/notepad.cpp
@@ -26,7 +26,7 @@ NotepadPart::NotepadPart( TQWidget* parentWidget, const char*,
m_edit = new TQMultiLineEdit( parentWidget, "NotepadPart's multiline edit" );
setWidget( m_edit );
- (void)new KAction( "Search and replace", 0, this, TQT_SLOT( slotSearchReplace() ), actionCollection(), "searchreplace" );
+ (void)new TDEAction( "Search and replace", 0, this, TQT_SLOT( slotSearchReplace() ), actionCollection(), "searchreplace" );
setXMLFile( "notepadpart.rc" );
setReadWrite( true );
}
diff --git a/tdeparts/tests/parts.cpp b/tdeparts/tests/parts.cpp
index 2fc63c225..f41063ef9 100644
--- a/tdeparts/tests/parts.cpp
+++ b/tdeparts/tests/parts.cpp
@@ -27,7 +27,7 @@ Part1::Part1( TQObject *parent, TQWidget * parentWidget )
setWidget( m_edit );
setXMLFile( "tdepartstest_part1.rc" );
- /*KAction * paBlah = */ new KAction( "Blah", "filemail", 0, actionCollection(), "p1_blah" );
+ /*TDEAction * paBlah = */ new TDEAction( "Blah", "filemail", 0, actionCollection(), "p1_blah" );
}
Part1::~Part1()
diff --git a/tdeparts/tests/plugin_spellcheck.cpp b/tdeparts/tests/plugin_spellcheck.cpp
index 5521bf22f..dcdf33312 100644
--- a/tdeparts/tests/plugin_spellcheck.cpp
+++ b/tdeparts/tests/plugin_spellcheck.cpp
@@ -11,7 +11,7 @@ PluginSpellCheck::PluginSpellCheck( TQObject* parent, const char* name,
const TQStringList& )
: Plugin( parent, name )
{
- (void) new KAction( "&Select current line (plugin)", 0, this, TQT_SLOT(slotSpellCheck()),
+ (void) new TDEAction( "&Select current line (plugin)", 0, this, TQT_SLOT(slotSpellCheck()),
actionCollection(), "spellcheck" );
}