~ubuntu-branches/ubuntu/natty/kdegames/natty-proposed

« back to all changes in this revision

Viewing changes to palapeli/src/engine/constraintinteractor.h

  • Committer: Bazaar Package Importer
  • Author(s): Rohan Garg
  • Date: 2010-05-28 20:16:42 UTC
  • mfrom: (1.2.45 upstream)
  • Revision ID: james.westby@ubuntu.com-20100528201642-vh75rp06hh5hjt6l
Tags: 4:4.4.80-0ubuntu1
* New upstream beta release
* New package for kajongg in debian/control
* Custom deb flag for kajongg in debian/rules
* New install file for kajongg
* Remove README.source from debian/
* Bump dep on kde-sc-dev-latest to 4.4.80

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/***************************************************************************
 
2
 *   Copyright 2010 Stefan Majewsky <majewsky@gmx.net>
 
3
 *
 
4
 *   This program is free software; you can redistribute it and/or
 
5
 *   modify it under the terms of the GNU General Public
 
6
 *   License as published by the Free Software Foundation; either
 
7
 *   version 2 of the License, or (at your option) any later version.
 
8
 *
 
9
 *   This program is distributed in the hope that it will be useful,
 
10
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of
 
11
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
12
 *   GNU General Public License for more details.
 
13
 *
 
14
 *   You should have received a copy of the GNU General Public License
 
15
 *   along with this program; if not, write to the Free Software
 
16
 *   Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
 
17
***************************************************************************/
 
18
 
 
19
#ifndef PALAPELI_CONSTRAINTINTERACTOR_H
 
20
#define PALAPELI_CONSTRAINTINTERACTOR_H
 
21
 
 
22
#include "interactor.h"
 
23
 
 
24
namespace Palapeli
 
25
{
 
26
        class ConstraintInteractor : public Palapeli::Interactor
 
27
        {
 
28
                public:
 
29
                        ConstraintInteractor(QGraphicsView* view);
 
30
                protected:
 
31
                        virtual bool startInteraction(const Palapeli::MouseEvent& event);
 
32
                        virtual void continueInteraction(const Palapeli::MouseEvent& event);
 
33
                        virtual void stopInteraction(const Palapeli::MouseEvent& event);
 
34
                private:
 
35
                        enum Side { LeftSide = 0, RightSide, TopSide, BottomSide };
 
36
                        QList<Side> touchingSides(const QPointF& scenePos) const;
 
37
 
 
38
                        QList<Side> m_draggingSides;
 
39
                        QPointF m_baseSceneRectOffset;
 
40
        };
 
41
}
 
42
 
 
43
#endif // PALAPELI_CONSTRAINTINTERACTOR_H