2006-08-20 22:43:09 +04:00
/*
* $ Id $
*
* Application for setting system date , time and local timezone
* Part of Equinox Desktop Environment ( EDE ) .
* Copyright ( c ) 2000 - 2006 EDE Authors .
*
* This program is licenced under terms of the
* GNU General Public Licence version 2 or newer .
* See COPYING for details .
*/
2010-03-28 16:54:45 +04:00
# ifdef HAVE_CONFIG_H
# include <config.h>
# endif
2008-10-07 13:03:45 +04:00
# include "ede-timedate.h"
2006-08-20 22:43:09 +04:00
2010-03-28 16:54:45 +04:00
# include <sys/stat.h>
# include <unistd.h>
# include <stdlib.h>
# include <time.h>
# include <FL/Fl_Pixmap.H>
# include <FL/Fl_Shared_Image.H>
# include <FL/Fl_Repeat_Button.H>
# define FL_PATH_MAX 1024
2007-09-05 23:51:01 +04:00
# include <edelib/MessageBox.h>
# include <edelib/Run.h>
# include <edelib/StrUtil.h>
# include <edelib/Config.h>
# include <edelib/IconTheme.h>
2009-02-23 18:28:58 +03:00
# include <edelib/Debug.h>
2009-03-25 14:20:05 +03:00
# include <edelib/Window.h>
2010-03-28 16:54:45 +04:00
# include <edelib/Ede.h>
2007-09-05 23:51:01 +04:00
2006-08-20 22:43:09 +04:00
# include "icons/world2.xpm"
2009-03-25 14:20:05 +03:00
static edelib : : Window * timedateWindow = ( edelib : : Window * ) 0 ;
2007-09-05 23:51:01 +04:00
EDE_Calendar * calendar = ( EDE_Calendar * ) 0 ;
Fl_Time_Input * timeBox = ( Fl_Time_Input * ) 0 ;
Fl_Choice * timeFormat = ( Fl_Choice * ) 0 ;
Fl_Menu_Item menu_timeFormat [ ] = {
{ _ ( " 12 hour " ) } ,
{ _ ( " 24 hour " ) } ,
{ 0 }
} ;
2006-08-20 22:43:09 +04:00
2009-03-30 19:17:00 +04:00
static Fl_Pixmap image_world ( ( const char * * ) world2_xpm ) ;
2006-08-20 22:43:09 +04:00
2007-09-05 23:51:01 +04:00
Fl_Choice * timeZonesList = ( Fl_Choice * ) 0 ;
Fl_Button * applyButton ;
Fl_Input_Choice * serverList ;
Fl_Clock_Output * clk ;
2006-08-20 22:43:09 +04:00
2007-09-05 23:51:01 +04:00
// Status variables
bool time_changed , format_changed , tz_changed , date_changed ;
2006-08-20 22:43:09 +04:00
2007-09-05 23:51:01 +04:00
// config file for workpanel (time format)
edelib : : Config config_file ;
2006-08-20 22:43:09 +04:00
2009-11-20 20:08:29 +03:00
const char * zonetab_dir = 0 ;
2006-08-20 22:43:09 +04:00
2007-09-05 23:51:01 +04:00
// Time servers - all in one string, so that translators can easily add new servers
const char * time_servers = _ ( " International (pool.ntp.org) \n Europe (europe.pool.ntp.org) \n Asia (asia.pool.ntp.org) \n North America (north-america.pool.ntp.org) \n Australia and Oceania (oceania.pool.ntp.org) " ) ;
2006-08-20 22:43:09 +04:00
2007-09-05 23:51:01 +04:00
// --------------------------------------------
// Timezone funcs
// --------------------------------------------
2006-08-20 22:43:09 +04:00
2007-09-05 23:51:01 +04:00
// Return string describing current timezone
2006-08-20 22:43:09 +04:00
2007-09-05 23:51:01 +04:00
const char * get_current_timezone ( ) {
static char current_tz [ 100 ] = " " ;
char tmp [ 100 ] ;
2006-08-20 22:43:09 +04:00
FILE * f ;
2007-09-05 23:51:01 +04:00
if ( readlink ( " /etc/localtime " , tmp , sizeof ( tmp ) - 1 ) > 0 ) {
char * tz = strstr ( tmp , " /zoneinfo/ " ) + strlen ( " /zoneinfo/ " ) ;
strncpy ( current_tz , tz , 99 ) ;
current_tz [ 99 ] = ' \0 ' ;
2006-08-20 22:43:09 +04:00
// timeZonesList->value(tz);
2007-09-05 23:51:01 +04:00
// timeZonesList->text(tz);
2006-08-20 22:43:09 +04:00
} else {
// some distros just copy the file instead of symlinking
// But /etc/sysconfig/clock should contain ZONE=Continent/City
if ( ( f = fopen ( " /etc/sysconfig/clock " , " r " ) ) ! = NULL ) {
2007-09-05 23:51:01 +04:00
while ( fgets ( tmp , 99 , f ) ! = NULL ) {
2006-08-20 22:43:09 +04:00
// last char is newline, let's strip that:
2007-09-05 23:51:01 +04:00
if ( tmp [ strlen ( tmp ) - 1 ] = = ' \n ' )
tmp [ strlen ( tmp ) - 1 ] = ' \0 ' ;
if ( strstr ( tmp , " ZONE= " ) = = tmp ) {
strncpy ( current_tz , tmp + 5 , 99 ) ;
current_tz [ 99 ] = ' \0 ' ;
2006-08-20 22:43:09 +04:00
// timeZonesList->value(tempstring+5);
2007-09-05 23:51:01 +04:00
// timeZonesList->text(tempstring+5);
2006-08-20 22:43:09 +04:00
}
}
} else {
// timeZonesList->value(_("Zone information not found."));
2007-09-05 23:51:01 +04:00
timeZonesList - > add ( _ ( " Zone information not found. " ) ) ;
2006-08-20 22:43:09 +04:00
}
}
2007-09-05 23:51:01 +04:00
return current_tz ;
2006-08-20 22:43:09 +04:00
}
2007-09-05 23:51:01 +04:00
// Fill timeZonesList widget with time zones
2006-08-20 22:43:09 +04:00
2007-09-05 23:51:01 +04:00
void fill_timezones ( const char * current ) {
FILE * f ;
char tempstring [ 101 ] = " " ;
struct stat s ;
if ( stat ( " /usr/share/zoneinfo/zone.tab " , & s ) = = 0 ) {
2009-02-27 17:51:55 +03:00
edelib : : run_sync ( " cat /usr/share/zoneinfo/zone.tab | grep -e ^[^#] | cut -f 3 |sort > /tmp/_tzone_.txt " ) ;
2007-09-05 23:51:01 +04:00
zonetab_dir = " /usr/share/zoneinfo/ " ;
}
else if ( stat ( " /usr/local/share/zoneinfo/zone.tab " , & s ) = = 0 ) {
2009-02-27 17:51:55 +03:00
edelib : : run_sync ( " cat /usr/local/share/zoneinfo/zone.tab | grep -e ^[^#] | cut -f 3 | sort > /tmp/_tzone_.txt " ) ;
2007-09-05 23:51:01 +04:00
zonetab_dir = " /usr/local/share/zoneinfo/ " ;
} else {
timeZonesList - > add ( _ ( " Zone information not found. " ) ) ;
return ;
}
if ( ( f = fopen ( " /tmp/_tzone_.txt " , " r " ) ) ! = NULL )
{
timeZonesList - > clear ( ) ;
while ( fgets ( tempstring , 100 , f ) ! = NULL )
{
timeZonesList - > add ( edelib : : str_trim ( tempstring ) ) ;
}
fclose ( f ) ;
timeZonesList - > value ( timeZonesList - > find_item ( current ) ) ;
} else {
timeZonesList - > add ( _ ( " Zone information not found. " ) ) ;
}
remove ( " /tmp/_tzone_.txt " ) ;
// TODO: Group::current()->array().sort(sort_f);
2006-08-20 22:43:09 +04:00
}
2007-09-05 23:51:01 +04:00
// Change time zone
char * apply_timezone ( ) {
static char cmd [ FL_PATH_MAX ] = " " ;
char tz [ FL_PATH_MAX ] ;
if ( ! zonetab_dir ) { // this should be set by fill_timezones
// although, if there are no timezones, tz_changed should never become true
edelib : : alert ( _ ( " Zone information not found. " ) ) ;
return 0 ;
}
timeZonesList - > item_pathname ( cmd , sizeof ( cmd ) - 1 ) ;
snprintf ( tz , sizeof ( tz ) - 1 , " %s%s " , zonetab_dir , cmd ) ;
snprintf ( cmd , sizeof ( cmd ) - 1 , " rm /etc/localtime; ln -s %s /etc/localtime; " , tz ) ;
char val [ FL_PATH_MAX ] ;
snprintf ( val , sizeof ( val ) - 1 , " TZ=%s " , tz ) ;
putenv ( val ) ;
tz_changed = false ;
return cmd ;
2006-08-20 22:43:09 +04:00
}
2007-09-05 23:51:01 +04:00
// --------------------------------------------
// Time format
2006-08-20 22:43:09 +04:00
// --------------------------------------------
2007-09-05 23:51:01 +04:00
// Get current time format
2006-08-20 22:43:09 +04:00
2007-09-05 23:51:01 +04:00
int get_format ( ) {
if ( config_file . load ( " ede.conf " ) ) {
char timeformatstr [ 5 ] ;
config_file . get ( " Clock " , " TimeFormat " , timeformatstr , 5 ) ;
if ( strcmp ( timeformatstr , " 24 " ) = = 0 )
return 1 ;
2006-08-20 22:43:09 +04:00
}
2007-09-05 23:51:01 +04:00
//Default to 12 hour is there's a problem
return 0 ;
}
// Set time format
void apply_format ( int format ) {
if ( config_file . load ( " ede.conf " ) ) {
if ( format = = 1 )
config_file . set ( " Clock " , " TimeFormat " , " 24 " ) ;
else
config_file . set ( " Clock " , " TimeFormat " , " 12 " ) ;
config_file . save ( " ede.conf " ) ;
2006-08-20 22:43:09 +04:00
}
2007-09-05 23:51:01 +04:00
format_changed = false ;
2006-08-20 22:43:09 +04:00
}
2007-09-05 23:51:01 +04:00
// --------------------------------------------
// Apply
// --------------------------------------------
char * apply_date_time ( ) {
static char cmd2 [ FL_PATH_MAX ] = " " ;
edelib : : Date date = calendar - > today_date ( ) ;
int mmonth = date . month ( ) ;
int mday = date . day ( ) ;
int myear = date . year ( ) ;
int mhour = 0 ; //timeBox->hour();
int mminute = 0 ; //timeBox->minute();
snprintf ( cmd2 , sizeof ( cmd2 ) - 1 , " date %.2d%.2d%.2d%.2d%.2d " , mmonth , mday , mhour , mminute , ( myear - 2000 ) ) ;
time_changed = false ;
date_changed = false ;
return cmd2 ;
2006-08-20 22:43:09 +04:00
}
2007-09-05 23:51:01 +04:00
// Little helper func
char * strdupcat ( char * dest , char * src ) {
if ( ! src ) return dest ;
if ( ! dest ) return strdup ( src ) ;
dest = ( char * ) realloc ( dest , strlen ( dest ) + strlen ( src ) + 1 ) ;
dest = strcat ( dest , src ) ;
return dest ;
2006-08-20 22:43:09 +04:00
}
2007-09-05 23:51:01 +04:00
// Apply all changes
void apply_all ( ) {
2009-02-23 18:28:58 +03:00
edelib : : alert ( " Not implemented yet " ) ;
#if 0
2007-09-05 23:51:01 +04:00
// Combine results into a single string so that we can run all those commands as root
char * cmd = 0 ;
if ( format_changed ) apply_format ( timeFormat - > value ( ) ) ; // don't need root for this
if ( tz_changed ) cmd = strdupcat ( cmd , apply_timezone ( ) ) ;
if ( time_changed | | date_changed ) cmd = strdupcat ( cmd , apply_date_time ( ) ) ;
int ret = 0 ;
if ( cmd ) ret = edelib : : run_program ( cmd , /*wait=*/ true , /*root=*/ true ) ;
if ( ret ! = 0 ) {
edelib : : MessageBox mb ;
mb . set_theme_icon ( MSGBOX_ICON_ERROR ) ; // specified in edelib/MessageBox.h
mb . set_text ( _ ( " Error setting date or time. " ) ) ;
mb . add_button ( _ ( " &Close " ) ) ;
mb . set_modal ( ) ;
mb . run ( ) ;
}
// Funcs should reset *_changed to false
else if ( ! time_changed & & ! format_changed & & ! tz_changed & & ! date_changed )
applyButton - > deactivate ( ) ;
2009-02-23 18:28:58 +03:00
# endif
2007-09-05 23:51:01 +04:00
}
// --------------------------------------------
// Synchronize
// --------------------------------------------
void synchronize ( const char * server ) {
2009-02-23 18:28:58 +03:00
edelib : : alert ( " Not implemented yet " ) ;
#if 0
2007-09-05 23:51:01 +04:00
char buffer [ 1024 ] ;
snprintf ( buffer , 1024 , " ntpdate %s " , server ) ;
fprintf ( stderr , " run: %s \n " , buffer ) ;
long ret = edelib : : run_program ( buffer , /*wait=*/ true , /*root=*/ true ) ;
if ( ret = = edelib : : RUN_NOT_FOUND )
edelib : : alert ( _ ( " Program <b>ntpdate</b> is required for time synchronization feature. " ) ) ;
else if ( ret > = edelib : : RUN_USER_CANCELED )
edelib : : alert ( _ ( " Internal error: %d. " ) , ret ) ;
else if ( ret ! = 0 )
edelib : : alert ( _ ( " ntpdate failed with the following return value: %d \n Please consult ntpdate manual for details. " ) , ret ) ;
2009-02-23 18:28:58 +03:00
# endif
2007-09-05 23:51:01 +04:00
}
void populate_servers ( ) {
char * tmp = strdup ( time_servers ) ;
char * server = strtok ( tmp , " \n " ) ;
while ( server ) {
serverList - > add ( server ) ;
server = strtok ( NULL , " \n " ) ;
}
free ( tmp ) ;
serverList - > value ( 0 ) ;
}
// --------------------------------------------
// Callbacks
// --------------------------------------------
static void cb_Apply ( Fl_Button * , void * ) {
apply_all ( ) ;
}
static void cb_Close ( Fl_Button * , void * ) {
if ( time_changed | | format_changed | | tz_changed | | date_changed ) {
edelib : : MessageBox mb ;
mb . set_theme_icon ( MSGBOX_ICON_WARNING ) ; // specified in edelib/MessageBox.h
mb . set_text ( _ ( " You have unsaved changes in this window! \n Do you want to close it anyway? " ) ) ;
mb . add_button ( _ ( " Go &back " ) ) ;
mb . add_button ( _ ( " &Discard changes " ) ) ;
mb . set_modal ( ) ;
if ( mb . run ( ) ! = 1 ) return ;
2006-08-20 22:43:09 +04:00
}
exit ( 0 ) ;
}
2007-09-05 23:51:01 +04:00
static void cb_timeChanged ( Fl_Widget * , void * ) {
clk - > value ( timeBox - > hour ( ) , timeBox - > minute ( ) , timeBox - > second ( ) ) ;
if ( time_changed ) return ;
time_changed = true ;
applyButton - > activate ( ) ;
}
static void cb_timeFormatChanged ( Fl_Widget * , void * ) {
if ( format_changed ) return ;
format_changed = true ;
applyButton - > activate ( ) ;
}
static void cb_tzChanged ( Fl_Widget * , void * ) {
2006-08-20 22:43:09 +04:00
if ( tz_changed ) return ;
tz_changed = true ;
applyButton - > activate ( ) ;
}
2007-09-05 23:51:01 +04:00
static void cb_dateChanged ( Fl_Widget * , void * ) {
2006-08-20 22:43:09 +04:00
if ( date_changed ) return ;
date_changed = true ;
applyButton - > activate ( ) ;
}
2007-09-05 23:51:01 +04:00
static void cb_sync ( Fl_Widget * , void * ) {
char buffer [ 1024 ] ;
strncpy ( buffer , serverList - > value ( ) , 1024 ) ;
buffer [ 1023 ] = ' \0 ' ;
// If part of string is in braces (), take just that
char * k1 = strchr ( buffer , ' ( ' ) ;
char * k2 ;
if ( k1 ) k2 = strchr ( k1 , ' ) ' ) ;
if ( k1 & & k2 ) {
int i = 0 ;
for ( char * p = k1 + 1 ; p ! = k2 ; p + + , i + + )
buffer [ i ] = * p ;
buffer [ i ] = ' \0 ' ;
}
synchronize ( buffer ) ;
}
static void cb_hour ( Fl_Widget * , void * ) {
int k = timeBox - > hour ( ) - 1 ;
if ( k = = - 1 ) k = 23 ;
timeBox - > hour ( k ) ;
timeBox - > do_callback ( ) ;
}
static void cb_hour1 ( Fl_Widget * , void * ) {
int k = timeBox - > hour ( ) + 1 ;
if ( k = = 24 ) k = 0 ;
timeBox - > hour ( k ) ;
timeBox - > do_callback ( ) ;
}
static void cb_minute ( Fl_Widget * , void * ) {
int l = timeBox - > minute ( ) - 1 ;
if ( l = = - 1 ) {
l = 59 ;
int k = timeBox - > hour ( ) - 1 ;
if ( k = = - 1 ) k = 23 ;
timeBox - > hour ( k ) ;
}
timeBox - > minute ( l ) ;
timeBox - > do_callback ( ) ;
}
static void cb_minute1 ( Fl_Widget * , void * ) {
int l = timeBox - > minute ( ) + 1 ;
if ( l = = 60 ) {
l = 0 ;
int k = timeBox - > hour ( ) + 1 ;
if ( k = = 24 ) k = 0 ;
timeBox - > hour ( k ) ;
}
timeBox - > minute ( l ) ;
timeBox - > do_callback ( ) ;
}
static void tick ( void * v ) {
if ( time_changed ) {
clk - > value ( clk - > value ( ) + 1 - 3600 ) ;
} else {
clk - > value ( time ( 0 ) ) ;
if ( timeBox ) timeBox - > epoch ( time ( 0 ) ) ;
}
Fl : : add_timeout ( 1.0 , tick , v ) ;
2006-08-20 22:43:09 +04:00
}
2007-09-05 23:51:01 +04:00
2006-08-20 22:43:09 +04:00
// --------------------------------------------
// Main window design
2007-09-05 23:51:01 +04:00
// --------------------------------------------
2006-08-20 22:43:09 +04:00
2007-09-05 23:51:01 +04:00
int main ( int argc , char * * argv ) {
2010-03-28 16:54:45 +04:00
EDE_APPLICATION ( " ede-timedate " ) ;
2007-09-05 23:51:01 +04:00
2010-03-28 16:54:45 +04:00
time_changed = format_changed = tz_changed = date_changed = false ;
2007-09-05 23:51:01 +04:00
2009-03-25 14:20:05 +03:00
{ timedateWindow = new edelib : : Window ( 415 , 320 , _ ( " Time and date " ) ) ;
2007-09-05 23:51:01 +04:00
{ Fl_Tabs * o = new Fl_Tabs ( 5 , 5 , 405 , 270 ) ;
{ Fl_Group * o = new Fl_Group ( 5 , 30 , 405 , 245 , _ ( " &Time/date " ) ) ;
{ calendar = new EDE_Calendar ( 10 , 35 , 220 , 202 ) ;
calendar - > box ( FL_DOWN_BOX ) ;
calendar - > color ( FL_BACKGROUND2_COLOR ) ;
calendar - > callback ( cb_dateChanged ) ;
} // EDE_Calendar* calendar
{ clk = new Fl_Clock_Output ( 235 , 35 , 170 , 177 ) ;
clk - > box ( FL_DOWN_BOX ) ;
clk - > color ( FL_BACKGROUND2_COLOR ) ;
tick ( clk ) ;
} // Fl_Clock* o
{ Fl_Repeat_Button * o = new Fl_Repeat_Button ( 235 , 212 , 25 , 23 ) ;
o - > callback ( cb_hour ) ;
o - > label ( " @-1<< " ) ;
o - > labelcolor ( fl_darker ( FL_BACKGROUND_COLOR ) ) ;
o - > selection_color ( fl_lighter ( FL_BACKGROUND_COLOR ) ) ;
} // TimeBox* timeBox
{ Fl_Repeat_Button * o = new Fl_Repeat_Button ( 260 , 212 , 25 , 23 ) ;
o - > callback ( cb_minute ) ;
o - > label ( " @-1< " ) ;
o - > labelcolor ( fl_darker ( FL_BACKGROUND_COLOR ) ) ;
o - > selection_color ( fl_lighter ( FL_BACKGROUND_COLOR ) ) ;
} // TimeBox* timeBox
{ timeBox = new Fl_Time_Input ( 285 , 212 , 70 , 23 ) ;
timeBox - > box ( FL_DOWN_BOX ) ;
timeBox - > callback ( cb_timeChanged ) ;
timeBox - > when ( FL_WHEN_CHANGED ) ;
timeBox - > epoch ( time ( 0 ) ) ;
} // TimeBox* timeBox
{ Fl_Repeat_Button * o = new Fl_Repeat_Button ( 355 , 212 , 25 , 23 ) ;
o - > callback ( cb_minute1 ) ;
o - > label ( " @-1> " ) ;
o - > labelcolor ( fl_darker ( FL_BACKGROUND_COLOR ) ) ;
o - > selection_color ( fl_lighter ( FL_BACKGROUND_COLOR ) ) ;
} // TimeBox* timeBox
{ Fl_Repeat_Button * o = new Fl_Repeat_Button ( 380 , 212 , 25 , 23 ) ;
o - > callback ( cb_hour1 ) ;
o - > label ( " @-1>> " ) ;
o - > labelcolor ( fl_darker ( FL_BACKGROUND_COLOR ) ) ;
o - > selection_color ( fl_lighter ( FL_BACKGROUND_COLOR ) ) ;
} // TimeBox* timeBox
{ timeFormat = new Fl_Choice ( 305 , 240 , 100 , 25 , _ ( " Time format: " ) ) ;
timeFormat - > down_box ( FL_BORDER_BOX ) ;
timeFormat - > menu ( menu_timeFormat ) ;
timeFormat - > callback ( cb_timeFormatChanged ) ;
timeFormat - > value ( get_format ( ) ) ;
} // Fl_Choice* timeFormat
2006-08-20 22:43:09 +04:00
o - > end ( ) ;
2007-09-05 23:51:01 +04:00
} // Fl_Group* o
{ Fl_Group * o = new Fl_Group ( 5 , 30 , 405 , 245 , _ ( " Time &zones " ) ) ;
2006-08-20 22:43:09 +04:00
o - > hide ( ) ;
2007-09-05 23:51:01 +04:00
{ Fl_Group * o = new Fl_Group ( 15 , 40 , 385 , 190 ) ;
o - > box ( FL_DOWN_BOX ) ;
o - > color ( FL_FOREGROUND_COLOR ) ;
{ Fl_Box * o = new Fl_Box ( 25 , 55 , 350 , 160 ) ;
o - > box ( FL_FLAT_BOX ) ;
o - > color ( FL_FOREGROUND_COLOR ) ;
o - > image ( image_world ) ;
} // Fl_Box* o
2006-08-20 22:43:09 +04:00
o - > end ( ) ;
2007-09-05 23:51:01 +04:00
} // Fl_Group* o
{ timeZonesList = new Fl_Choice ( 120 , 235 , 280 , 25 , _ ( " Time zone: " ) ) ;
timeZonesList - > down_box ( FL_BORDER_BOX ) ;
timeZonesList - > callback ( cb_tzChanged ) ;
fill_timezones ( get_current_timezone ( ) ) ;
} // Fl_Choice* timeZonesList
2006-08-20 22:43:09 +04:00
o - > end ( ) ;
2007-09-05 23:51:01 +04:00
} // Fl_Group* o
{ Fl_Group * o = new Fl_Group ( 5 , 30 , 405 , 245 , _ ( " &Synchronize " ) ) ;
o - > hide ( ) ;
{ Fl_Box * o = new Fl_Box ( 15 , 55 , 385 , 50 , _ ( " Select the server with which you want to synhronize your system clock: " ) ) ;
o - > align ( FL_ALIGN_INSIDE | FL_ALIGN_LEFT | FL_ALIGN_WRAP ) ;
o - > box ( FL_NO_BOX ) ;
} // Fl_Box* o
{ serverList = new Fl_Input_Choice ( 15 , 115 , 250 , 25 , " " ) ;
populate_servers ( ) ;
} // Fl_Input_Choice* serverList
{ Fl_Button * o = new Fl_Button ( 55 , 150 , 90 , 25 , _ ( " Synchronize " ) ) ;
o - > callback ( cb_sync ) ;
}
} // Fl_Group* o
2006-08-20 22:43:09 +04:00
o - > end ( ) ;
2007-09-05 23:51:01 +04:00
} // Fl_Tabs* o
{ Fl_Group * o = new Fl_Group ( 5 , 285 , 405 , 25 ) ;
{ applyButton = new Fl_Button ( 220 , 285 , 90 , 25 , _ ( " &Apply " ) ) ;
applyButton - > tooltip ( _ ( " Set system time " ) ) ;
applyButton - > callback ( ( Fl_Callback * ) cb_Apply ) ;
applyButton - > deactivate ( ) ;
} // Fl_Button* applyButton
{ Fl_Button * o = new Fl_Button ( 320 , 285 , 90 , 25 , _ ( " &Close " ) ) ;
o - > callback ( ( Fl_Callback * ) cb_Close ) ;
} // Fl_Button* o
2006-08-20 22:43:09 +04:00
o - > end ( ) ;
2007-09-05 23:51:01 +04:00
} // Fl_Group* o
timedateWindow - > end ( ) ;
} // Fl_Double_Window* timedateWindow
calendar - > take_focus ( ) ;
timedateWindow - > show ( argc , argv ) ;
return Fl : : run ( ) ;
2006-08-20 22:43:09 +04:00
}