Gtk2::Ex::MindMapView::Content - Base class for content objects.


Gtk2-Ex-MindMapView documentation Contained in the Gtk2-Ex-MindMapView distribution.

Index


Code Index:

NAME

Top

Gtk2::Ex::MindMapView::Content - Base class for content objects.

VERSION

Top

This document describes Gtk2::Ex::MindMapView::Content version 0.0.1

SYNOPSIS

Top

use base 'Gtk2::Ex::MindMapView::Content';

DESCRIPTION

Top

This module is internal to Gtk2::Ex::MindMapView. It is the base class for objects that show content and offers several classes that are to be overidden.

INTERFACE

Top

Properties

'group' (Gnome2::Canvas::Group)

The group on which the content is drawn.

'x' (double)

The x-coordinate of the upper left corner of the content bounding box.

'y' (double)

The y-coordinate of the upper left corner of the content bounding box.

'width' (double)

The width of the content bounding box.

'height' (double)

The height of the content bounding box.

'min_width' (double)

The minimum width of the content.

'min_height' (double)

The minimum height of the content.

Methods

new(group=>$group, ...)

Instantiate a content object. You must provide the Gnome2::Canvas::Group on which this content is to place itself.

content_get_image()

This method must be overridden. It is used to instantiate Gnome2::Canvas::Item content.

content_set_x($value)

This method must be overridden. It sets the value of the content x coordinate.

content_set_y($value)

This method must be overridden. It sets the value of the content y coordinate.

content_set_width($value)

This method must be overridden. It sets the value of the content width.

content_set_height($value)

This method must be overridden. It sets the value of the content height.

content_set_param($name, $value)

This method may optionally be overridden to pass values to the object created by content_get_image.

get('name')

Return the value of a property.

set(name=>$value

This method is used to set the value of a property.

get_min_height

Returns the minimum height for a Gtk2::Ex::MindMapView::Content

get_min_width

Returns the minimum width for a Gtk2::Ex::MindMapView::Content

reparent($group)

Assign this content item to another Gnome2::Canvas::Group.

DIAGNOSTICS

Top

None.

DEPENDENCIES

Top

None.

BUGS AND LIMITATIONS

Top

No bugs have been reported.

Please report any bugs or feature requests to bug-gtk2-ex-mindmapview@rt.cpan.org, or through the web interface at http://rt.cpan.org.

AUTHOR

Top

James Muir <hemlock@vtlink.net>

LICENCE AND COPYRIGHT

Top

DISCLAIMER OF WARRANTY

Top

BECAUSE THIS SOFTWARE IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE SOFTWARE, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE SOFTWARE "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE SOFTWARE IS WITH YOU. SHOULD THE SOFTWARE PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR, OR CORRECTION.

IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE SOFTWARE AS PERMITTED BY THE ABOVE LICENCE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE SOFTWARE (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE SOFTWARE TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.


Gtk2-Ex-MindMapView documentation Contained in the Gtk2-Ex-MindMapView distribution.

package Gtk2::Ex::MindMapView::Content;

our $VERSION = '0.000001';

use warnings;
use strict;
use Carp;

use List::Util;

use Gnome2::Canvas;

use constant MIN_WIDTH=>10;
use constant MIN_HEIGHT=>10;

use Gtk2::Ex::MindMapView::ArgUtils;

sub new
{
    my $class = shift(@_);

    my $self = {};

    bless $self, $class;

    my %attributes = @_;

    args_required(\%attributes, 'group');

    args_store($self, \%attributes);

    arg_default($self, "x", 0);

    arg_default($self, "y", 0);
    
    arg_default($self, "height", MIN_HEIGHT);
    
    arg_default($self, "width", MIN_WIDTH);

    arg_default($self, "min_width", MIN_WIDTH);

    arg_default($self, "min_height", MIN_HEIGHT);
    
    return $self;
}


# my $image = $content->content_get_image();

sub content_get_image
{
    my $self = shift(@_);

    croak "You must supply a content image by overriding 'content_get_image'.\n";
}


# $self->content_set_x($value);

sub content_set_x
{
    my ($self, $value) = @_;

    croak "You must set the content x coordinate by overriding 'content_set_x'.\n";
}


# $self->content_set_y($value);

sub content_set_y
{
    my ($self, $value) = @_;

    croak "You must set the content y coordinate by overriding 'content_set_y'.\n";
}


# $self->content_set_width($value);

sub content_set_width
{
    my ($self, $value) = @_;

    croak "You must set the content width by overriding 'content_set_width'.\n";
}


# $self->content_set_height($value);

sub content_set_height
{
    my ($self, $value) = @_;

    croak "You must set the content height by overriding 'content_set_height'.\n";
}


# $self->content_set_param($param_name, $value);

sub content_set_param
{
    my ($self, $param_name, $value) = @_;
}


# my @values = $content->get(qw(x y width height));

sub get
{
    my $self = shift(@_);

    return undef if (scalar @_ == 0);

    return _get($self, shift(@_)) if (scalar @_ == 1);

    my @values = ();

    foreach my $param_name (@_) { push @values, _get($self, $param_name); }

    return @values;
}

# $canvas->reparent($group);

sub reparent
{
    my ($self, $group) = @_;

    $self->{group} = $group;

    #FIXME: shouldn't reference image here...??
    $self->{image}->reparent($group);
}

# $content->set(x=>0, y=>10, width=>20, height=>30);

sub set
{
    my $self = shift(@_);

    my %attributes = @_;

    foreach my $param_name (keys %attributes)
    {
	my $value = $attributes{$param_name};

	if ($param_name eq 'x')
	{
            next if ($self->{x} == $value);

	    $self->{x} = $value;

	    $self->content_set_x($value);

	    next;
	}

	if ($param_name eq 'y')
	{
            next if ($self->{y} == $value);

	    $self->{y} = $value;

	    $self->content_set_y($value);

	    next;
	}

	if ($param_name eq 'height')
	{
            next if ($self->{height} == $value);

	    $self->{height} = $value;

	    $self->content_set_height($value);

	    next;
	}

	if ($param_name eq 'width')
	{
            next if ($self->{width} == $value);

	    $self->{width} = $value;

	    $self->content_set_width($value);

	    next;
	}

	$self->content_set_param($param_name, $value);
    }
}


sub get_min_height
{
    my $self = shift(@_);

    return $self->{min_height};
}


sub get_min_width
{
    my $self = shift(@_);

    return $self->{min_width};
}


sub _get
{
    my ($self, $param_name) = @_;

    my $value = $self->{$param_name};

    croak "Undefined value for key $param_name.\n" if (!defined $value);

    return $value;
}



1; # Magic true value required at end of module
__END__