summaryrefslogtreecommitdiffstats
path: root/ToolSelector.h
blob: e2ce48aec22ebf8ae8eec11cf2cd9000bfe28d02 (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 TOOLSELECTOR_H_
#define TOOLSELECTOR_H_

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


class ToolSelector : public Tool, public EventHandler {
  private:
    GtkWidget *image;
    
    EditManager *editManager;
    
    SidebarView sidebar;
    
    // prevent shallow copy
    ToolSelector(const ToolSelector &t);
    const ToolSelector& operator=(const ToolSelector &t);
    
  public:
    ToolSelector(EditManager *editManager);
    virtual ~ToolSelector();
    
    virtual const char *getType() const {
      return "ToolSelector";
    }
    
    virtual const char *getName() const {
      return "Select";
    }
    
    virtual bool isSensitive() {
      return TRUE;
    }
    
    virtual GtkWidget *getImage() {
      return image;
    }
    
    virtual bool hoverFilter(const LevelObject &object) const {
      return true;
    }
    
    virtual EventHandler *getEventHandler() {
      return this;
    }
    
    virtual bool buttonPress(unsigned int button, const Vertex *v);
    
    virtual Sidebar* getSidebar() {
      return &sidebar;
    }
};

#endif /*TOOLSELECTOR_H_*/