summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-31 21:46:40 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-31 21:46:40 -0600
commitacf699af8244896500e654cccdc8aae7e5b545db (patch)
tree9ddbc02f8dfa15b0f6090b909322b8ebde91e3bd
parent1d53865a04b4bcbab61f730bcbcc5452e9d04ce7 (diff)
downloadrosegarden-acf699af.tar.gz
rosegarden-acf699af.zip
Rename KStartup for enhanced compatibility with KDE4
-rw-r--r--src/GUIFileList.txt4
-rw-r--r--src/document/RoseXmlHandler.cpp6
-rw-r--r--src/document/RosegardenGUIDoc.cpp22
-rw-r--r--src/gui/application/RosegardenGUIApp.cpp30
-rw-r--r--src/gui/application/RosegardenGUIApp.cpp.orig30
-rw-r--r--src/gui/application/main.cpp8
-rw-r--r--src/gui/editors/notation/NoteFontFactory.cpp8
-rw-r--r--src/gui/editors/notation/NotePixmapFactory.cpp4
-rw-r--r--src/gui/kdeext/TDEStartupLogo.cpp (renamed from src/gui/kdeext/KStartupLogo.cpp)28
-rw-r--r--src/gui/kdeext/TDEStartupLogo.h (renamed from src/gui/kdeext/KStartupLogo.h)10
-rw-r--r--src/gui/seqmanager/SequenceManager.cpp10
11 files changed, 80 insertions, 80 deletions
diff --git a/src/GUIFileList.txt b/src/GUIFileList.txt
index 37838f6..4f65cfa 100644
--- a/src/GUIFileList.txt
+++ b/src/GUIFileList.txt
@@ -728,8 +728,8 @@ SET(gui_SRCS
gui/general/StaffLine.h
gui/kdeext/KLedButton.cpp
gui/kdeext/KLedButton.h
- gui/kdeext/KStartupLogo.cpp
- gui/kdeext/KStartupLogo.h
+ gui/kdeext/TDEStartupLogo.cpp
+ gui/kdeext/TDEStartupLogo.h
gui/kdeext/KTmpStatusMsg.cpp
gui/kdeext/KTmpStatusMsg.h
gui/kdeext/QCanvasGroupableItem.cpp
diff --git a/src/document/RoseXmlHandler.cpp b/src/document/RoseXmlHandler.cpp
index 29f209c..1dc572b 100644
--- a/src/document/RoseXmlHandler.cpp
+++ b/src/document/RoseXmlHandler.cpp
@@ -52,7 +52,7 @@
#include "gui/application/RosegardenApplication.h"
#include "gui/dialogs/FileLocateDialog.h"
#include "gui/general/ProgressReporter.h"
-#include "gui/kdeext/KStartupLogo.h"
+#include "gui/kdeext/TDEStartupLogo.h"
#include "gui/studio/AudioPlugin.h"
#include "gui/studio/AudioPluginManager.h"
#include "gui/widgets/CurrentProgressDialog.h"
@@ -447,7 +447,7 @@ RoseXmlHandler::startElement(const TQString& namespaceURI,
minor > RosegardenGUIDoc::FILE_FORMAT_VERSION_MINOR) {
CurrentProgressDialog::freeze();
- KStartupLogo::hideIfStillThere();
+ TDEStartupLogo::hideIfStillThere();
KMessageBox::information(0, i18n("This file was written by Rosegarden %1, which is more recent than this version.\nThere may be some incompatibilities with the file format.").arg(version));
@@ -1032,7 +1032,7 @@ RoseXmlHandler::startElement(const TQString& namespaceURI,
CurrentProgressDialog::freeze();
// Hide splash screen if present on startup
- KStartupLogo::hideIfStillThere();
+ TDEStartupLogo::hideIfStillThere();
// Create a locate file dialog - give it the file name
// and the AudioFileManager path that we've already
diff --git a/src/document/RosegardenGUIDoc.cpp b/src/document/RosegardenGUIDoc.cpp
index 6d38f5c..028e7d3 100644
--- a/src/document/RosegardenGUIDoc.cpp
+++ b/src/document/RosegardenGUIDoc.cpp
@@ -71,7 +71,7 @@
#include "gui/editors/segment/TrackLabel.h"
#include "gui/general/EditViewBase.h"
#include "gui/general/GUIPalette.h"
-#include "gui/kdeext/KStartupLogo.h"
+#include "gui/kdeext/TDEStartupLogo.h"
#include "gui/seqmanager/SequenceManager.h"
#include "gui/studio/AudioPluginManager.h"
#include "gui/studio/StudioControl.h"
@@ -576,7 +576,7 @@ bool RosegardenGUIDoc::openDocument(const TQString& filename,
// Check if file readable with fileInfo ?
if (!fileInfo.isReadable() || fileInfo.isDir()) {
- KStartupLogo::hideIfStillThere();
+ TDEStartupLogo::hideIfStillThere();
TQString msg(i18n("Can't open file '%1'").arg(filename));
KMessageBox::sorry(0, msg);
return false;
@@ -637,7 +637,7 @@ bool RosegardenGUIDoc::openDocument(const TQString& filename,
}
if (!okay) {
- KStartupLogo::hideIfStillThere();
+ TDEStartupLogo::hideIfStillThere();
TQString msg(i18n("Error when parsing file '%1': \"%2\"")
.arg(filename)
.arg(errMsg));
@@ -694,7 +694,7 @@ bool RosegardenGUIDoc::openDocument(const TQString& filename,
// generate any audio previews after loading the files
m_audioFileManager.generatePreviews();
} catch (Exception e) {
- KStartupLogo::hideIfStillThere();
+ TDEStartupLogo::hideIfStillThere();
CurrentProgressDialog::freeze();
KMessageBox::error(0, strtoqstr(e.getMessage()));
CurrentProgressDialog::thaw();
@@ -1601,7 +1601,7 @@ RosegardenGUIDoc::xmlParse(TQString fileContents, TQString &errMsg,
if (handler.isCancelled()) {
RG_DEBUG << "File load cancelled\n";
- KStartupLogo::hideIfStillThere();
+ TDEStartupLogo::hideIfStillThere();
KMessageBox::information(0, i18n("File load cancelled"));
cancelled = true;
return true;
@@ -1614,7 +1614,7 @@ RosegardenGUIDoc::xmlParse(TQString fileContents, TQString &errMsg,
if (getSequenceManager() &&
!(getSequenceManager()->getSoundDriverStatus() & AUDIO_OK)) {
- KStartupLogo::hideIfStillThere();
+ TDEStartupLogo::hideIfStillThere();
CurrentProgressDialog::freeze();
if (handler.hasActiveAudio() ||
@@ -1659,7 +1659,7 @@ RosegardenGUIDoc::xmlParse(TQString fileContents, TQString &errMsg,
if (er == 0) er = *rates.begin();
- KStartupLogo::hideIfStillThere();
+ TDEStartupLogo::hideIfStillThere();
CurrentProgressDialog::freeze();
KMessageBox::information(0, i18n("<h3>Incorrect audio sample rate</h3><p>This composition contains audio files that were recorded or imported with the audio server running at a different sample rate (%1 Hz) from the current JACK server sample rate (%2 Hz).</p><p>Rosegarden will play this composition at the correct speed, but any audio files in it will probably sound awful.</p><p>Please consider re-starting the JACK server at the correct rate (%3 Hz) and re-loading this composition before you do any more work with it.</p>").arg(er).arg(sr).arg(er));
@@ -1669,7 +1669,7 @@ RosegardenGUIDoc::xmlParse(TQString fileContents, TQString &errMsg,
} else if (sr != 0 && mixed) {
- KStartupLogo::hideIfStillThere();
+ TDEStartupLogo::hideIfStillThere();
CurrentProgressDialog::freeze();
KMessageBox::information(0, i18n("<h3>Inconsistent audio sample rates</h3><p>This composition contains audio files at more than one sample rate.</p><p>Rosegarden will play them at the correct speed, but any audio files that were recorded or imported at rates different from the current JACK server sample rate (%1 Hz) will probably sound awful.</p><p>Please see the audio file manager dialog for more details, and consider resampling any files that are at the wrong rate.</p>").arg(sr),
@@ -1699,7 +1699,7 @@ RosegardenGUIDoc::xmlParse(TQString fileContents, TQString &errMsg,
}
msg += "</ul>";
- KStartupLogo::hideIfStillThere();
+ TDEStartupLogo::hideIfStillThere();
CurrentProgressDialog::freeze();
KMessageBox::information(0, msg);
CurrentProgressDialog::thaw();
@@ -1712,7 +1712,7 @@ RosegardenGUIDoc::xmlParse(TQString fileContents, TQString &errMsg,
TQString msg(i18n("This file contains one or more old element types that are now deprecated.\nSupport for these elements may disappear in future versions of Rosegarden.\nWe recommend you re-save this file from this version of Rosegarden to ensure that it can still be re-loaded in future versions."));
slotDocumentModified(); // so file can be re-saved immediately
- KStartupLogo::hideIfStillThere();
+ TDEStartupLogo::hideIfStillThere();
CurrentProgressDialog::freeze();
KMessageBox::information(0, msg);
CurrentProgressDialog::thaw();
@@ -2802,7 +2802,7 @@ RosegardenGUIDoc::finalizeAudioFile(InstrumentId iid)
//!!! mtr just for now?: or better to do this once after the fact?
//!!! m_audioFileManager.generatePreviews();
} catch (Exception e) {
- KStartupLogo::hideIfStillThere();
+ TDEStartupLogo::hideIfStillThere();
CurrentProgressDialog::freeze();
KMessageBox::error(0, strtoqstr(e.getMessage()));
CurrentProgressDialog::thaw();
diff --git a/src/gui/application/RosegardenGUIApp.cpp b/src/gui/application/RosegardenGUIApp.cpp
index 1cc510c..9afa803 100644
--- a/src/gui/application/RosegardenGUIApp.cpp
+++ b/src/gui/application/RosegardenGUIApp.cpp
@@ -139,7 +139,7 @@
#include "gui/editors/segment/TriggerSegmentManager.h"
#include "gui/editors/tempo/TempoView.h"
#include "gui/general/EditViewBase.h"
-#include "gui/kdeext/KStartupLogo.h"
+#include "gui/kdeext/TDEStartupLogo.h"
#include "gui/kdeext/KTmpStatusMsg.h"
#include "gui/seqmanager/MidiFilterDialog.h"
#include "gui/seqmanager/SequenceManager.h"
@@ -312,7 +312,7 @@ RosegardenGUIApp::RosegardenGUIApp(bool useSequencer,
// If no connection to JACK
// try to launch JACK - if the configuration wants us to.
if (!launchJack()) {
- KStartupLogo::hideIfStillThere();
+ TDEStartupLogo::hideIfStillThere();
KMessageBox::error(this, i18n("Attempted to launch JACK audio daemon failed. Audio will be disabled.\nPlease check configuration (Settings -> Configure Rosegarden -> Audio -> Startup)\n and restart."));
}
} else {
@@ -1441,7 +1441,7 @@ void RosegardenGUIApp::initView()
m_seqManager->setLoop(0, 0);
stateChanged("have_range", KXMLGUIClient::StateReverse);
} catch (TQString s) {
- KStartupLogo::hideIfStillThere();
+ TDEStartupLogo::hideIfStillThere();
CurrentProgressDialog::freeze();
KMessageBox::error(this, s);
CurrentProgressDialog::thaw();
@@ -1715,13 +1715,13 @@ RosegardenGUIApp::createDocument(TQString filePath, ImportType importType)
if (!info.exists()) {
// can happen with command-line arg, so...
- KStartupLogo::hideIfStillThere();
+ TDEStartupLogo::hideIfStillThere();
KMessageBox::sorry(this, i18n("File \"%1\" does not exist").arg(filePath));
return 0;
}
if (info.isDir()) {
- KStartupLogo::hideIfStillThere();
+ TDEStartupLogo::hideIfStillThere();
KMessageBox::sorry(this, i18n("File \"%1\" is actually a directory"));
return 0;
}
@@ -1729,7 +1729,7 @@ RosegardenGUIApp::createDocument(TQString filePath, ImportType importType)
TQFile file(filePath);
if (!file.open(IO_ReadOnly)) {
- KStartupLogo::hideIfStillThere();
+ TDEStartupLogo::hideIfStillThere();
TQString errStr =
i18n("You do not have read permission for \"%1\"").arg(filePath);
@@ -1795,7 +1795,7 @@ RosegardenGUIApp::createDocumentFromRGFile(TQString filePath)
// At this point the splash screen may still be there, hide it if
// it's the case
- KStartupLogo::hideIfStillThere();
+ TDEStartupLogo::hideIfStillThere();
// It is, so ask the user if he wants to use the autosave file
int reply = KMessageBox::questionYesNo(this,
@@ -3709,7 +3709,7 @@ void RosegardenGUIApp::importProject(TQString filePath)
*proc << "--unpack";
*proc << filePath;
- KStartupLogo::hideIfStillThere();
+ TDEStartupLogo::hideIfStillThere();
proc->start(TDEProcess::Block, TDEProcess::All);
if (!proc->normalExit() || proc->exitStatus()) {
@@ -3774,7 +3774,7 @@ RosegardenGUIApp::guessTextCodec(std::string text)
if (text[c] & 0x80) {
CurrentProgressDialog::freeze();
- KStartupLogo::hideIfStillThere();
+ TDEStartupLogo::hideIfStillThere();
IdentifyTextCodecDialog dialog(0, text);
dialog.exec();
@@ -3862,7 +3862,7 @@ RosegardenGUIApp::createDocumentFromMIDIFile(TQString file)
MidiFile midiFile(fname,
&newDoc->getStudio());
- KStartupLogo::hideIfStillThere();
+ TDEStartupLogo::hideIfStillThere();
ProgressDialog progressDlg(i18n("Importing MIDI file..."),
200,
this);
@@ -4021,7 +4021,7 @@ void RosegardenGUIApp::slotMergeRG21()
RosegardenGUIDoc*
RosegardenGUIApp::createDocumentFromRG21File(TQString file)
{
- KStartupLogo::hideIfStillThere();
+ TDEStartupLogo::hideIfStillThere();
ProgressDialog progressDlg(
i18n("Importing Rosegarden 2.1 file..."), 100, this);
@@ -4108,7 +4108,7 @@ void RosegardenGUIApp::slotMergeHydrogen()
RosegardenGUIDoc*
RosegardenGUIApp::createDocumentFromHydrogenFile(TQString file)
{
- KStartupLogo::hideIfStillThere();
+ TDEStartupLogo::hideIfStillThere();
ProgressDialog progressDlg(
i18n("Importing Hydrogen file..."), 100, this);
@@ -4835,7 +4835,7 @@ void RosegardenGUIApp::slotSequencerExited(TDEProcess*)
{
RG_DEBUG << "RosegardenGUIApp::slotSequencerExited Sequencer exited\n";
- KStartupLogo::hideIfStillThere();
+ TDEStartupLogo::hideIfStillThere();
if (m_sequencerCheckedIn) {
@@ -6215,7 +6215,7 @@ RosegardenGUIApp::getArmedInstruments()
void
RosegardenGUIApp::showError(TQString error)
{
- KStartupLogo::hideIfStillThere();
+ TDEStartupLogo::hideIfStillThere();
CurrentProgressDialog::freeze();
// This is principally used for return values from DSSI plugin
@@ -8037,7 +8037,7 @@ void
RosegardenGUIApp::slotNewerVersionAvailable(TQString v)
{
if (m_firstRun) return;
- KStartupLogo::hideIfStillThere();
+ TDEStartupLogo::hideIfStillThere();
CurrentProgressDialog::freeze();
awaitDialogClearance();
KMessageBox::information
diff --git a/src/gui/application/RosegardenGUIApp.cpp.orig b/src/gui/application/RosegardenGUIApp.cpp.orig
index 4007322..4a009d2 100644
--- a/src/gui/application/RosegardenGUIApp.cpp.orig
+++ b/src/gui/application/RosegardenGUIApp.cpp.orig
@@ -139,7 +139,7 @@
#include "gui/editors/segment/TriggerSegmentManager.h"
#include "gui/editors/tempo/TempoView.h"
#include "gui/general/EditViewBase.h"
-#include "gui/kdeext/KStartupLogo.h"
+#include "gui/kdeext/TDEStartupLogo.h"
#include "gui/kdeext/KTmpStatusMsg.h"
#include "gui/seqmanager/MidiFilterDialog.h"
#include "gui/seqmanager/SequenceManager.h"
@@ -312,7 +312,7 @@ RosegardenGUIApp::RosegardenGUIApp(bool useSequencer,
// If no connection to JACK
// try to launch JACK - if the configuration wants us to.
if (!launchJack()) {
- KStartupLogo::hideIfStillThere();
+ TDEStartupLogo::hideIfStillThere();
KMessageBox::error(this, i18n("Attempted to launch JACK audio daemon failed. Audio will be disabled.\nPlease check configuration (Settings -> Configure Rosegarden -> Audio -> Startup)\n and restart."));
}
} else {
@@ -1441,7 +1441,7 @@ void RosegardenGUIApp::initView()
m_seqManager->setLoop(0, 0);
stateChanged("have_range", KXMLGUIClient::StateReverse);
} catch (TQString s) {
- KStartupLogo::hideIfStillThere();
+ TDEStartupLogo::hideIfStillThere();
CurrentProgressDialog::freeze();
KMessageBox::error(this, s);
CurrentProgressDialog::thaw();
@@ -1715,13 +1715,13 @@ RosegardenGUIApp::createDocument(TQString filePath, ImportType importType)
if (!info.exists()) {
// can happen with command-line arg, so...
- KStartupLogo::hideIfStillThere();
+ TDEStartupLogo::hideIfStillThere();
KMessageBox::sorry(this, i18n("File \"%1\" does not exist").arg(filePath));
return 0;
}
if (info.isDir()) {
- KStartupLogo::hideIfStillThere();
+ TDEStartupLogo::hideIfStillThere();
KMessageBox::sorry(this, i18n("File \"%1\" is actually a directory"));
return 0;
}
@@ -1729,7 +1729,7 @@ RosegardenGUIApp::createDocument(TQString filePath, ImportType importType)
TQFile file(filePath);
if (!file.open(IO_ReadOnly)) {
- KStartupLogo::hideIfStillThere();
+ TDEStartupLogo::hideIfStillThere();
TQString errStr =
i18n("You do not have read permission for \"%1\"").arg(filePath);
@@ -1795,7 +1795,7 @@ RosegardenGUIApp::createDocumentFromRGFile(TQString filePath)
// At this point the splash screen may still be there, hide it if
// it's the case
- KStartupLogo::hideIfStillThere();
+ TDEStartupLogo::hideIfStillThere();
// It is, so ask the user if he wants to use the autosave file
int reply = KMessageBox::questionYesNo(this,
@@ -3709,7 +3709,7 @@ void RosegardenGUIApp::importProject(TQString filePath)
*proc << "--unpack";
*proc << filePath;
- KStartupLogo::hideIfStillThere();
+ TDEStartupLogo::hideIfStillThere();
proc->start(TDEProcess::Block, TDEProcess::All);
if (!proc->normalExit() || proc->exitStatus()) {
@@ -3774,7 +3774,7 @@ RosegardenGUIApp::guessTextCodec(std::string text)
if (text[c] & 0x80) {
CurrentProgressDialog::freeze();
- KStartupLogo::hideIfStillThere();
+ TDEStartupLogo::hideIfStillThere();
IdentifyTextCodecDialog dialog(0, text);
dialog.exec();
@@ -3862,7 +3862,7 @@ RosegardenGUIApp::createDocumentFromMIDIFile(TQString file)
MidiFile midiFile(fname,
&newDoc->getStudio());
- KStartupLogo::hideIfStillThere();
+ TDEStartupLogo::hideIfStillThere();
ProgressDialog progressDlg(i18n("Importing MIDI file..."),
200,
this);
@@ -4021,7 +4021,7 @@ void RosegardenGUIApp::slotMergeRG21()
RosegardenGUIDoc*
RosegardenGUIApp::createDocumentFromRG21File(TQString file)
{
- KStartupLogo::hideIfStillThere();
+ TDEStartupLogo::hideIfStillThere();
ProgressDialog progressDlg(
i18n("Importing Rosegarden 2.1 file..."), 100, this);
@@ -4108,7 +4108,7 @@ void RosegardenGUIApp::slotMergeHydrogen()
RosegardenGUIDoc*
RosegardenGUIApp::createDocumentFromHydrogenFile(TQString file)
{
- KStartupLogo::hideIfStillThere();
+ TDEStartupLogo::hideIfStillThere();
ProgressDialog progressDlg(
i18n("Importing Hydrogen file..."), 100, this);
@@ -4835,7 +4835,7 @@ void RosegardenGUIApp::slotSequencerExited(TDEProcess*)
{
RG_DEBUG << "RosegardenGUIApp::slotSequencerExited Sequencer exited\n";
- KStartupLogo::hideIfStillThere();
+ TDEStartupLogo::hideIfStillThere();
if (m_sequencerCheckedIn) {
@@ -6215,7 +6215,7 @@ RosegardenGUIApp::getArmedInstruments()
void
RosegardenGUIApp::showError(TQString error)
{
- KStartupLogo::hideIfStillThere();
+ TDEStartupLogo::hideIfStillThere();
CurrentProgressDialog::freeze();
// This is principally used for return values from DSSI plugin
@@ -8007,7 +8007,7 @@ void
RosegardenGUIApp::slotNewerVersionAvailable(TQString v)
{
if (m_firstRun) return;
- KStartupLogo::hideIfStillThere();
+ TDEStartupLogo::hideIfStillThere();
CurrentProgressDialog::freeze();
awaitDialogClearance();
KMessageBox::information
diff --git a/src/gui/application/main.cpp b/src/gui/application/main.cpp
index 538e71b..ec9f867 100644
--- a/src/gui/application/main.cpp
+++ b/src/gui/application/main.cpp
@@ -47,7 +47,7 @@
#include "gui/application/RosegardenGUIApp.h"
#include "gui/widgets/CurrentProgressDialog.h"
#include "document/RosegardenGUIDoc.h"
-#include "gui/kdeext/KStartupLogo.h"
+#include "gui/kdeext/TDEStartupLogo.h"
#include "gui/application/RosegardenApplication.h"
#include "gui/application/RosegardenDCOP.h"
@@ -554,13 +554,13 @@ int main(int argc, char *argv[])
// (c) The KDevelop Development Team
//
config->setGroup(GeneralOptionsConfigGroup);
- KStartupLogo* startLogo = 0L;
+ TDEStartupLogo* startLogo = 0L;
// See if the config wants us to control JACK
//
if (config->readBoolEntry("Logo", true) && (!kapp->isRestored() && args->isSet("splash")) ) {
RG_DEBUG << k_funcinfo << "Showing startup logo\n";
- startLogo = KStartupLogo::getInstance();
+ startLogo = TDEStartupLogo::getInstance();
startLogo->setShowTip(!newVersion);
startLogo->show();
}
@@ -713,7 +713,7 @@ int main(int argc, char *argv[])
}
if (newVersion) {
- KStartupLogo::hideIfStillThere();
+ TDEStartupLogo::hideIfStillThere();
CurrentProgressDialog::freeze();
KDialogBase *dialog = new KDialogBase(rosegardengui, "welcome",
diff --git a/src/gui/editors/notation/NoteFontFactory.cpp b/src/gui/editors/notation/NoteFontFactory.cpp
index 9760734..47855a1 100644
--- a/src/gui/editors/notation/NoteFontFactory.cpp
+++ b/src/gui/editors/notation/NoteFontFactory.cpp
@@ -32,7 +32,7 @@
#include "misc/Strings.h"
#include "document/ConfigGroups.h"
#include "base/Exception.h"
-#include "gui/kdeext/KStartupLogo.h"
+#include "gui/kdeext/TDEStartupLogo.h"
#include "NoteFont.h"
#include "NoteFontMap.h"
#include <tdeconfig.h>
@@ -95,7 +95,7 @@ NoteFontFactory::getFontNames(bool forceRescan)
if (map.ok())
names.append(strtoqstr(map.getName()));
} catch (Exception e) {
- KStartupLogo::hideIfStillThere();
+ TDEStartupLogo::hideIfStillThere();
KMessageBox::error(0, strtoqstr(e.getMessage()));
throw;
}
@@ -167,7 +167,7 @@ NoteFontFactory::getFont(std::string fontName, int size)
m_fonts[std::pair<std::string, int>(fontName, size)] = font;
return font;
} catch (Exception e) {
- KStartupLogo::hideIfStillThere();
+ TDEStartupLogo::hideIfStillThere();
KMessageBox::error(0, strtoqstr(e.getMessage()));
throw;
}
@@ -198,7 +198,7 @@ NoteFontFactory::getDefaultFontName()
defaultFont = *fontNames.begin();
else {
TQString message = i18n("Can't obtain a default font -- no fonts found");
- KStartupLogo::hideIfStillThere();
+ TDEStartupLogo::hideIfStillThere();
KMessageBox::error(0, message);
throw NoFontsAvailable(qstrtostr(message));
}
diff --git a/src/gui/editors/notation/NotePixmapFactory.cpp b/src/gui/editors/notation/NotePixmapFactory.cpp
index f34eeaa..b661d88 100644
--- a/src/gui/editors/notation/NotePixmapFactory.cpp
+++ b/src/gui/editors/notation/NotePixmapFactory.cpp
@@ -43,7 +43,7 @@
#include "gui/general/GUIPalette.h"
#include "gui/general/PixmapFunctions.h"
#include "gui/general/Spline.h"
-#include "gui/kdeext/KStartupLogo.h"
+#include "gui/kdeext/TDEStartupLogo.h"
#include "NotationStrings.h"
#include "NotationView.h"
#include "NoteCharacter.h"
@@ -192,7 +192,7 @@ NotePixmapFactory::init(std::string fontName, int size)
try {
m_style = NoteStyleFactory::getStyle(NoteStyleFactory::DefaultStyle);
} catch (NoteStyleFactory::StyleUnavailable u) {
- KStartupLogo::hideIfStillThere();
+ TDEStartupLogo::hideIfStillThere();
KMessageBox::error(0, i18n(strtoqstr(u.getMessage()).ascii()));
throw;
}
diff --git a/src/gui/kdeext/KStartupLogo.cpp b/src/gui/kdeext/TDEStartupLogo.cpp
index da473e9..6e57e2f 100644
--- a/src/gui/kdeext/KStartupLogo.cpp
+++ b/src/gui/kdeext/TDEStartupLogo.cpp
@@ -33,10 +33,10 @@
#include <tdeconfig.h>
#include <ktip.h>
-#include "KStartupLogo.h"
+#include "TDEStartupLogo.h"
#include "misc/Debug.h"
-KStartupLogo::KStartupLogo(TQWidget * parent, const char *name)
+TDEStartupLogo::TDEStartupLogo(TQWidget * parent, const char *name)
: TQWidget(parent, name,
WStyle_Customize |
WStyle_Splash
@@ -54,13 +54,13 @@ KStartupLogo::KStartupLogo(TQWidget * parent, const char *name)
m_pixmap.width(), m_pixmap.height());
}
-KStartupLogo::~KStartupLogo()
+TDEStartupLogo::~TDEStartupLogo()
{
m_wasClosed = true;
m_instance = 0;
}
-void KStartupLogo::paintEvent(TQPaintEvent*)
+void TDEStartupLogo::paintEvent(TQPaintEvent*)
{
// Print version number
TQPainter paint(this);
@@ -102,19 +102,19 @@ void KStartupLogo::paintEvent(TQPaintEvent*)
paint.drawText(m_pixmap.width() - (width + 10), y, m_statusMessage);
}
-void KStartupLogo::slotShowStatusMessage(TQString message)
+void TDEStartupLogo::slotShowStatusMessage(TQString message)
{
m_statusMessage = message;
paintEvent(0);
TQApplication::flushX();
}
-void KStartupLogo::close()
+void TDEStartupLogo::close()
{
if (!m_wasClosed && isVisible()) {
if (m_showTip) {
- RG_DEBUG << "KStartupLogo::close: Showing Tips\n";
+ RG_DEBUG << "TDEStartupLogo::close: Showing Tips\n";
KTipDialog::showTip(locate("data", "rosegarden/tips"));
}
}
@@ -123,25 +123,25 @@ void KStartupLogo::close()
}
-void KStartupLogo::mousePressEvent(TQMouseEvent*)
+void TDEStartupLogo::mousePressEvent(TQMouseEvent*)
{
// for the haters of raising startlogos
if (m_readyToHide)
hide(); // don't close, main() sets up a TQTimer for that
}
-KStartupLogo* KStartupLogo::getInstance()
+TDEStartupLogo* TDEStartupLogo::getInstance()
{
if (m_wasClosed)
return 0;
if (!m_instance)
- m_instance = new KStartupLogo;
+ m_instance = new TDEStartupLogo;
return m_instance;
}
-void KStartupLogo::hideIfStillThere()
+void TDEStartupLogo::hideIfStillThere()
{
if (m_instance)
m_instance->hide();
@@ -149,7 +149,7 @@ void KStartupLogo::hideIfStillThere()
}
-KStartupLogo* KStartupLogo::m_instance = 0;
-bool KStartupLogo::m_wasClosed = false;
+TDEStartupLogo* TDEStartupLogo::m_instance = 0;
+bool TDEStartupLogo::m_wasClosed = false;
-#include "KStartupLogo.moc"
+#include "TDEStartupLogo.moc"
diff --git a/src/gui/kdeext/KStartupLogo.h b/src/gui/kdeext/TDEStartupLogo.h
index c8bd627..7e6e586 100644
--- a/src/gui/kdeext/KStartupLogo.h
+++ b/src/gui/kdeext/TDEStartupLogo.h
@@ -28,13 +28,13 @@
#include <tqwidget.h>
#include <tqpixmap.h>
-class KStartupLogo : public TQWidget
+class TDEStartupLogo : public TQWidget
{
Q_OBJECT
public:
- static KStartupLogo* getInstance();
+ static TDEStartupLogo* getInstance();
static void hideIfStillThere();
@@ -47,8 +47,8 @@ public slots:
protected:
- KStartupLogo(TQWidget *parent=0, const char *name=0);
- ~KStartupLogo();
+ TDEStartupLogo(TQWidget *parent=0, const char *name=0);
+ ~TDEStartupLogo();
virtual void paintEvent(TQPaintEvent*);
virtual void mousePressEvent( TQMouseEvent*);
@@ -58,7 +58,7 @@ protected:
TQPixmap m_pixmap;
- static KStartupLogo* m_instance;
+ static TDEStartupLogo* m_instance;
static bool m_wasClosed;
TQString m_statusMessage;
};
diff --git a/src/gui/seqmanager/SequenceManager.cpp b/src/gui/seqmanager/SequenceManager.cpp
index a8d6e30..e0b0b2d 100644
--- a/src/gui/seqmanager/SequenceManager.cpp
+++ b/src/gui/seqmanager/SequenceManager.cpp
@@ -47,7 +47,7 @@
#include "gui/dialogs/AudioManagerDialog.h"
#include "gui/dialogs/CountdownDialog.h"
#include "gui/dialogs/TransportDialog.h"
-#include "gui/kdeext/KStartupLogo.h"
+#include "gui/kdeext/TDEStartupLogo.h"
#include "gui/studio/StudioControl.h"
#include "gui/widgets/CurrentProgressDialog.h"
#include "MetronomeMmapper.h"
@@ -1139,7 +1139,7 @@ SequenceManager::processAsynchronousMidi(const MappedComposition &mC,
}
}
} else {
- KStartupLogo::hideIfStillThere();
+ TDEStartupLogo::hideIfStillThere();
if ((*i)->getType() == MappedEvent::SystemFailure) {
@@ -1160,7 +1160,7 @@ SequenceManager::processAsynchronousMidi(const MappedComposition &mC,
std::cerr << "Rosegarden: WARNING: No accurate sequencer timer available" << std::endl;
- KStartupLogo::hideIfStillThere();
+ TDEStartupLogo::hideIfStillThere();
CurrentProgressDialog::freeze();
RosegardenGUIApp::self()->awaitDialogClearance();
@@ -1178,7 +1178,7 @@ SequenceManager::processAsynchronousMidi(const MappedComposition &mC,
std::cerr << "Rosegarden: WARNING: No accurate sequencer timer available" << std::endl;
- KStartupLogo::hideIfStillThere();
+ TDEStartupLogo::hideIfStillThere();
CurrentProgressDialog::freeze();
RosegardenGUIApp::self()->awaitDialogClearance();
@@ -1303,7 +1303,7 @@ SequenceManager::checkSoundDriverStatus(bool warnUser)
(MIDI_OK | VERSION_OK)) return;
#endif
- KStartupLogo::hideIfStillThere();
+ TDEStartupLogo::hideIfStillThere();
CurrentProgressDialog::freeze();
TQString text = "";