NEURON
cbwidget.h
Go to the documentation of this file.
1 #ifndef cbwidget_h
2 #define cbwidget_h
3 
4 #include <InterViews/action.h>
5 class Graph;
6 
7 class ColorBrushWidget: public Action, public Observer {
8  public:
9  static void start(Graph*);
10  virtual ~ColorBrushWidget();
11  void execute();
12  virtual void update(Observable*);
13 
14  private:
16  void map();
17 
18  private:
23 };
24 
25 #endif
#define PolyGlyph
Definition: _defines.h:207
#define Action
Definition: _defines.h:27
Graph * g_
Definition: cbwidget.h:19
virtual ~ColorBrushWidget()
ColorBrushWidget(Graph *)
DismissableWindow * w_
Definition: cbwidget.h:22
virtual void update(Observable *)
static void start(Graph *)
PolyGlyph * bb_
Definition: cbwidget.h:21
PolyGlyph * cb_
Definition: cbwidget.h:20
Definition: graph.h:57