Rename KApplication to TDEApplication to avoid conflicts with KDE4

pull/1/head
Timothy Pearson 11 years ago
parent 634845c7a2
commit 92ac6833a9

@ -23,7 +23,7 @@ int main(int argc, char *argv[])
about.addAuthor("Danny Allen", I18N_NOOP("Design, Graphics and Sounds"), "danny@dannyallen.co.uk");
about.addCredit("Steve Jordi", I18N_NOOP("GPL'ed his 'Steve' font so that we could use it"), "steve@sjordi.com");
TDECmdLineArgs::init(argc, argv, &about);
KApplication app;
TDEApplication app;
app.connect(&app, TQT_SIGNAL(lastWindowClosed()), &app, TQT_SLOT(quit()));
TQFont f("Steve", 12, TQFont::Normal, true);

@ -67,7 +67,7 @@ int main(int argc, char **argv)
about.addCredit( "Inge Wallin", I18N_NOOP( "Code cleaning, the molecule parser and a lot of smaller improvements" ));
TDECmdLineArgs::init(argc, argv, &about);
TDECmdLineArgs::addCmdLineOptions( options );
KApplication app;
TDEApplication app;
Kalzium *mainWin = 0;
if (app.isRestored())

@ -34,7 +34,7 @@ int main(int argc, char *argv[])
about.addAuthor("Danny Allen", I18N_NOOP("Design, Graphics and many Vocabularies"), "danny@dannyallen.co.uk");
about.addCredit("Artemiy Pavlov", I18N_NOOP("Sound effects"), 0, "http://artemiolabs.com");
TDECmdLineArgs::init(argc, argv, &about);
KApplication app;
TDEApplication app;
app.connect(&app, TQT_SIGNAL(lastWindowClosed()), &app, TQT_SLOT(quit()));
KanagramSettings::setJustGotFont(false);

@ -46,7 +46,7 @@ int main(int argc, char * argv[])
aboutData.addAuthor("Sebastian Stein",0, "seb.kde@hpfsc.de");
TDECmdLineArgs::init( argc, argv, &aboutData );
KApplication kbruch;
TDEApplication kbruch;
MainQtWidget * kbruchApp = new MainQtWidget();
kbruch.setMainWidget(kbruchApp);

@ -46,7 +46,7 @@ int main(int argc, char *argv[])
TDECmdLineArgs::init( argc, argv, &aboutData );
TDECmdLineArgs::addCmdLineOptions( options ); // Add our own options.
KApplication a;
TDEApplication a;
TDECmdLineArgs *args = TDECmdLineArgs::parsedArgs();
// start as KEduca TestMaster

@ -44,7 +44,7 @@ int main(int argc, char *argv[])
TDECmdLineArgs::init( argc, argv, &aboutData );
TDECmdLineArgs::addCmdLineOptions( options ); // Add our own options.
KApplication a;
TDEApplication a;
TDECmdLineArgs *args = TDECmdLineArgs::parsedArgs();
// start as KEduca Builder

@ -29,7 +29,7 @@ int main(int argc, char *argv[])
about.addCredit("Yann Verley", I18N_NOOP("Contributed some maps and map generation tools"), "yann.verley@free.fr");
about.addCredit(I18N_NOOP("Sodipodi flags collection"), I18N_NOOP("Got some flags from it"), 0, "http://www.sodipodi.com/index.php3?section=clipart/flags");
TDECmdLineArgs::init(argc, argv, &about);
KApplication app;
TDEApplication app;
app.setTopWidget(new kgeography());

@ -112,7 +112,7 @@ int main(int argc, char **argv)
I18N_NOOP("Code cleaning"), "inge@lysator.liu.se");
TDECmdLineArgs::init( argc, argv, &aboutData );
TDECmdLineArgs::addCmdLineOptions( options );
KApplication app;
TDEApplication app;
KHangMan *mainWin = 0;
TQFont f("Domestic Manners", 12, TQFont::Normal, true);

@ -86,7 +86,7 @@ Kig::Kig()
// if we couldn't find our Part, we exit since the Shell by
// itself can't do anything useful
KMessageBox::error(this, i18n( "Could not find the necessary Kig library, check your installation." ) );
KApplication::exit();
TDEApplication::exit();
return;
}

