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/Tool.h
2007-12-04 21:35:01 +00:00

18 lines
281 B
C++

#ifndef TOOL_H_
#define TOOL_H_
#include <gtk/gtk.h>
class Tool {
public:
virtual ~Tool() {}
virtual void action() = 0;
virtual const gchar *getName() = 0;
virtual GtkWidget *getImage() = 0;
virtual bool isSensitive() = 0;
};
#endif /*TOOL_H_*/