#!/usr/bin/perl -w
#
#  Copyright (c) 1997-2002 The Protein Laboratory, University of Copenhagen
#  All rights reserved.
#
#  Redistribution and use in source and binary forms, with or without
#  modification, are permitted provided that the following conditions
#  are met:
#  1. Redistributions of source code must retain the above copyright
#     notice, this list of conditions and the following disclaimer.
#  2. Redistributions in binary form must reproduce the above copyright
#     notice, this list of conditions and the following disclaimer in the
#     documentation and/or other materials provided with the distribution.
#
#  THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
#  ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
#  IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
#  ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
#  FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
#  DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
#  OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
#  HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
#  LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
#  OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
#  SUCH DAMAGE.
#
#  $Id: buttons.pl,v 1.14 2003/08/01 09:45:30 dk Exp $
#

=pod 
=item NAME

Prima button widgets

=item FEATURES

Demonstrates basic use of Prima toolkit, in particular
creation of built-in push-buttons and radio-buttons.
A customized button creation with subclassing is exemplified

=cut


use strict;
use Prima 'Buttons', Application => { name => 'Buttons sample' };

package UserButton;
use vars qw(@ISA);
@ISA = qw(Prima::Button);

sub on_click
{
   #print "User button has been pressed\n";
   print ".";
}

sub on_paint
{
  my ($self,$canvas) = @_;
  my ($x, $y) = $canvas-> size;
  my @fcap = ( $canvas-> get_text_width( $self-> text), $canvas-> font->height);
  $canvas-> color( $self-> pressed ? cl::LightGreen : cl::Green);
  $canvas-> bar(0, 0, $x - 1 , $y - 1);

  $canvas-> color( $self-> pressed ? cl::Green : cl::LightGreen);
  $canvas-> line ( 0, 0, 0, $y - 1);
  $canvas-> line ( 1, 1, 1, $y - 2);
  $canvas-> line ( 0, $y - 1, $x - 1, $y - 1);
  $canvas-> line ( 1, $y - 2, $x - 2, $y - 2);
  $canvas-> color( $self-> pressed ? cl::White : cl::Gray);
  $canvas-> line ( 0, 0, $x - 1, 0);
  $canvas-> line ( 1, 1, $x - 2, 1);
  $canvas-> line ( $x - 1, 0, $x - 1, $y - 1);
  $canvas-> line ( $x - 2, 1, $x - 2, $y - 2);

  $canvas-> color(cl::Black);
  $canvas-> text_out ( $self-> text,
    ($x - $fcap[ 0]) / 2,
    ($y - $fcap[ 1]) / 2
  );
  if ( $self-> default) {
    $canvas-> linePattern( lp::Dot);
    $canvas-> rectangle(
      ($x - $fcap[ 0]) / 2 - 3,
      ($y - $fcap[ 1]) / 2 - 3,
      ($x + $fcap[ 0]) / 2 + 3,
      ($y + $fcap[ 1]) / 2 + 3
    );
    $canvas-> linePattern( lp::Solid);
  }
}

sub clone
{
   my ( $self, %profile) = @_;
   my %d = %{$self-> profile_default};
   my %readfilter = (
      x_centered  => 1,   
      y_centered  => 1,   
      centered    => 1,   
      delegations => 1,
      designScale => 1,
   );
   my %hashed = (
      font      => 1,
      popupFont => 1,
      menuFont  => 1,
   );
   for ( keys %readfilter) { delete $d{$_}};
   for ( keys %d) {
      my @res = $self-> $_();
      $d{$_} = @res ? ($#res ? (
         $hashed{$_} ? {@res} : [@res]
      ) : $res[0]) : undef;
   }   
   return ref($self)-> create( %d, %profile);
}   

package main;

my $w = Prima::MainWindow-> create(
   text   => "Button example",
   centered  => 1,
   height    => 300,
   width     => 400,
);
$w-> insert( "Button"     , origin => [  50,180], pressed => 1);
my $l = $w-> insert( "UserButton" , origin => [ 250,180], autoRepeat => 1);
$l-> clone( origin => [ 250, 290]);
$w-> insert( "Radio"      , origin => [  50,140]);

run Prima;
