summaryrefslogtreecommitdiffstats
path: root/src/widgets/sp-widget.h
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/widgets/sp-widget.h
downloadinkscape-179fa413b047bede6e32109e2ce82437c5fb8d34.tar.gz
inkscape-179fa413b047bede6e32109e2ce82437c5fb8d34.zip
moving trunk for module inkscape
(bzr r1)
Diffstat (limited to 'src/widgets/sp-widget.h')
-rw-r--r--src/widgets/sp-widget.h52
1 files changed, 52 insertions, 0 deletions
diff --git a/src/widgets/sp-widget.h b/src/widgets/sp-widget.h
new file mode 100644
index 000000000..e9f9cfe73
--- /dev/null
+++ b/src/widgets/sp-widget.h
@@ -0,0 +1,52 @@
+#ifndef __SP_WIDGET_H__
+#define __SP_WIDGET_H__
+
+/*
+ * Abstract base class for dynamic control widgets
+ *
+ * Authors:
+ * Lauris Kaplinski <lauris@kaplinski.com>
+ *
+ * Copyright (C) 1999-2002 Lauris Kaplinski
+ * Copyright (C) 2000-2001 Ximian, Inc.
+ *
+ * Released under GNU GPL, read the file 'COPYING' for more information
+ */
+
+#include <glib.h>
+
+#define SP_TYPE_WIDGET (sp_widget_get_type ())
+#define SP_WIDGET(obj) (GTK_CHECK_CAST ((obj), SP_TYPE_WIDGET, SPWidget))
+#define SP_WIDGET_CLASS(klass) (GTK_CHECK_CLASS_CAST ((klass), SP_TYPE_WIDGET, SPWidgetClass))
+#define SP_IS_WIDGET(obj) (GTK_CHECK_TYPE ((obj), SP_TYPE_WIDGET))
+#define SP_IS_WIDGET_CLASS(klass) (GTK_CHECK_CLASS_TYPE ((klass), SP_TYPE_WIDGET))
+
+#include <gtk/gtkbin.h>
+
+namespace Inkscape {
+ class Application;
+ class Selection;
+}
+
+struct SPWidget {
+ GtkBin bin;
+ Inkscape::Application *inkscape;
+};
+
+struct SPWidgetClass {
+ GtkBinClass bin_class;
+ void (* construct) (SPWidget *spw);
+ /* Selection change handlers */
+ void (* modify_selection) (SPWidget *spw, Inkscape::Selection *selection, guint flags);
+ void (* change_selection) (SPWidget *spw, Inkscape::Selection *selection);
+ void (* set_selection) (SPWidget *spw, Inkscape::Selection *selection);
+};
+
+GtkType sp_widget_get_type (void);
+
+/* fixme: Think (Lauris) */
+/* Generic constructor for global widget */
+GtkWidget *sp_widget_new_global (Inkscape::Application *inkscape);
+GtkWidget *sp_widget_construct_global (SPWidget *spw, Inkscape::Application *inkscape);
+
+#endif