@ -52,7 +52,7 @@ int main(int argc, char *argv[])
TDECmdLineArgs::init(argc, argv, &aboutData);
TDECmdLineArgs::addCmdLineOptions(options); // Add our own options.
KApplication a;
TDEApplication a;
// a.installKDEPropertyMap();
// TQSqlPropertyMap *map = TQSqlPropertyMap::defaultMap();
// map->insert("MyStringList", "value");

@ -47,7 +47,7 @@ int main(int argc, char *argv[])
TDECmdLineArgs::init( argc, argv, &aboutData );
TDECmdLineArgs::addCmdLineOptions( options ); // Add our own options.
KApplication a;
TDEApplication a;
KLatin *klatin = new KLatin();

@ -92,7 +92,7 @@ int main(int argc, char **argv)
I18N_NOOP("Timer setting widgets"), "michael.goettsche AT kdemail.net");
TDECmdLineArgs::init(argc, argv, &about);
TDECmdLineArgs::addCmdLineOptions(options);
KApplication app;
TDEApplication app;
// see if we are starting with session management
if (app.isRestored())

@ -369,7 +369,7 @@ void MainDlg::slotOpenRecent( const KURL &url )
TQByteArray data;
TQDataStream stream(data, IO_WriteOnly);
stream << url;
KApplication::kApplication()->dcopClient()->send(KApplication::kApplication()->dcopClient()->appId(), "KmPlotShell","openFileInNewWindow(KURL)", data);
TDEApplication::kApplication()->dcopClient()->send(TDEApplication::kApplication()->dcopClient()->appId(), "KmPlotShell","openFileInNewWindow(KURL)", data);
return;
}
@ -752,12 +752,12 @@ void MainDlg::setReadOnlyStatusBarText(const TQString &text)
void MainDlg::optionsConfigureKeys()
{
KApplication::kApplication()->dcopClient()->send(KApplication::kApplication()->dcopClient()->appId(), "KmPlotShell","optionsConfigureKeys()", TQByteArray());
TDEApplication::kApplication()->dcopClient()->send(TDEApplication::kApplication()->dcopClient()->appId(), "KmPlotShell","optionsConfigureKeys()", TQByteArray());
}
void MainDlg::optionsConfigureToolbars()
{
KApplication::kApplication()->dcopClient()->send(KApplication::kApplication()->dcopClient()->appId(), "KmPlotShell","optionsConfigureToolbars()", TQByteArray());
TDEApplication::kApplication()->dcopClient()->send(TDEApplication::kApplication()->dcopClient()->appId(), "KmPlotShell","optionsConfigureToolbars()", TQByteArray());
}
void MainDlg::resetZoom()

