| Gtk2-Ex-VolumeButton documentation | Contained in the Gtk2-Ex-VolumeButton distribution. |
Gtk2::Ex::VolumeButton - widget to control volume and similar values
Gtk2::Ex::VolumeButton is a simple Gtk2 widget based on Gtk2::ToggleButton to control the volume and similar values. It consists of a Gtk2::ToggleButton widget displaying an image representing the current volume. When the button is clicked a popup window containing a Gtk2::VScale widget shows up and allows you to change the widgets volume value. It's also possible to change the volume using the scroll wheel over the toggle button even if the popup window isn't shown.
This widget is modeled after the widgets use in gnome-panel, muine and rhythmbox. Much code is stolen from the muine volume-button widget.
Glib::Object
+----Gtk2::Object
+----Gtk2::Widget
+----Gtk2::Container
+-----Gtk2::Bin
+----Gtk2::Button
+----Gtk2::ToggleButton
+----Gtk2::Ex::VolumeButton
use Gtk2::Ex::VolumeButton;
...
my $vb = Gtk2::Ex::VolumeButton->new(
volume => 20,
mute_image => 'mute.png',
zero_image => 'zero.png',
min_image => 'min.png',
medium_image => 'medium.png',
max_image => 'max.png',
icon_size => 20,
position => 'top',
muted => 1
);
$vb->show();
$vb->signal_connect( volume_changed =>
sub { print 'volume changed: ', $vb->{volume}, "\n" } );
$vb->signal_connect( mute_changed =>
sub { print $_[1] ? 'muted : 'unmuted', "\n" } );
...
Gtk2->main();
Current volume
Image to lay over the current image when the volume is muted
Image to display when the volume is zero
Image to display when the volume is minimal
Image to display when the volume is medium
Image to display when the volume is maximal
Position of the popup window relativ to the button
'top' and 'buttom' are supported
Is the volume muted?
Emitted when the volume property is changed
Emitted when the mute status is changed
Gtk2, Glib::Object, Gtk2::Object, Gtk2::Widget, Gtk2::Container, Gtk2::Bin, Gtk2::Button, Gtk2::ToggleButton
Florian Ragwitz <flora@cpan.org>
Copyright (C) 2004 by Florian Ragwitz
This program 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 2 of the License, or (at your option) any later version.
This program 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 Library General Public License for more details.
You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
| Gtk2-Ex-VolumeButton documentation | Contained in the Gtk2-Ex-VolumeButton distribution. |
package Gtk2::Ex::VolumeButton; use strict; use warnings; use Glib qw( TRUE FALSE ); use Gtk2; use Gtk2::Gdk::Keysyms; our $VERSION = '0.07'; use Glib::Object::Subclass Gtk2::ToggleButton::, signals => { volume_changed => { flags => [qw( run-last )], return_type => undef, param_types => [qw( Glib::Int )] }, mute_changed => { flags => [qw( run-last )], return_type => undef, param_types => [qw( Glib::Boolean )] }, show => \&on_show }, properties => [ Glib::ParamSpec->int( 'volume', 'Volume', 'Current volume', 0, 100, 50, [qw( readable writable )] ), Glib::ParamSpec->string( 'mute_image', 'Mute Image', 'Image to display when the volume is muted', '', [qw( readable writable )] ), Glib::ParamSpec->string( 'zero_image', 'Zero Image', 'Image to display when the volume is zero', '', [qw( readable writable )] ), Glib::ParamSpec->string( 'min_image', 'Min Image', 'Image to display when the volume is minimal', '', [qw( readable writable )] ), Glib::ParamSpec->string( 'medium_image', 'Medium Image', 'Image to display when the volume is medium', '', [qw( readable writable )] ), Glib::ParamSpec->string( 'max_image', 'Max Image', 'Image to display when the volume is maximal', '', [qw( readable writable )] ), Glib::ParamSpec->int( 'icon_size', 'Icon Size', 'Size of the icons', 0, 1000, 18, [qw( readable writable )] ), Glib::ParamSpec->string( 'position', 'Position', 'Position of the popup window', 'bottom', [qw( readable writable )] ), Glib::ParamSpec->boolean( 'muted', 'Muted', 'Is the volume muted?', 0, [qw( readable writable )] ) ]; sub INIT_INSTANCE { my $self = shift; $self->{volume} = 0; $self->{icon_size} = 18; $self->{position} = 'buttom'; $self->signal_connect( 'toggled', \&toggle_cb ); $self->signal_connect( 'scroll_event', \&scroll_event_cb ); $self->{image} = Gtk2::Image->new(); $self->{image}->show(); $self->add( $self->{image} ); } sub update_pixbufs { my $self = shift; for(qw( mute zero min medium max )) { if( ref $self->{$_.'_image'} && $self->{$_.'_image'}->isa('Gtk2::Gdk::Pixbuf') ) { $self->{pixbufs}->{$_} = $self->{$_.'_image'}; } elsif( -r $self->{$_.'_image'} ) { $self->{pixbufs}->{$_} = Gtk2::Gdk::Pixbuf->new_from_file_at_size( $self->{$_.'_image'}, $self->{icon_size}, $self->{icon_size} ); } elsif($_) { $self->{pixbufs}->{$_} = $self->render_icon( $self->{$_.'_image'}, $self->{icon_size} ); } } } sub on_show { my $self = shift; $self->update_pixbufs(); $self->update_image( $self->{volume} ); $self->signal_chain_from_overridden(); } sub _CLAMP { my( $x, $min, $max ) = @_; return $max if $x > $max; return $min if $x < $min; return $x; } sub _MAX { my( $a, $b ) = @_; return ($a > $b) ? $a : $b; } sub scale_key_press_cb { my( undef, $event, $self ) = @_; if( $event->keyval == $Gtk2::Gdk::Keysyms{Escape} ) { $self->hide_scale(); $self->set_volume( $self->{revert_volume} ); return TRUE; } elsif($event->keyval == $Gtk2::Gdk::Keysyms{Return} || $event->keyval == $Gtk2::Gdk::Keysyms{space} ) { $self->hide_scale(); return TRUE; } return FALSE; } sub scale_value_changed_cb { my( $widget, $self ) = @_; my $vol = $widget->get_value(); $vol = _CLAMP( $vol, 0, 100 ); $self->{volume} = $vol; $self->update_image($vol); $self->signal_emit( 'volume_changed', $vol ); } sub popup_button_press_event_cb { my( undef, undef, $self ) = @_; if( $self->{popup} ) { $self->hide_scale(); return TRUE; } return FALSE; } sub show_scale { my $self = shift; $self->{popup} = Gtk2::Window->new('popup'); $self->{popup}->set_screen( $self->get_screen ); $self->{revert_volume} = $self->{volume}; my $frame = Gtk2::Frame->new(); $frame->set_border_width(0); $frame->set_shadow_type('out'); $frame->show(); $self->{popup}->add($frame); my $box = Gtk2::VBox->new( FALSE, 0 ); $box->show(); $frame->add($box); my $adj = Gtk2::Adjustment->new( $self->{volume}, 0, 100, 5, 10, 0 ); $self->{scale} = Gtk2::VScale->new($adj); $self->{scale}->set_draw_value(FALSE); $self->{scale}->set_update_policy('continuous'); $self->{scale}->set_inverted(TRUE); $self->{scale}->show(); $self->{popup}->signal_connect( 'button_press_event', \&popup_button_press_event_cb, $self); $self->{scale}->signal_connect( 'key_press_event', \&scale_key_press_cb, $self ); $self->{scale}->signal_connect( 'value_changed', \&scale_value_changed_cb, $self ); my $label = Gtk2::Label->new('+'); $label->show(); $box->pack_start( $label, FALSE, TRUE, 0 ); $label = Gtk2::Label->new('-'); $label->show(); $box->pack_end( $label, FALSE, TRUE, 0 ); $box->pack_start( $self->{scale}, TRUE, TRUE, 0 ); my $req = $self->{popup}->size_request(); my($x, $y) = $self->window->get_origin(); my $alloc = $self->allocation(); $req->width( _MAX($req->width, $alloc->width) ); $self->{scale}->set_size_request( -1, 100 ); $self->{popup}->set_size_request( $req->width, -1 ); $x += $alloc->x; if( $self->{position} eq 'bottom' ) { $y += $alloc->y + $alloc->height; } else { $y -= ($self->{popup}->get_size())[1]; } $x = _MAX( 0, $x ); $y = _MAX( 0, $y ); $self->{popup}->move($x, $y); $self->{popup}->show(); $self->{popup}->grab_focus(); Gtk2->grab_add( $self->{popup} ); my $grabbed = Gtk2::Gdk->pointer_grab( $self->{popup}->window, TRUE, [qw( button-press-mask button-release-mask pointer-motion-mask )], undef, undef, Gtk2->get_current_event_time() ); if( $grabbed eq 'success' ) { $grabbed = Gtk2::Gdk->keyboard_grab( $self->{popup}->window, TRUE, Gtk2->get_current_event_time() ); $grabbed = 'success'; unless( $grabbed eq 'success' ) { Gtk2->grab_remove( $self->{popup} ); $self->{popup}->destroy(); } } else { Gtk2->grab_remove( $self->{popup} ); $self->{popup}->destroy(); } } sub hide_scale { my $self = shift; if( $self->{popup} ) { Gtk2->grab_remove( $self->{popup} ); Gtk2::Gdk->pointer_ungrab( Gtk2->get_current_event_time() ); Gtk2::Gdk->keyboard_ungrab( Gtk2->get_current_event_time() ); $self->{popup}->destroy(); } if( $self->get_active() ) { $self->set_active(FALSE); } } sub toggle_cb { my $self = shift; if( $self->get_active() ) { $self->show_scale(); } else { $self->hide_scale(); } } sub scroll_event_cb { my($self, $event) = @_; my $vol = $self->{volume}; if( $event->direction eq 'up' ) { $vol += 10; } elsif( $event->direction eq 'down' ) { $vol -= 10; } else { return; } $vol = _CLAMP( $vol, 0, 100 ); $self->set_volume($vol); $self->update_image($vol); return TRUE; } sub set_volume { my($self, $vol) = @_; return if $self->{volume} == $vol; $self->{volume} = $vol; $self->update_image( $vol ); $self->signal_emit( 'volume_changed', $vol ); } sub update_image { my($self, $vol) = @_; my $id; $vol = $self->{volume} unless defined $vol; if( $vol <= 0 ) { $id = 'zero'; } elsif( $vol <= 100 / 3 ) { $id = 'min'; } elsif( $vol <= 2 * 100 / 3 ) { $id = 'medium'; } else { $id = 'max'; } my $pixbuf = $self->{pixbufs}->{$id}->copy(); if( $self->{muted} ) { $self->{pixbufs}->{mute}->composite( $pixbuf, 0, 0, $self->{pixbufs}->{mute}->get_width(), $self->{pixbufs}->{mute}->get_height(), 0, 0, 1.0, 1.0, 'bilinear', 255 ); } $self->{image}->set_from_pixbuf( $pixbuf ); } sub toggle_mute { my $self = shift; $self->{muted} = ($self->{muted}) ? 0 : 1; $self->signal_emit( 'mute_changed', $self->{muted} ); $self->update_image(); } 1; __END__