This repository has been archived on 2025-03-02. You can view files and clone it, but cannot push or open issues or pull requests.
neofx-zoomedit/SidebarAdd.h

28 lines
485 B
C
Raw Normal View History

#ifndef SIDEBARADD_H_
#define SIDEBARADD_H_
#include "Sidebar.h"
#include "EditManager.h"
class SidebarAdd : public Sidebar {
private:
GtkWidget *sidebar;
EditManager *editor;
// prevent shallow copy
SidebarAdd(const SidebarAdd &w);
const SidebarAdd& operator=(const SidebarAdd &w);
public:
SidebarAdd(EditManager *editor);
virtual ~SidebarAdd();
GtkWidget* getWidget();
void update() {}
};
#endif /*SIDEBARADD_H_*/