From 1c5bfcf6a198bb5726eac311905c2cc73c79f357 Mon Sep 17 00:00:00 2001 From: Angelo Naselli Date: Tue, 24 Jun 2014 12:35:23 +0200 Subject: Adding a first attempt to port Clock, not working yet --- lib/AdminPanel/Module/Clock.pm | 336 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 336 insertions(+) create mode 100644 lib/AdminPanel/Module/Clock.pm (limited to 'lib/AdminPanel/Module') diff --git a/lib/AdminPanel/Module/Clock.pm b/lib/AdminPanel/Module/Clock.pm new file mode 100644 index 0000000..5525dda --- /dev/null +++ b/lib/AdminPanel/Module/Clock.pm @@ -0,0 +1,336 @@ +# vim: set et ts=4 sw=4: +package AdminPanel::Module::Clock; +#============================================================= -*-perl-*- + +=head1 NAME + +AdminPanel::Module::Clock - This module aims to configure system clock and time + +=head1 SYNOPSIS + + my $clockSettings = AdminPanel::Module::Clock->new(); + $clockSettings->start(); + +=head1 DESCRIPTION + +Long_description + +=head1 SUPPORT + +You can find documentation for this module with the perldoc command: + +perldoc AdminPanel::Module::Clock + +=head1 SEE ALSO + +SEE_ALSO + +=head1 AUTHOR + +Angelo Naselli + +=head1 COPYRIGHT and LICENSE + +Copyright (C) 2014, Angelo Naselli. + +This program is free software; you can redistribute it and/or modify +it under the terms of the GNU General Public License version 2, as +published by the Free Software Foundation. + +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 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 + +=head1 FUNCTIONS + +=cut + +use Moose; + +use diagnostics; +use strict; + +use AdminPanel::Shared::GUI; +use AdminPanel::Shared::Locales; +use AdminPanel::Shared::TimeZone; +use AdminPanel::Shared::Services;# qw (services); + + +use Time::Piece; + +use yui; + +extends qw( AdminPanel::Module ); + +### TODO icon +has '+icon' => ( + default => "/usr/share/mcc/themes/default/time-mdk.png", +); + +has 'loc' => ( + is => 'rw', + init_arg => undef, + builder => '_localeInitialize' +); + +sub _localeInitialize { + my $self = shift; + + # TODO fix domain binding for translation + $self->loc(AdminPanel::Shared::Locales->new(domain_name => 'libDrakX-standalone') ); + # TODO if we want to give the opportunity to test locally add dir_name => 'path' +} + +has 'sh_gui' => ( + is => 'rw', + lazy => 1, + init_arg => undef, + builder => '_SharedGUIInitialize' +); + +sub _SharedGUIInitialize { + my $self = shift; + + $self->sh_gui(AdminPanel::Shared::GUI->new() ); +} + +has 'sh_tz' => ( + is => 'rw', + lazy => 1, + init_arg => undef, + builder => '_SharedTimeZoneInitialize' +); + +sub _SharedTimeZoneInitialize { + my $self = shift; + + $self->sh_tz(AdminPanel::Shared::TimeZone->new() ); +} + + +=head1 VERSION + +Version 1.0.0 + +=cut + +our $VERSION = '1.0.0'; + +#============================================================= + +=head2 BUILD + +=head3 INPUT + + $self: this object + +=head3 DESCRIPTION + + The BUILD method is called after a Moose object is created, + in this methods Services loads all the service information. + +=cut + +#============================================================= +sub BUILD { + my $self = shift; + + if (! $self->name) { + $self->name ($self->loc->N("Date, Clock & Time Zone Settings")); + } +} + +#============================================================= + +=head2 start + +=head3 INPUT + + $self: this object + +=head3 DESCRIPTION + + This method extends Module::start and is invoked to + start admin clock + +=cut + +#============================================================= +sub start { + my $self = shift; + + $self->_adminClockPanel(); +}; + + + + + +sub _adminClockPanel { + my $self = shift; + + my $appTitle = yui::YUI::app()->applicationTitle(); + + ## set new title to get it in dialog + yui::YUI::app()->setApplicationTitle($self->name); + ## set icon if not already set by external launcher + yui::YUI::app()->setApplicationIcon($self->icon); + + my $factory = yui::YUI::widgetFactory; + my $optFactory = yui::YUI::optionalWidgetFactory; + die "calendar widgets missing" if (!$optFactory->hasDateField() || !$optFactory->hasTimeField()); + + # Create Dialog + my $dialog = $factory->createMainDialog; + + # Start Dialog layout: + my $layout = $factory->createVBox( $dialog ); + my $align; + + my $hbox = $factory->createHBox($layout); + + my $dateField = $optFactory->createDateField($hbox, ""); + $factory->createHSpacing($hbox, 1.0); + my $timeField = $optFactory->createTimeField($hbox, ""); + my $t = localtime; + my $day = $t->strftime("%F"); + my $time = $t->strftime("%H:%M:%S"); + $dateField->setValue($day); + $timeField->setValue($time); + + $factory->createHSpacing($hbox, 1.0); + my $frame = $factory->createFrame ($hbox, $self->loc->N("TimeZone")); + my $vbox = $factory->createVBox( $frame ); + my $timezone = $self->sh_tz->readConfiguration(); + my $timeZoneLbl = $factory->createLabel($vbox, $self->loc->N("not defined")); + if (exists $timezone->{ZONE}) { + $timeZoneLbl->setValue($timezone->{ZONE}); + } + + my $changeTZButton = $factory->createPushButton($vbox, $self->loc->N("Change Time Zone")); + + $hbox = $factory->createHBox($layout); + my $ntpFrame = $factory->createCheckBoxFrame($hbox, $self->loc->N("Enable Network Time Protocol"), 0); +# $ntpFrame->setWeight($yui::YD_HORIZ, 1); + + $vbox = $factory->createVBox( $ntpFrame ); + $factory->createLabel($vbox, $self->loc->N("Your computer can synchronize its clock with a remote time server using NTP")); + my $hbox1 = $factory->createHBox($vbox); + $factory->createLabel($hbox1,$self->loc->N("Server:")); + my $ntpServers = $factory->createComboBox( $hbox1, "" ); + +# + + + + +####################### +################## + + # buttons on the last line + $align = $factory->createLeft($layout); + $hbox = $factory->createHBox($align); + my $aboutButton = $factory->createPushButton($hbox, $self->loc->N("About") ); + my $resetButton = $factory->createPushButton($hbox, $self->loc->N("Reset") ); + $align = $factory->createRight($hbox); + $hbox = $factory->createHBox($align); + my $cancelButton = $factory->createPushButton($hbox, $self->loc->N("Cancel")); + my $okButton = $factory->createPushButton($hbox, $self->loc->N("Ok")); + + ## no changes by default + $dialog->setDefaultButton($cancelButton); + + # End Dialof layout + + while(1) { + my $event = $dialog->waitForEvent(1000); + my $eventType = $event->eventType(); + + + #event type checking + if ($eventType == $yui::YEvent::CancelEvent) { + last; + } + elsif ($eventType == $yui::YEvent::TimeoutEvent) { + $t = Time::Piece->strptime($timeField->value(), "%H:%M:%S") + 1; + $timeField->setValue($t->strftime("%H:%M:%S")); + } + elsif ($eventType == $yui::YEvent::WidgetEvent) { + # widget selected + my $widget = $event->widget(); + if ($widget == $cancelButton) { + last; + } + elsif ($widget == $okButton) { + ### TODO manage OK pressed ### + last; + } + elsif ($widget == $changeTZButton) { + my $timezones = $self->sh_tz->getTimeZones(); + if (!$timezones || scalar (@{$timezones}) == 0) { + $self->sh_gui->warningMsgBox({title => $self->loc->N("Timezone - DrakClock"), + text => $self->loc->N("Failed to retrieve timezone list"), + }); + $changeTZButton->setDisabled(); + } + else { + my $item = $self->sh_gui->ask_fromTreeList({title => $self->loc->N("Timezone - DrakClock"), + header => $self->loc->N("Which is your timezone?"), + default_button => 1, + item_separator => '/', + default_item => $timezone->{ZONE}, + list => $timezones}); + if ($item) { + $timezone->{UTC} = $self->sh_gui->ask_YesOrNo({ + title => $self->loc->N("GMT - DrakClock"), + text => $self->loc->N("Is your hardware clock set to GMT?"), + default_button => $timezone->{UTC}, + }); + $timezone->{ZONE} = $item; + $timeZoneLbl->setValue($timezone->{ZONE}); + } + } + } + elsif ($widget == $resetButton) { + $t = localtime; + $day = $t->strftime("%F"); + $time = $t->strftime("%H:%M:%S"); + $dateField->setValue($day); + $timeField->setValue($time); + } + elsif($widget == $aboutButton) { + my $translators = $self->loc->N("_: Translator(s) name(s) & email(s)\n"); + $translators =~ s/\/\>\;/g; + $self->sh_gui->AboutDialog({ name => $self->name, + version => $self->VERSION, + credits => $self->loc->N("Copyright (C) %s Mageia community", '2014'), + license => $self->loc->N("GPLv2"), + description => $self->loc->N("Date, Clock & Time Zone Settings allows to setup time zone and adjust date and time"), + authors => $self->loc->N("

Developers

+ +

Translators

+ ", + "Angelo Naselli <anaselli\@linux.it>", + $translators + ), + } + ); + } + } + } + $dialog->destroy(); + + #restore old application title + yui::YUI::app()->setApplicationTitle($appTitle) if $appTitle; +} + + + -- cgit v1.2.1