NAME

Xacobeo::UI::DomView - DOM tree view

SYNOPSIS

use Xacobeo::DomView;
use Xacobeo::UI::SourceView;

my $view = Xacobeo::UI::SourceView->new();
$window->add($view);

# Load a document
my $document = Xacobeo::Document->new_from_file($file, $type);
$view->set_document($document);
$view->load_node($document->documentNode);

DESCRIPTION

The application's main window. This widget is a Gtk2::TreeView.

METHODS

The following methods are available:

new

Creates a new instance. This is simply the parent's constructor.

load_node

Sets the tree view nodes hierarchy based on the given node. This is the method that will actually add items to the widget.

Parameters:

  • $node

    The node to be loaded into the tree widget; an instance of XML::LibXML::Node.

AUTHORS

Emmanuel Rodriguez <potyl@cpan.org>.

COPYRIGHT AND LICENSE

Copyright (C) 2008,2009 by Emmanuel Rodriguez.

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.8.8 or, at your option, any later version of Perl 5 you may have available.