~ubuntu-branches/ubuntu/karmic/rosegarden/karmic

« back to all changes in this revision

Viewing changes to src/gui/kdeext/KStartupLogo.h

  • Committer: Bazaar Package Importer
  • Author(s): Stefan Ebner
  • Date: 2008-05-02 00:33:44 UTC
  • mfrom: (1.1.7 upstream) (6.1.1 lenny)
  • Revision ID: james.westby@ubuntu.com-20080502003344-67vbfhgqx2yl0ksi
Tags: 1:1.7.0-1ubuntu1
* Merge from Debian unstable. (LP: #225849) Remaining Ubuntu changes:
  - Add usr/share/doc/kde/HTML to rosegarden-data, to provide online
    help documentation.
  - Change fftw3-dev to libfftw3-dev.
  - Update maintainer field as per spec.

Show diffs side-by-side

added added

removed removed

Lines of Context:
4
4
    Rosegarden
5
5
    A sequencer and musical notation editor.
6
6
 
7
 
    This program is Copyright 2000-2007
 
7
    This program is Copyright 2000-2008
8
8
        Guillaume Laurent   <glaurent@telegraph-road.org>,
9
9
        Chris Cannam        <cannam@all-day-breakfast.com>,
10
10
        Richard Bown        <bownie@bownie.com>
31
31
class KStartupLogo : public QWidget
32
32
{
33
33
    Q_OBJECT
 
34
 
34
35
public:
35
 
 
36
36
    static KStartupLogo* getInstance();
37
37
 
38
38
    static void hideIfStillThere();
39
39
    
40
40
    void setHideEnabled(bool enabled) { m_readyToHide = enabled; };
 
41
    void setShowTip(bool showTip) { m_showTip = showTip; };
41
42
 
42
43
public slots:
43
44
    void slotShowStatusMessage(QString);
52
53
    virtual void mousePressEvent( QMouseEvent*);
53
54
 
54
55
    bool m_readyToHide;
 
56
    bool m_showTip;
55
57
 
56
58
    QPixmap m_pixmap;
57
59