summaryrefslogtreecommitdiffstats
path: root/src/gui/kdeext/KStartupLogo.h
diff options
context:
space:
mode:
authorTimothy Pearson <[email protected]>2013-01-31 21:46:40 -0600
committerTimothy Pearson <[email protected]>2013-01-31 21:46:40 -0600
commitacf699af8244896500e654cccdc8aae7e5b545db (patch)
tree9ddbc02f8dfa15b0f6090b909322b8ebde91e3bd /src/gui/kdeext/KStartupLogo.h
parent1d53865a04b4bcbab61f730bcbcc5452e9d04ce7 (diff)
downloadrosegarden-acf699af8244896500e654cccdc8aae7e5b545db.tar.gz
rosegarden-acf699af8244896500e654cccdc8aae7e5b545db.zip
Rename KStartup for enhanced compatibility with KDE4
Diffstat (limited to 'src/gui/kdeext/KStartupLogo.h')
-rw-r--r--src/gui/kdeext/KStartupLogo.h71
1 files changed, 0 insertions, 71 deletions
diff --git a/src/gui/kdeext/KStartupLogo.h b/src/gui/kdeext/KStartupLogo.h
deleted file mode 100644
index c8bd627..0000000
--- a/src/gui/kdeext/KStartupLogo.h
+++ /dev/null
@@ -1,71 +0,0 @@
-// -*- c-basic-offset: 4 -*-
-
-/*
- Rosegarden
- A sequencer and musical notation editor.
-
- This program is Copyright 2000-2008
- Guillaume Laurent <[email protected]>,
- Chris Cannam <[email protected]>,
- Richard Bown <[email protected]>
-
- This file contains code borrowed from KDevelop 2.0
- Copyright (c) The KDevelop Development Team.
-
- The moral right of the authors to claim authorship of this work
- has been asserted.
-
- This program is free software; you can redistribute it and/or
- modify it under the terms of the GNU General Public License as
- published by the Free Software Foundation; either version 2 of the
- License, or (at your option) any later version. See the file
- COPYING included with this distribution for more information.
-*/
-
-#ifndef KSTARTUPLOGO_H
-#define KSTARTUPLOGO_H
-
-#include <tqwidget.h>
-#include <tqpixmap.h>
-
-class KStartupLogo : public TQWidget
-{
- Q_OBJECT
-
-
-public:
- static KStartupLogo* getInstance();
-
- static void hideIfStillThere();
-
- void setHideEnabled(bool enabled) { m_readyToHide = enabled; };
- void setShowTip(bool showTip) { m_showTip = showTip; };
-
-public slots:
- void slotShowStatusMessage(TQString);
- virtual void close();
-
-protected:
-
- KStartupLogo(TQWidget *parent=0, const char *name=0);
- ~KStartupLogo();
-
- virtual void paintEvent(TQPaintEvent*);
- virtual void mousePressEvent( TQMouseEvent*);
-
- bool m_readyToHide;
- bool m_showTip;
-
- TQPixmap m_pixmap;
-
- static KStartupLogo* m_instance;
- static bool m_wasClosed;
- TQString m_statusMessage;
-};
-
-#endif
-
-
-
-
-