~ubuntu-branches/ubuntu/oneiric/kig/oneiric

« back to all changes in this revision

Viewing changes to modes/base_mode.h

  • Committer: Bazaar Package Importer
  • Author(s): Harald Sitter
  • Date: 2011-07-10 11:57:38 UTC
  • Revision ID: james.westby@ubuntu.com-20110710115738-gdjnn1kctr49lmy9
Tags: upstream-4.6.90+repack
ImportĀ upstreamĀ versionĀ 4.6.90+repack

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
// Copyright (C)  2002  Dominique Devriese <devriese@kde.org>
 
2
 
 
3
// This program is free software; you can redistribute it and/or
 
4
// modify it under the terms of the GNU General Public License
 
5
// as published by the Free Software Foundation; either version 2
 
6
// of the License, or (at your option) any later version.
 
7
 
 
8
// This program is distributed in the hope that it will be useful,
 
9
// but WITHOUT ANY WARRANTY; without even the implied warranty of
 
10
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
11
// GNU General Public License for more details.
 
12
 
 
13
// You should have received a copy of the GNU General Public License
 
14
// along with this program; if not, write to the Free Software
 
15
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
 
16
// 02110-1301, USA.
 
17
 
 
18
#ifndef KIG_MODE_BASE_MODE_H
 
19
#define KIG_MODE_BASE_MODE_H
 
20
 
 
21
#include "mode.h"
 
22
 
 
23
#include <qpoint.h>
 
24
#include <vector>
 
25
 
 
26
class KigWidget;
 
27
class ObjectHolder;
 
28
 
 
29
/**
 
30
 * The BaseMode is a particular mode that allows an easy mapping of
 
31
 * the mouse actions to real, logical actions of the mode.
 
32
 */
 
33
class BaseMode
 
34
  : public KigMode
 
35
{
 
36
  QPoint mplc;
 
37
  std::vector<ObjectHolder*> moco;
 
38
 
 
39
  void leftClicked( QMouseEvent* e, KigWidget* v );
 
40
  void leftMouseMoved( QMouseEvent*, KigWidget* );
 
41
  void leftReleased( QMouseEvent* e, KigWidget* v );
 
42
  void midClicked( QMouseEvent* e, KigWidget* v );
 
43
  void midReleased( QMouseEvent* e, KigWidget* v );
 
44
  void rightClicked( QMouseEvent*, KigWidget* );
 
45
  void mouseMoved( QMouseEvent* e, KigWidget* v );
 
46
 
 
47
protected:
 
48
  void enableActions();
 
49
 
 
50
  std::vector<ObjectHolder*> oco();
 
51
  QPoint pointLocation();
 
52
protected:
 
53
 
 
54
  virtual void dragRect( const QPoint& p, KigWidget& w );
 
55
  virtual void dragObject( const std::vector<ObjectHolder*>& os, const QPoint& pointClickedOn, KigWidget& w, bool ctrlOrShiftDown );
 
56
  virtual void leftClickedObject( ObjectHolder* o, const QPoint& p,
 
57
                                  KigWidget& w, bool ctrlOrShiftDown ) = 0;
 
58
  virtual void midClicked( const QPoint& p, KigWidget& w ) = 0;
 
59
  virtual void rightClicked( const std::vector<ObjectHolder*>& oco, const QPoint& p, KigWidget& w ) = 0;
 
60
  virtual void mouseMoved( const std::vector<ObjectHolder*>& os, const QPoint& p, KigWidget& w, bool shiftpressed ) = 0;
 
61
 
 
62
protected:
 
63
  BaseMode( KigPart& );
 
64
  ~BaseMode();
 
65
};
 
66
 
 
67
#endif