/** * @file Object properties dialog. */ /* * Inkscape, an Open Source vector graphics editor * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * * Copyright (C) 2012 Kris De Gussem * c++version based on former C-version (GPL v2) with authors: * Lauris Kaplinski * bulia byak * Johan Engelen * Abhishek Sharma */ #ifndef SEEN_DIALOGS_ITEM_PROPERTIES_H #define SEEN_DIALOGS_ITEM_PROPERTIES_H #include "ui/widget/panel.h" #include "ui/widget/frame.h" #include #include #include #include #include "ui/dialog/desktop-tracker.h" #include "widgets/sp-attribute-widget.h" class SPDesktop; class SPItem; namespace Inkscape { namespace UI { namespace Dialog { /** * A dialog widget to show object properties. * * A widget to enter an ID, label, title and description for an object. * In addition it allows to edit the properties of an object. */ class ObjectProperties : public Widget::Panel { public: ObjectProperties (); ~ObjectProperties (); static ObjectProperties &getInstance() { return *new ObjectProperties(); } /** * Updates entries and other child widgets on selection change, object modification, etc. */ void widget_setup(void); private: bool blocked; SPItem *CurrentItem; //to store the current item, for not wasting resources std::vector int_labels; Gtk::Table TopTable; //the table with the object properties Gtk::Label LabelID; //the label for the object ID Gtk::Entry EntryID; //the entry for the object ID Gtk::Label LabelLabel; //the label for the object label Gtk::Entry EntryLabel; //the entry for the object label Gtk::Label LabelTitle; //the label for the object title Gtk::Entry EntryTitle; //the entry for the object title Gtk::Label LabelDescription; //the label for the object description UI::Widget::Frame FrameDescription; //the frame for the object description Gtk::Frame FrameTextDescription; //the frame for the text of the object description Gtk::TextView TextViewDescription; //the text view object showing the object description Gtk::HBox HBoxCheck; // the HBox for the check boxes Gtk::Table CheckTable; //the table for the check boxes Gtk::CheckButton CBHide; //the check button hide Gtk::CheckButton CBLock; //the check button lock Gtk::Button BSet; //the button set Gtk::Label LabelInteractivity; //the label for interactivity Gtk::Expander EInteractivity; //the label for interactivity SPAttributeTable attrTable; //the widget for showing the on... names at the bottom SPDesktop *desktop; DesktopTracker deskTrack; sigc::connection desktopChangeConn; sigc::connection selectChangedConn; sigc::connection subselChangedConn; /** * Constructor auxiliary function creating the child widgets. */ void MakeWidget(void); /** * Sets object properties (ID, label, title, description) on user input. */ void label_changed(void); /** * Callback for checkbox Lock. */ void sensitivity_toggled (void); /** * Callback for checkbox Hide. */ void hidden_toggled(void); /** * Can be invoked for setting the desktop. Currently not used. */ void setDesktop(SPDesktop *desktop); /** * Is invoked by the desktop tracker when the desktop changes. */ void setTargetDesktop(SPDesktop *desktop); }; } } } #endif /* 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:fileencoding=utf-8:textwidth=99 :