/** \file * \brief Document Properties dialog * * Authors: * Ralf Stephan * Bryce W. Harrington * * Copyright (C) 2006-2008 Johan Engelen * Copyright (C) 2004, 2005 Authors * * Released under GNU GPL. Read the file 'COPYING' for more information. */ #ifndef INKSCAPE_UI_DIALOG_DOCUMENT_PREFERENCES_H #define INKSCAPE_UI_DIALOG_DOCUMENT_PREFERENCES_H #include #include #include #include #include "ui/widget/notebook-page.h" #include "ui/widget/page-sizer.h" #include "ui/widget/registered-widget.h" #include "ui/widget/registry.h" #include "ui/widget/tolerance-slider.h" #include "ui/widget/panel.h" using namespace Inkscape::UI::Widget; namespace Inkscape { namespace XML { class Node; } namespace UI { namespace Dialog { class DocumentProperties : public UI::Widget::Panel { public: void update(); static DocumentProperties &getInstance(); static void destroy(); void update_gridspage(); protected: void build_page(); void build_grid(); void build_guides(); void build_snap(); void build_snap_dtls(); void build_gridspage(); void init(); virtual void on_response (int); void _handleDocumentReplaced(SPDesktop* desktop, SPDocument *document); void _handleActivateDesktop(Inkscape::Application *application, SPDesktop *desktop); void _handleDeactivateDesktop(Inkscape::Application *application, SPDesktop *desktop); Gtk::Tooltips _tt; Gtk::Notebook _notebook; NotebookPage _page_page, _page_guides; NotebookPage _page_snap, _page_snap_dtls; Gtk::VBox _grids_vbox; Registry _wr; //--------------------------------------------------------------- RegisteredCheckButton _rcb_canb, _rcb_bord, _rcb_shad; RegisteredColorPicker _rcp_bg, _rcp_bord; RegisteredUnitMenu _rum_deflt; PageSizer _page_sizer; //--------------------------------------------------------------- RegisteredCheckButton _rcb_sgui, _rcbsng; RegisteredColorPicker _rcp_gui, _rcp_hgui; //--------------------------------------------------------------- RegisteredCheckButton _rcbs, _rcbsi, _rcbsnbb, _rcbsnn, _rcbsnop; RegisteredCheckButton _rcbsnon, _rcbsnbbp, _rcbsnbbn, _rcbsnpb; ToleranceSlider _rsu_sno, _rsu_sn, _rsu_gusn; //--------------------------------------------------------------- RegisteredCheckButton _rcbic; RegisteredCheckButton _rcbsigg, _rcbsils; //--------------------------------------------------------------- Gtk::Notebook _grids_notebook; Gtk::HBox _grids_hbox_crea; Gtk::Label _grids_label_crea; Gtk::Button _grids_button_new; Gtk::Button _grids_button_remove; Gtk::ComboBoxText _grids_combo_gridtype; Gtk::Label _grids_label_def; Gtk::HBox _grids_space; //--------------------------------------------------------------- gchar const *_prefs_path; Gtk::HBox& _createPageTabLabel(const Glib::ustring& label, const char *label_image); private: DocumentProperties(); virtual ~DocumentProperties(); // callback methods for buttons on grids page. void onNewGrid(); void onRemoveGrid(); }; } // namespace Dialog } // namespace UI } // namespace Inkscape #endif // INKSCAPE_UI_DIALOG_DOCUMENT_PREFERENCES_H /* Local Variables: mode:c++ c-file-style:"stroustrup" c-file-offsets:((innamespace . 0)(inline-open . 0)) indent-tabs-mode:nil fill-column:99 End: */ // vim: filetype=c++:expandtab:shiftwidth=4:tabstop=8:softtabstop=4 :