The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
#!/usr/bin/perl -w

# Copyright 2010, 2011 Kevin Ryde

# This file is part of Glib-Ex-ConnectProperties.
#
# Glib-Ex-ConnectProperties is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License as published
# by the Free Software Foundation; either version 3, or (at your option) any
# later version.
#
# Glib-Ex-ConnectProperties is distributed in the hope that it will be
# useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General
# Public License for more details.
#
# You should have received a copy of the GNU General Public License along
# with Glib-Ex-ConnectProperties.  If not, see <http://www.gnu.org/licenses/>.


use 5.008;
use strict;
use warnings;
use Glib::Ex::ConnectProperties;
use Test::More;

use lib 't';
use MyTestHelpers;
BEGIN { MyTestHelpers::nowarnings() }

eval { require Gtk2 }
  or plan skip_all => "due to Gtk2 module not available -- $@";
MyTestHelpers::glib_gtk_versions();

Gtk2->disable_setlocale;  # leave LC_NUMERIC alone for version nums
Gtk2->init_check
  or plan skip_all => "due to no DISPLAY";

plan tests => 10;


{
  package Foo;
  use strict;
  use warnings;
  use Glib;
  use Glib::Object::Subclass
    'Glib::Object',
      properties => [Glib::ParamSpec->boolean
                     ('mybool',
                      'mybool',
                      'Blurb.',
                      '', # default
                      Glib::G_PARAM_READWRITE),
                    ];
}

# by response nick 'ok'
{
  my $foo = Foo->new (mybool => 1);
  my $dialog = Gtk2::Dialog->new ('Title',
                                  undef, # parent
                                  [], # flags
                                  'gtk-ok' => 'ok');
  my $action_area = $dialog->get_action_area;
  my $button = ($action_area->get_children)[0];

  Glib::Ex::ConnectProperties->new
      ([$foo, 'mybool'],
       [$dialog, 'response-sensitive#ok', write_only => 1]);
  ok ($foo->get('mybool'));
  ok ($button->get('sensitive'));

  $foo->set (mybool => 0);
  ok (! $foo->get('mybool'));
  ok (! $button->get('sensitive'));

  $foo->set (mybool => 1);
  ok ($foo->get('mybool'));
  ok ($button->get('sensitive'));

  $dialog->destroy;
}

# by response full name GTK_RESPONSE_REJECT
{
  my $foo = Foo->new (mybool => 0);
  my $dialog = Gtk2::Dialog->new ('Title',
                                  undef, # parent
                                  [], # flags
                                  'gtk-ok' => 'reject');
  my $action_area = $dialog->get_action_area;
  my $button = ($action_area->get_children)[0];
  ok ($button->get('sensitive'));

  Glib::Ex::ConnectProperties->new
      ([$foo, 'mybool'],
       [$dialog, 'response-sensitive#GTK_RESPONSE_REJECT', write_only => 1]);
  ok (! $button->get('sensitive'));

  $dialog->destroy;
}

# by response number -123
{
  my $foo = Foo->new (mybool => 0);
  my $dialog = Gtk2::Dialog->new ('Title',
                                  undef, # parent
                                  [], # flags
                                  'Button Text' => -123);
  my $action_area = $dialog->get_action_area;
  my $button = ($action_area->get_children)[0];
  ok ($button->get('sensitive'));

  Glib::Ex::ConnectProperties->new
      ([$foo, 'mybool'],
       [$dialog, 'response-sensitive#-123', write_only => 1]);
  ok (! $button->get('sensitive'));

  $dialog->destroy;
}

exit 0;