@ -56,7 +56,7 @@ double View::xmin = 0;
double View::xmax = 0;
View::View(bool const r, bool &mo, KPopupMenu *p, TQWidget* parent, const char* name ) : DCOPObject("View"), TQWidget( parent, name , WStaticContents ), buffer( width(), height() ), m_popupmenu(p), m_modified(mo), m_readonly(r), m_dcop_client(KApplication::kApplication()->dcopClient())
View::View(bool const r, bool &mo, KPopupMenu *p, TQWidget* parent, const char* name ) : DCOPObject("View"), TQWidget( parent, name , WStaticContents ), buffer( width(), height() ), m_popupmenu(p), m_modified(mo), m_readonly(r), m_dcop_client(TDEApplication::kApplication()->dcopClient())
{
csmode = csparam = -1;
cstype = 0;
@ -346,7 +346,7 @@ void View::plotfkt(Ufkt *ufkt, TQPainter *pDC)
y = m_parser->euler_method(x, ufkt);
if ( int(x*100)%2==0)
{
KApplication::kApplication()->processEvents(); //makes the program usable when drawing a complicated integral function
TDEApplication::kApplication()->processEvents(); //makes the program usable when drawing a complicated integral function
increaseProgressBar();
}
break;
@ -1283,7 +1283,7 @@ void View::findMinMaxValue(Ufkt *ufkt, char p_mode, bool minimum, double &dmin,
y = m_parser->euler_method(x, ufkt);
if ( int(x*100)%2==0)
{
KApplication::kApplication()->processEvents(); //makes the program usable when drawing a complicated integral function
TDEApplication::kApplication()->processEvents(); //makes the program usable when drawing a complicated integral function
increaseProgressBar();
}
break;
@ -1416,7 +1416,7 @@ void View::getYValue(Ufkt *ufkt, char p_mode, double x, double &y, const TQStri
y = m_parser->euler_method( x, ufkt );
if ( int(x*100)%2==0)
{
KApplication::kApplication()->processEvents(); //makes the program usable when drawing a complicated integral function
TDEApplication::kApplication()->processEvents(); //makes the program usable when drawing a complicated integral function
increaseProgressBar();
}
@ -1716,7 +1716,7 @@ void View::areaUnderGraph( Ufkt *ufkt, char const p_mode, double &dmin, double
y = m_parser->euler_method(x, ufkt);
if ( int(x*100)%2==0)
{
KApplication::kApplication()->processEvents(); //makes the program usable when drawing a complicated integral function
TDEApplication::kApplication()->processEvents(); //makes the program usable when drawing a complicated integral function
increaseProgressBar();
}
break;

@ -171,8 +171,8 @@ void KmPlot::fileNew()
// says that it should open a new window if the document is _not_
// in its initial state. This is what we do here..
if ( !m_part->url().isEmpty() || isModified() )
//KApplication::startServiceByDesktopName("kmplot");
KApplication::tdeinitExec("kmplot");
//TDEApplication::startServiceByDesktopName("kmplot");
TDEApplication::tdeinitExec("kmplot");
}
bool KmPlot::stopProgressBar()
@ -258,7 +258,7 @@ void KmPlot::fileOpen(const KURL &url)
void KmPlot::openFileInNewWindow(const KURL url)
{
KApplication::startServiceByDesktopName("kmplot",url.url());
TDEApplication::startServiceByDesktopName("kmplot",url.url());
}
bool KmPlot::checkModified()

@ -72,7 +72,7 @@ int main( int argc, char **argv )
TDECmdLineArgs::init( argc, argv, &aboutData );
TDECmdLineArgs::addCmdLineOptions( options ); // Add our own options.
KApplication ka;
TDEApplication ka;
TDECmdLineArgs* args = TDECmdLineArgs::parsedArgs();
KmPlot *w = new KmPlot( args );
w->show();

@ -57,7 +57,7 @@ int main( int argc, char *argv[] )
TDECmdLineArgs::init( argc, argv, &aboutData );
TDECmdLineArgs::addCmdLineOptions( options ); // Add our own options.
KApplication a;
TDEApplication a;
KPercentage *kpercentage = new KPercentage( "kpercentage" );
a.setMainWidget( kpercentage );

@ -126,7 +126,7 @@ void FindDialog::filter() { //Filter the list of names with the string in the S
if ( name->text().lower().startsWith( searchFor ) ) {
new SkyObjectNameListItem ( SearchList, name );
/* if ( i++ >= 5000 ) { //Every 5000 name insertions,
kapp->processEvents ( 50 ); //spend 50 msec processing KApplication events
kapp->processEvents ( 50 ); //spend 50 msec processing TDEApplication events
i = 0;
}*/
}

@ -65,7 +65,7 @@ int main(int argc, char *argv[])
TDECmdLineArgs::addCmdLineOptions( options ); // Add our own options.
TDECmdLineArgs *args = TDECmdLineArgs::parsedArgs();
KApplication a;
TDEApplication a;
if ( args->isSet( "dump" ) ) {
kdDebug() << i18n( "Dumping sky image" ) << endl;

@ -44,7 +44,7 @@ int main(int argc, char **argv)
about.addCredit( "All the creators of training and keyboard files", 0, 0);
TDECmdLineArgs::init(argc, argv, &about);
TDECmdLineArgs::addCmdLineOptions( options );
KApplication app;
TDEApplication app;
KTouch *mainWin = 0;
if (app.isRestored()) {

@ -894,7 +894,7 @@ void Executer::execRandom(TreeNode* node)
if ( !checkParameterType(node, numberValue, 5060) ) return;
double x = nodeX->getValue().Number();
double y = nodeY->getValue().Number();
double r = (double)( KApplication::random() ) / RAND_MAX;
double r = (double)( TDEApplication::random() ) / RAND_MAX;
node->setValue( r * ( y - x ) + x );
}

@ -89,7 +89,7 @@ int main(int argc, char **argv)
"astals11 # terra.es");
TDECmdLineArgs::init(argc, argv, &about);
TDECmdLineArgs::addCmdLineOptions( options );
KApplication app;
TDEApplication app;
MainWindow *mainwindow = 0;
if ( app.isRestored() )

@ -48,7 +48,7 @@ class KFeederControl;
* KVerbosApp reimplements the methods that KMainWindow provides for main window handling and supports
* full session management as well as using KActions.
* @see KMainWindow
* @see KApplication
* @see TDEApplication
* @see KConfig
*
* @author Source Framework Automatically Generated by KDevelop, (c) The KDevelop Team.
@ -113,7 +113,7 @@ class KVerbosApp : public KMainWindow
*/
virtual bool queryExit();
/** saves the window properties for each open window during session end to the session config file, including saving the currently
* opened file by a temporary filename provided by KApplication.
* opened file by a temporary filename provided by TDEApplication.
* @see KTMainWindow#saveProperties
*/
virtual void saveProperties(KConfig *_cfg);

@ -41,7 +41,7 @@ class KVerbosUser;
*
* The KVerbosDoc class provides a document object that can be used in conjunction with
* the classes KVerbosApp and KVerbosView to create a document-view model for standard KDE
* applications based on KApplication and KMainWindow. Thereby, the document object
* applications based on TDEApplication and KMainWindow. Thereby, the document object
* is created by the KVerbosApp instance and contains the document structure with the
* according methods for manipulation of the document data by KVerbosView objects. Also,
* KVerbosDoc contains the methods for serialization of the document data from and to files.

@ -43,7 +43,7 @@ int main(int argc, char *argv[])
TDECmdLineArgs::init( argc, argv, &aboutData );
TDECmdLineArgs::addCmdLineOptions( options ); // Add our own options.
KApplication app;
TDEApplication app;
if (app.isRestored())
{

@ -800,13 +800,13 @@ void LanguageOptions::enableLangWidgets()
//kdDebug() << "enabled? " << enabled << endl;
if (enabled && KApplication::dcopClient()->isApplicationRegistered("kxkb"))
if (enabled && TDEApplication::dcopClient()->isApplicationRegistered("kxkb"))
{
TQByteArray data;
TQCString replyType;
TQByteArray replyData;
if (!KApplication::dcopClient()->call("kxkb", "kxkb", "getLayoutsList()", data, replyType, replyData))
if (!TDEApplication::dcopClient()->call("kxkb", "kxkb", "getLayoutsList()", data, replyType, replyData))
{
//kdDebug() << "kxkb dcop error" << endl;
}

@ -34,7 +34,7 @@
void kvoctrainApp::saveOptions()
{
KConfig *config = KApplication::kApplication()->config();
KConfig *config = TDEApplication::kApplication()->config();
fileOpenRecent->saveEntries(config, "Recent Files");
if (view)
@ -75,7 +75,7 @@ void kvoctrainApp::saveLanguages()
void kvoctrainApp::readOptions()
{
KConfig *config = KApplication::kApplication()->config();
KConfig *config = TDEApplication::kApplication()->config();
fileOpenRecent->loadEntries(config, "Recent Files");
/*
int ls = Prefs::numPreSetting();

@ -100,7 +100,7 @@ public:
void readLanguages();
/** saves the window properties for each open window during session end to the session config file, including saving the currently
* opened file by a temporary filename provided by KApplication.
* opened file by a temporary filename provided by TDEApplication.
* @see KMainWindow#saveProperties
*/
virtual void saveProperties(KConfig* );

@ -78,7 +78,7 @@ void KVocTrainTable::setCurrentItem(int row)
/*
TQWidget* KVocTrainTable::beginEdit(int row, int col, bool replace)
{
if (KApplication::dcopClient()->isApplicationRegistered("kxkb"))
if (TDEApplication::dcopClient()->isApplicationRegistered("kxkb"))
{
if (m_doc)
{
@ -95,7 +95,7 @@ TQWidget* KVocTrainTable::beginEdit(int row, int col, bool replace)
TQDataStream arg(data, IO_WriteOnly);
arg << kbLayout;
if (!KApplication::dcopClient()->call("kxkb", "kxkb", "setLayout(TQString)", data, replyType, replyData))
if (!TDEApplication::dcopClient()->call("kxkb", "kxkb", "setLayout(TQString)", data, replyType, replyData))
{
kdDebug() << "kxkb dcop error: beginEdit()" << endl;
}
@ -575,7 +575,7 @@ void KVocTrainTable::activateNextCell()
void KVocTrainTable::slotCurrentChanged(int row, int col)
{
Q_UNUSED(row);
if (KApplication::dcopClient()->isApplicationRegistered("kxkb"))
if (TDEApplication::dcopClient()->isApplicationRegistered("kxkb"))
{
if (m_doc)
{
@ -592,7 +592,7 @@ void KVocTrainTable::slotCurrentChanged(int row, int col)
TQDataStream arg(data, IO_WriteOnly);
arg << kbLayout;
if (!KApplication::dcopClient()->call("kxkb", "kxkb", "setLayout(TQString)", data, replyType, replyData))
if (!TDEApplication::dcopClient()->call("kxkb", "kxkb", "setLayout(TQString)", data, replyType, replyData))
{
kdDebug() << "kxkb dcop error: beginEdit()" << endl;
}

@ -33,7 +33,7 @@
class TQGridLayout;
class TQFrame;
class KApplication;
class TDEApplication;
class KPrinter;
class kvoctrainExpr;
class KVocTrainTable;

@ -94,7 +94,7 @@ static const char version[] = KVOCTRAIN_VERSION_STRING;
TDECmdLineArgs::init( argc, argv, &aboutData );
TDECmdLineArgs::addCmdLineOptions( options );
KApplication app;
TDEApplication app;
kvoctrainApp *kva = 0;
if (app.isRestored()) {

@ -301,7 +301,7 @@ void writeToKvtml(TQTextStream &os, TQString month, TQString year)
int main(int argc, char **argv)
{
// use i18n-strings from kvoctrain
KApplication app(argc,argv, "kvoctrain");
TDEApplication app(argc,argv, "kvoctrain");
if (argc != 4) {
cerr << i18n("usage: spotlight2kvtml spotfile month year\n\n").local8Bit().data();

@ -51,7 +51,7 @@ class KWQNewStuff;
* KWordQuizApp reimplements the methods that KMainWindow provides for main window handling and supports
* full session management as well as using KActions.
* @see KMainWindow
* @see KApplication
* @see TDEApplication
* @see KConfig
*
* @author Source Framework Automatically Generated by KDevelop, (c) The KDevelop Team.
@ -114,7 +114,7 @@ class KWordQuizApp : public KMainWindow
*/
virtual bool queryExit();
/** saves the window properties for each open window during session end to the session config file, including saving the currently
* opened file by a temporary filename provided by KApplication.
* opened file by a temporary filename provided by TDEApplication.
* @see KTMainWindow#saveProperties
*/
virtual void saveProperties(KConfig *_cfg);

@ -33,7 +33,7 @@ class KWordQuizView;
/** KWordQuizDoc provides a document object for a document-view model.
*
* The KWordQuizDoc class provides a document object that can be used in conjunction with the classes KWordQuizApp and KWordQuizView
* to create a document-view model for standard TDE applications based on KApplication and KMainWindow. Thereby, the document object
* to create a document-view model for standard TDE applications based on TDEApplication and KMainWindow. Thereby, the document object
* is created by the KWordQuizApp instance and contains the document structure with the according methods for manipulation of the document
* data by KWordQuizView objects. Also, KWordQuizDoc contains the methods for serialization of the document data from and to files.
*

@ -51,7 +51,7 @@ int main(int argc, char *argv[])
TDECmdLineArgs::init( argc, argv, &aboutData );
TDECmdLineArgs::addCmdLineOptions( options ); // Add our own options.
KApplication app;
TDEApplication app;
if (app.isRestored())
{

@ -22,7 +22,7 @@ int main( int argc, char *argv[] )
TDECmdLineArgs::init( argc, argv, &aboutData );
KApplication a;
TDEApplication a;
TestWidget *t = new TestWidget(0,0);
t->show();
TQObject::connect(kapp, TQT_SIGNAL(lastWindowClosed()), kapp, TQT_SLOT(quit()));

Loading…
Cancel
Save