sp-xmlview-attr-list.cpp revision ebd5eec9181154c9daadf13043dea79bad6688c9
/*
* Specialization of GtkCList for the XML tree view
*
* Authors:
* MenTaLguY <mental@rydia.net>
*
* Copyright (C) 2002 MenTaLguY
*
* Released under the GNU GPL; see COPYING for details
*/
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include "helper/sp-marshal.h"
#include "../xml/node-event-vector.h"
#include "sp-xmlview-attr-list.h"
static void event_attr_changed (Inkscape::XML::Node * repr, const gchar * name, const gchar * old_value, const gchar * new_value, bool is_interactive, gpointer data);
NULL, /* child_added */
NULL, /* child_removed */
NULL, /* content_changed */
NULL /* order_changed */
};
{
}
void
{
}
if (repr) {
}
}
{
if (!type) {
static const GtkTypeInfo info = {
"SPXMLViewAttrList",
sizeof (SPXMLViewAttrList),
sizeof (SPXMLViewAttrListClass),
};
}
return type;
}
void
{
g_signal_new ( "row-value-changed",
G_TYPE_NONE, 1,
}
void
{
}
void
{
}
void
const gchar * /*old_value*/,
bool /*is_interactive*/,
{
if (new_value) {
}
} else {
}
row = gtk_clist_find_row_from_data (GTK_CLIST (list), GINT_TO_POINTER (g_quark_from_string (name)));
if (row != -1) {
if (new_value) {
} else {
}
}
// send a "changed" signal so widget owners will know I've updated
}