~ubuntu-branches/ubuntu/karmic/kst/karmic

« back to all changes in this revision

Viewing changes to kst/kst/kstgfxtextmousehandler.h

  • Committer: Bazaar Package Importer
  • Author(s): Daniel T Chen
  • Date: 2006-06-30 19:11:30 UTC
  • mfrom: (1.2.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20060630191130-acumuar75bz4puty
Tags: 1.2.1-1ubuntu1
Merge from debian unstable.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/***************************************************************************
 
2
                  kstgfxtextmousehandler.h  -  Part of KST
 
3
                             -------------------
 
4
    begin                : 2005
 
5
    copyright            : (C) 2005 The University of British Columbia
 
6
    email                :
 
7
 ***************************************************************************/
 
8
 
 
9
/***************************************************************************
 
10
 *                                                                         *
 
11
 *   This program is free software; you can redistribute it and/or modify  *
 
12
 *   it under the terms of the GNU General Public License as published by  *
 
13
 *   the Free Software Foundation; either version 2 of the License, or     *
 
14
 *   (at your option) any later version.                                   *
 
15
 *                                                                         *
 
16
 ***************************************************************************/
 
17
 
 
18
#ifndef KSTGFXTEXTMOUSEHANDLER_H
 
19
#define KSTGFXTEXTMOUSEHANDLER_H
 
20
 
 
21
#include "kstgfxmousehandler.h"
 
22
 
 
23
class KstGfxTextMouseHandler : public KstGfxMouseHandler {
 
24
  public:
 
25
    KstGfxTextMouseHandler();
 
26
    ~KstGfxTextMouseHandler();
 
27
 
 
28
    void pressMove(KstTopLevelViewPtr view, const QPoint& pos, bool shift, const QRect& geom);
 
29
    void releasePress(KstTopLevelViewPtr view, const QPoint& pos, bool shift);
 
30
};
 
31
 
 
32
#endif
 
33
 
 
34
// vim: ts=2 sw=2 et