~ubuntu-branches/ubuntu/utopic/kde-workspace/utopic-proposed

« back to all changes in this revision

Viewing changes to libs/oxygen/oxygenanimation.h

  • Committer: Bazaar Package Importer
  • Author(s): Michał Zając
  • Date: 2011-07-09 08:31:15 UTC
  • Revision ID: james.westby@ubuntu.com-20110709083115-ohyxn6z93mily9fc
Tags: upstream-4.6.90
Import upstream version 4.6.90

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef oxygenanimation_h
 
2
#define oxygenanimation_h
 
3
//////////////////////////////////////////////////////////////////////////////
 
4
// oxygenanimation.h
 
5
// stores event filters and maps widgets to animations for animations
 
6
// -------------------
 
7
//
 
8
// Copyright (c) 2009 Hugo Pereira Da Costa <hugo.pereira@free.fr>
 
9
//
 
10
// Permission is hereby granted, free of charge, to any person obtaining a copy
 
11
// of this software and associated documentation files (the "Software"), to
 
12
// deal in the Software without restriction, including without limitation the
 
13
// rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
 
14
// sell copies of the Software, and to permit persons to whom the Software is
 
15
// furnished to do so, subject to the following conditions:
 
16
//
 
17
// The above copyright notice and this permission notice shall be included in
 
18
// all copies or substantial portions of the Software.
 
19
//
 
20
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 
21
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 
22
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 
23
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 
24
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
 
25
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
 
26
// IN THE SOFTWARE.
 
27
//////////////////////////////////////////////////////////////////////////////
 
28
 
 
29
#include <QtCore/QWeakPointer>
 
30
#include <QtCore/QPropertyAnimation>
 
31
#include <QtCore/QVariant>
 
32
 
 
33
#include "oxygen_export.h"
 
34
 
 
35
namespace Oxygen
 
36
{
 
37
 
 
38
    class OXYGEN_EXPORT Animation: public QPropertyAnimation
 
39
    {
 
40
 
 
41
        Q_OBJECT
 
42
 
 
43
        public:
 
44
 
 
45
        //! TimeLine shared pointer
 
46
        typedef QWeakPointer<Animation> Pointer;
 
47
 
 
48
        //! constructor
 
49
        Animation( int duration, QObject* parent ):
 
50
            QPropertyAnimation( parent )
 
51
        { setDuration( duration ); }
 
52
 
 
53
        //! destructor
 
54
        virtual ~Animation( void )
 
55
        {}
 
56
 
 
57
        //! true if running
 
58
        bool isRunning( void ) const
 
59
        { return state() == Animation::Running; }
 
60
 
 
61
        //! restart
 
62
        void restart( void )
 
63
        {
 
64
            if( isRunning() ) stop();
 
65
            start();
 
66
        }
 
67
 
 
68
    };
 
69
 
 
70
}
 
71
 
 
72
#endif