~ubuntu-branches/ubuntu/wily/tora/wily-proposed

« back to all changes in this revision

Viewing changes to src/tobackgroundlabel.h

  • Committer: Bazaar Package Importer
  • Author(s): Albin Tonnerre
  • Date: 2007-05-29 13:13:36 UTC
  • mfrom: (1.2.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20070529131336-85ygaddivvmkd3xc
Tags: 1.3.21pre22-1ubuntu1
* Merge from Debian unstable. Remaining Ubuntu changes:
  - debian/rules: call dh_iconcache
  - Remove g++ build dependency
* Modify Maintainer value to match Debian-Maintainer-Field Spec

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
//
 
2
// C++ Interface: toBackgroundLabel
 
3
//
 
4
// Copyright: See COPYING file that comes with this distribution
 
5
//
 
6
#ifndef TOBACKGROUNDLABEL_H
 
7
#define TOBACKGROUNDLABEL_H
 
8
 
 
9
#include <qmovie.h>
 
10
#include <qwidget.h>
 
11
#include <qlabel.h>
 
12
 
 
13
class toBackgroundLabel : public QLabel{
 
14
public:
 
15
        //static toBackgroundLabel createToBackgroundLabel();
 
16
        virtual void mouseReleaseEvent(QMouseEvent* e);
 
17
        virtual void unpause();
 
18
        virtual void pause();
 
19
        virtual void setTip(QString tip);
 
20
        virtual void setSpeed(int Running);        
 
21
        toBackgroundLabel(QWidget *parent);
 
22
private:
 
23
        static QMovie* Animation;    
 
24
        static const char data[];       
 
25
    
 
26
};
 
27
 
 
28
 
 
29
#endif