summaryrefslogtreecommitdiffstats
path: root/ToolRotate.h
blob: 419eb6a6673648529fc8fd7e6e8b26b9ceb52455 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
#ifndef TOOLROTATE_H_
#define TOOLROTATE_H_

#include "Tool.h"
#include "SidebarView.h"

class ToolRotate : public Tool, EventHandler {
  private:
    GtkWidget *image;
    
    EditManager *editManager;
    
    SidebarView sidebar;
    
    bool pressed;
    float angle;
    
    // prevent shallow copy
    ToolRotate(const ToolRotate &t);
    const ToolRotate& operator=(const ToolRotate &t);
  public:
    ToolRotate(EditManager *editManager);
    virtual ~ToolRotate();
    
    virtual void activate();
    
    virtual const char *getType() const {
      return "ToolRotate";
    }
    
    virtual const char *getName() const {
      return "Rotate";
    }
    
    virtual bool isSensitive() {
      return TRUE;
    }
    
    virtual GtkWidget *getImage() {
      return image;
    }
    
    virtual EventHandler* getEventHandler() {
      return this;
    }
    
    virtual bool buttonPress(unsigned int button);
    virtual bool buttonRelease(unsigned int button);
    virtual bool motion();
    
    virtual Sidebar* getSidebar() {
      return &sidebar;
    }
};

#endif /*TOOLROTATE_H_*/