/** * Undo History dialog * * \brief A dialog for presenting an event log of commited, undone and redone events. Allows the * user to undo and redo multiple events in a more convinient way than repateaded ctrl-z, * ctrl-shift-z. * * * Author: * Gustav Broberg * * Copyright (C) 2006 Authors * * Released under GNU GPL. Read the file 'COPYING' for more information. */ #ifndef INKSCAPE_UI_DIALOG_UNDO_HISTORY_H #define INKSCAPE_UI_DIALOG_UNDO_HISTORY_H #include #include #include #include #include #include #include #include #include #include #include "desktop.h" #include "dialog.h" #include "event-log.h" #include "widgets/icon.h" namespace Inkscape { namespace UI { namespace Dialog { /* Custom cell renderers */ class CellRendererSPIcon : public Gtk::CellRendererPixbuf { public: CellRendererSPIcon() : Glib::ObjectBase(typeid(CellRendererPixbuf)), Gtk::CellRendererPixbuf(), _property_icon(*this, "icon", Glib::RefPtr(0)), _property_event_type(*this, "event_type", 0) { } Glib::PropertyProxy property_event_type() { return _property_event_type.get_proxy(); } protected: virtual void render_vfunc(const Glib::RefPtr& window, Gtk::Widget& widget, const Gdk::Rectangle& background_area, const Gdk::Rectangle& cell_area, const Gdk::Rectangle& expose_area, Gtk::CellRendererState flags); private: Glib::Property > _property_icon; Glib::Property _property_event_type; std::map > _icon_cache; }; class CellRendererInt : public Gtk::CellRendererText { public: struct Filter : std::unary_function { virtual ~Filter() {} virtual bool operator() (const int&) const =0; }; CellRendererInt(const Filter& filter=no_filter) : Glib::ObjectBase(typeid(CellRendererText)), Gtk::CellRendererText(), _property_number(*this, "number", 0), _filter (filter) { } Glib::PropertyProxy property_number() { return _property_number.get_proxy(); } static const Filter& no_filter; protected: virtual void render_vfunc(const Glib::RefPtr& window, Gtk::Widget& widget, const Gdk::Rectangle& background_area, const Gdk::Rectangle& cell_area, const Gdk::Rectangle& expose_area, Gtk::CellRendererState flags); private: Glib::Property _property_number; const Filter& _filter; struct NoFilter : Filter { bool operator() (const int& x) const { return true; } }; }; /** * */ class UndoHistory : public Dialog { public: virtual ~UndoHistory(); static UndoHistory *create(); void setDesktop(SPDesktop* desktop); sigc::connection _document_replaced_connection; protected: SPDesktop *_desktop; SPDocument *_document; EventLog *_event_log; const EventLog::EventModelColumns *_columns; Gtk::ScrolledWindow _scrolled_window; Glib::RefPtr _event_list_store; Gtk::TreeView _event_list_view; Glib::RefPtr _event_list_selection; EventLog::CallbackMap _callback_connections; void _onListSelectionChange(); void _onExpandEvent(const Gtk::TreeModel::iterator &iter, const Gtk::TreeModel::Path &path); void _onCollapseEvent(const Gtk::TreeModel::iterator &iter, const Gtk::TreeModel::Path &path); private: // no default constructor, noncopyable, nonassignable UndoHistory(); UndoHistory(UndoHistory const &d); UndoHistory operator=(UndoHistory const &d); struct GreaterThan : CellRendererInt::Filter { GreaterThan(int _i) : i (_i) {} bool operator() (const int& x) const { return x > i; } int i; }; static const CellRendererInt::Filter& greater_than_1; }; } // namespace Dialog } // namespace UI } // namespace Inkscape #endif //INKSCAPE_UI_DIALOG_UNDO_HISTORY_H /* Local Variables: mode:c++ c-file-style:"stroustrup" c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +)) indent-tabs-mode:nil fill-column:99 End: */ // vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 :