xml-tree.cpp revision e42e6130e1aca183d24c4e696c9fae555c49beaa
#define __SP_XMLVIEW_TREE_C__
/**
* \brief XML View
*
* Authors:
* Lauris Kaplinski <lauris@kaplinski.com>
* MenTaLguY <mental@rydia.net>
* bulia byak <buliabyak@users.sf.net>
*
* Copyright (C) 1999-2005 Authors
* Copyright (C) 2004 David Turner
*
* Released under GNU GPL, read the file 'COPYING' for more information
*/
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include <gtk/gtkhpaned.h>
#include <gtk/gtkvpaned.h>
#include <gtk/gtkhseparator.h>
#include <gtk/gtkhbbox.h>
#include <gtk/gtktoolbar.h>
#include <gtk/gtkscrolledwindow.h>
#include <gtk/gtkentry.h>
#include <gtk/gtkarrow.h>
#include "macros.h"
#include "../inkscape.h"
#include "../document.h"
#include "../desktop-handles.h"
#include "desktop.h"
#include "../selection.h"
#include "../sp-string.h"
#include "../sp-tspan.h"
#include "../sp-root.h"
#include "../event-context.h"
#include "in-dt-coordsys.h"
#include "../widgets/sp-xmlview-tree.h"
#include "../widgets/sp-xmlview-content.h"
#include "../widgets/sp-xmlview-attr-list.h"
#include "../inkscape-stock.h"
#include "dialog-events.h"
#include "../prefs-utils.h"
#include "../verbs.h"
#include "../interface.h"
#include "shortcuts.h"
#include <gdk/gdkkeysyms.h>
#include "message-stack.h"
#include "message-context.h"
struct EditableDest {
};
// impossible original values to make sure they are read from prefs
static gint selected_attr = 0;
static void sp_xmltree_desktop_change( Inkscape::Application *inkscape, SPDesktop *desktop, GtkWidget *dialog );
static void after_tree_move(GtkCTree *tree, GtkCTreeNode *node, GtkCTreeNode *new_parent, GtkCTreeNode *new_sibling, gpointer data);
static void on_tree_select_row_enable_if_element(GtkCTree *tree, GtkCTreeNode *node, gint column, gpointer data);
static void on_tree_select_row_enable_if_mutable(GtkCTree *tree, GtkCTreeNode *node, gint column, gpointer data);
static void on_tree_select_row_show_if_element(GtkCTree *tree, GtkCTreeNode *node, gint column, gpointer data);
static void on_tree_select_row_show_if_text(GtkCTree *tree, GtkCTreeNode *node, gint column, gpointer data);
static void on_tree_select_row_enable_if_indentable(GtkCTree *tree, GtkCTreeNode *node, gint column, gpointer data);
static void on_tree_select_row_enable_if_not_first_child(GtkCTree *tree, GtkCTreeNode *node, gint column, gpointer data);
static void on_tree_select_row_enable_if_not_last_child(GtkCTree *tree, GtkCTreeNode *node, gint column, gpointer data);
static void on_tree_select_row_enable_if_has_grandparent(GtkCTree *tree, GtkCTreeNode *node, gint column, gpointer data);
static void on_tree_unselect_row_clear_text(GtkCTree *tree, GtkCTreeNode *node, gint column, gpointer data);
static void on_tree_unselect_row_disable(GtkCTree *tree, GtkCTreeNode *node, gint column, gpointer data);
static void on_tree_unselect_row_hide(GtkCTree *tree, GtkCTreeNode *node, gint column, gpointer data);
static void on_attr_select_row(GtkCList *list, gint row, gint column, GdkEventButton *event, gpointer data);
static void on_attr_unselect_row(GtkCList *list, gint row, gint column, GdkEventButton *event, gpointer data);
static void on_attr_select_row_enable(GtkCList *list, gint row, gint column, GdkEventButton *event, gpointer data);
static void on_attr_unselect_row_disable(GtkCList *list, gint row, gint column, GdkEventButton *event, gpointer data);
static void on_attr_select_row_set_name_content(GtkCList *list, gint row, gint column, GdkEventButton *event, gpointer data);
static void on_attr_select_row_set_value_content(GtkCList *list, gint row, gint column, GdkEventButton *event, gpointer data);
static void on_attr_unselect_row_clear_text(GtkCList *list, gint row, gint column, GdkEventButton *event, gpointer data);
static void _set_status_message(Inkscape::MessageType type, const gchar *message, GtkWidget *dialog);
/*
* \brief Sets the XML status bar when the tree is selected.
*/
void tree_reset_context()
{
_("<b>Click</b> to select nodes, <b>drag</b> to rearrange."));
}
/*
* \brief Sets the XML status bar, depending on which attr is selected.
*/
{
if (attr == 0) {
_("<b>Click</b> attribute to edit."));
}
else {
gchar *message = g_strdup_printf(_("Attribute <b>%s</b> selected. Press <b>Ctrl+Enter</b> when done editing to commit changes."), name);
}
}
void sp_xml_tree_dialog()
{
if (!desktop) {
return;
}
{ // very long block
tooltips = gtk_tooltips_new();
if (x == -1000 || y == -1000) {
}
if (w ==0 || h == 0) {
}
if (x<0) x=0;
if (y<0) y=0;
if (x != 0 || y != 0) {
} else {
}
if (w && h) {
}
g_signal_connect ( G_OBJECT(INKSCAPE), "activate_desktop", G_CALLBACK(sp_transientize_callback), &wd );
paned = gtk_hpaned_new();
);
/* tree view */
_("Drag to reorder nodes"), NULL );
/* TODO: replace gtk_signal_connect_while_alive() with something
* else...
*/
toolbar = gtk_toolbar_new();
NULL,
_("New element node"),
NULL,
NULL);
"tree_select_row",
GTK_OBJECT(button));
"tree_unselect_row",
GTK_OBJECT(button));
NULL);
"tree_select_row",
GTK_OBJECT(button));
"tree_unselect_row",
GTK_OBJECT(button));
NULL);
"tree_select_row",
GTK_OBJECT(button));
_("Unindent node"), NULL,
_("Indent node"), NULL,
_("Raise node"), NULL,
_("Lower node"), NULL,
/* node view */
/* attributes */
toolbar = gtk_toolbar_new();
GTK_OBJECT(button));
GTK_OBJECT(button));
GTK_OBJECT(button));
// TRANSLATORS: "Attribute" is a noun here
_("Attribute name"), NULL );
set_attr = gtk_button_new();
// TRANSLATORS: "Set" is a verb here
_("Set attribute"), NULL );
// TRANSLATORS: "Set" is a verb here
set_attr );
// TRANSLATORS: "Attribute" is a noun here
_("Attribute value"), NULL );
attr_value );
attr_value );
attr_value );
GTK_WIDGET(attr_value) );
/* text */
text_container = sw;
} // end of if (dlg == NULL)
} // end of sp_xml_tree_dialog()
{
SP_SHORTCUT_SHIFT_MASK : 0 ) |
SP_SHORTCUT_CONTROL_MASK : 0 ) |
SP_SHORTCUT_ALT_MASK : 0 );
/* fixme: if you need to add more xml-tree-specific callbacks, you should probably upgrade
* the sp_shortcut mechanism to take into account windows. */
return true;
}
return false;
}
{
if (!desktop) {
return;
}
}
{
if ( desktop == current_desktop ) {
return;
}
if (current_desktop) {
}
if (desktop) {
} else {
}
} // end of set_tree_desktop()
{
if (document == current_document) {
return;
}
if (current_document) {
}
if (current_document) {
document_uri_set_connection = current_document->connectURISet(sigc::bind(sigc::ptr_fun(&on_document_uri_set), current_document));
} else {
}
}
{
if (repr == selected_repr) {
return;
}
if (repr) {
} else {
}
}
{
if (selected_repr) {
}
if (repr) {
if (node) {
while (parent) {
}
}
} else {
}
}
{
} else {
}
if (repr && ( repr->type() == Inkscape::XML::TEXT_NODE || repr->type() == Inkscape::XML::COMMENT_NODE ) ) {
} else {
}
}
{
if (!current_desktop) {
return NULL;
}
}
{
if (!current_desktop) {
return;
}
if (repr) {
&& sp_repr_parent(repr) )
{
} // end of while loop
} else {
}
blocked++;
&& !(SP_IS_STRING(object) ||
SP_IS_ROOT(object) ) )
{
/* We cannot set selection to root or string - they are not items and selection is not
* equipped to deal with them */
}
blocked--;
} // end of set_dt_select()
{
if (blocked) {
return;
}
if (selected_repr == repr) {
return;
}
if (selected_repr) {
}
}
{
if (blocked) {
return;
}
selected_attr = 0;
}
}
{
{
} else {
}
}
{
delete _message_context;
}
{
if (x<0) x=0;
if (y<0) y=0;
return FALSE; // which means, go ahead and destroy it
}
static void _set_status_message(Inkscape::MessageType type, const gchar *message, GtkWidget *dialog)
{
if (status) {
}
}
{
}
{
} else {
}
}
{
} else {
}
}
{
} else {
}
}
{
// top-level is immutable, obviously
return false;
}
// if not in base level (where namedview, defs, etc go), we're mutable
return true;
}
// don't let "defs" or "namedview" disappear
return false;
}
// everyone else is okay, I guess. :)
return true;
}
{
}
{
}
{
}
{
if (GTK_IS_EDITABLE(data)) {
} else if (GTK_IS_TEXT_VIEW(data)) {
}
}
{
}
{
selected_attr = 0;
}
{
if (attr == selected_attr) {
/* if the attr changed, reselect the row in the list to sync
the edit box */
/*
// get current attr values
const gchar * name = g_quark_to_string (sp_xmlview_attr_list_get_row_key (list, row));
const gchar * value = selected_repr->attribute(name);
g_warning("value: '%s'",value);
// get the edit box value
GtkTextIter start, end;
gtk_text_buffer_get_bounds ( gtk_text_view_get_buffer (attr_value),
&start, &end );
gchar * text = gtk_text_buffer_get_text ( gtk_text_view_get_buffer (attr_value),
&start, &end, TRUE );
g_warning("text: '%s'",text);
// compare to edit box
if (strcmp(text,value)) {
// issue warning if they're different
_message_stack->flash(Inkscape::WARNING_MESSAGE,
_("Attribute changed in GUI while editing values!"));
}
g_free (text);
*/
}
}
{
}
{
if (!value) {
value = "";
}
}
{
if (xml_tree_node_mutable(node)) {
// skip to the child just before the current repr
indentable = TRUE;
}
}
}
}
{
} else {
}
}
{
} else {
}
}
{
if (parent) {
if (grandparent) {
} else {
}
} else {
}
}
{
}
{
}
{
if (GTK_IS_EDITABLE(data)) {
} else if (GTK_IS_TEXT_VIEW(data)) {
}
}
{
/* TODO: need to do checking a little more rigorous than this */
} else {
}
}
{
if (!blocked++) {
}
blocked--;
}
{
if (current_desktop)
}
{
g_free(t);
}
{
}
{
entry = gtk_entry_new();
sep = gtk_hseparator_new();
bbox = gtk_hbutton_box_new();
GTK_OBJECT(window) );
create );
GTK_OBJECT(window) );
gtk_main();
}
} // end of cmd_new_element_node()
{
}
{
if (node) {
}
}
{
}
{
g_assert(selected_attr != 0);
if (updated) {
// force immediate update of dependant attributes
updated->updateRepr();
}
}
{
gchar *message = g_strdup_printf(_("Cannot set <b>%s</b>: Another element with value <b>%s</b> already exists!"), name, value);
}
if (updated) {
// force immediate update of dependant attributes
updated->updateRepr();
}
/* TODO: actually, the row won't have been created yet. why? */
if (row != -1) {
}
}
{
}
}
{
}
{
}
if (prev->firstChild()) {
}
} // end of cmd_indent_node()
{
} // end of cmd_unindent_node()
/*
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 :