summaryrefslogtreecommitdiffstats
path: root/SidebarView.h
blob: ae3ee28aaddc09c0aad73bd16c55a8a281779d87 (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
#ifndef SIDEBARVIEW_H_
#define SIDEBARVIEW_H_

#include "Sidebar.h"
#include "EditManager.h"


class SidebarView : public Sidebar {
  private:
    GtkWidget *sidebar;
    GtkWidget *entryName, *labelArea, *labelPerimeter, *buttonAdd;
    
    EditManager *editor;
    
    // prevent shallow copy
    SidebarView(const SidebarView &w);
    const SidebarView& operator=(const SidebarView &w);
    
    static void buttonClicked(GtkButton *button, SidebarView *view);
    
  public:
    SidebarView(EditManager *editor);
    virtual ~SidebarView();
    
    GtkWidget* getWidget();
    
    void update();
};

#endif /*SIDEBARVIEW_H_*/