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

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

class ToolSelector : public Tool {
  private:
    GtkWidget *image;
    
    EditManager *editManager;
    
    static const gchar* name;
    
    // prevent shallow copy
    ToolSelector(const ToolSelector &t);
    const ToolSelector& operator=(const ToolSelector &t);
    
  public:
    ToolSelector(EditManager *editManager);
    virtual ~ToolSelector();
    
    virtual const gchar *getName() {
      return name;
    }
    
    bool isSensitive() {
      return TRUE;
    }
    
    virtual GtkWidget *getImage();
};

#endif /*TOOLSELECTOR_H_*/