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

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


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

#endif /*SIDEBARVIEW_H_*/