summaryrefslogtreecommitdiffstats
path: root/src/dialogs/object-attributes.cpp
diff options
context:
space:
mode:
authorMenTaLguY <mental@rydia.net>2006-01-16 02:36:01 +0000
committermental <mental@users.sourceforge.net>2006-01-16 02:36:01 +0000
commit179fa413b047bede6e32109e2ce82437c5fb8d34 (patch)
treea5a6ac2c1708bd02288fbd8edb2ff500ff2e0916 /src/dialogs/object-attributes.cpp
downloadinkscape-179fa413b047bede6e32109e2ce82437c5fb8d34.tar.gz
inkscape-179fa413b047bede6e32109e2ce82437c5fb8d34.zip
moving trunk for module inkscape
(bzr r1)
Diffstat (limited to 'src/dialogs/object-attributes.cpp')
-rw-r--r--src/dialogs/object-attributes.cpp140
1 files changed, 140 insertions, 0 deletions
diff --git a/src/dialogs/object-attributes.cpp b/src/dialogs/object-attributes.cpp
new file mode 100644
index 000000000..05370d1d0
--- /dev/null
+++ b/src/dialogs/object-attributes.cpp
@@ -0,0 +1,140 @@
+#define __SP_OBJECT_ATTRIBUTES_C__
+
+/**
+ * \brief Generic properties editor
+ *
+ * Authors:
+ * Lauris Kaplinski <lauris@kaplinski.com>
+ * bulia byak <buliabyak@users.sf.net>
+ *
+ * Copyright (C) 1999-2005 Authors
+ *
+ * Released under GNU GPL, read the file 'COPYING' for more information
+ */
+
+#ifdef HAVE_CONFIG_H
+# include "config.h"
+#endif
+#include <glibmm/i18n.h>
+#include "helper/window.h"
+#include "macros.h"
+#include "sp-anchor.h"
+#include "sp-attribute-widget.h"
+
+struct SPAttrDesc {
+ gchar const *label;
+ gchar const *attribute;
+};
+
+static const SPAttrDesc anchor_desc[] = {
+ { N_("Href:"), "xlink:href"},
+ { N_("Target:"), "target"},
+ { N_("Type:"), "xlink:type"},
+ // TRANSLATORS: for info, see http://www.w3.org/TR/2000/CR-SVG-20000802/linking.html#AElementXLinkRoleAttribute
+ // Identifies the type of the related resource with an absolute URI
+ { N_("Role:"), "xlink:role"},
+ // TRANSLATORS: for info, see http://www.w3.org/TR/2000/CR-SVG-20000802/linking.html#AElementXLinkArcRoleAttribute
+ // For situations where the nature/role alone isn't enough, this offers an additional URI defining the purpose of the link.
+ { N_("Arcrole:"), "xlink:arcrole"},
+ // TRANSLATORS: for info, see http://www.w3.org/TR/2000/CR-SVG-20000802/linking.html#AElementXLinkTitleAttribute
+ { N_("Title:"), "xlink:title"},
+ { N_("Show:"), "xlink:show"},
+ // TRANSLATORS: for info, see http://www.w3.org/TR/2000/CR-SVG-20000802/linking.html#AElementXLinkActuateAttribute
+ { N_("Actuate:"), "xlink:actuate"},
+ { NULL, NULL}
+};
+
+static const SPAttrDesc image_desc[] = {
+ { N_("URL:"), "xlink:href"},
+ { N_("X:"), "x"},
+ { N_("Y:"), "y"},
+ { N_("Width:"), "width"},
+ { N_("Height:"), "height"},
+ { NULL, NULL}
+};
+
+
+static void
+object_released (GtkObject *object, GtkWidget *widget)
+{
+ gtk_widget_destroy (widget);
+}
+
+
+
+static void
+window_destroyed (GtkObject *window, GtkObject *object)
+{
+ sp_signal_disconnect_by_data (object, window);
+}
+
+
+
+static void
+sp_object_attr_show_dialog ( SPObject *object,
+ const SPAttrDesc *desc,
+ const gchar *tag )
+{
+ const gchar **labels, **attrs;
+ gint len, i;
+ gchar *title;
+ GtkWidget *w, *t;
+
+ len = 0;
+ while (desc[len].label) len += 1;
+
+ labels = (const gchar **)alloca (len * sizeof (char *));
+ attrs = (const gchar **)alloca (len * sizeof (char *));
+
+ for (i = 0; i < len; i++) {
+ labels[i] = desc[i].label;
+ attrs[i] = desc[i].attribute;
+ }
+
+ title = g_strdup_printf (_("%s attributes"), tag);
+ w = sp_window_new (title, TRUE);
+ g_free (title);
+
+ t = sp_attribute_table_new (object, len, labels, attrs);
+ gtk_widget_show (t);
+ gtk_container_add (GTK_CONTAINER (w), t);
+
+ g_signal_connect ( G_OBJECT (w), "destroy",
+ G_CALLBACK (window_destroyed), object );
+
+ g_signal_connect ( G_OBJECT (object), "release",
+ G_CALLBACK (object_released), w );
+
+ gtk_widget_show (w);
+
+} // end of sp_object_attr_show_dialog()
+
+
+
+void
+sp_object_attributes_dialog (SPObject *object, const gchar *tag)
+{
+ g_return_if_fail (object != NULL);
+ g_return_if_fail (SP_IS_OBJECT (object));
+ g_return_if_fail (tag != NULL);
+
+ if (!strcmp (tag, "Link")) {
+ sp_object_attr_show_dialog (object, anchor_desc, tag);
+ } else if (!strcmp (tag, "Image")) {
+ sp_object_attr_show_dialog (object, image_desc, tag);
+ }
+
+} // end of sp_object_attributes_dialog()
+
+
+
+/*
+ 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 :