summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrbuj <[email protected]>2019-08-15 12:04:30 +0200
committerraveit65 <[email protected]>2019-08-20 16:10:38 +0200
commit797375812a94286b74397818e20e0c94791ab4d7 (patch)
treebcce57b8a462f837f50ac01521d56f4a8400ac06
parent289fbb8e96997aae9d8241e3783cd5b077766b63 (diff)
downloadmate-control-center-797375812a94286b74397818e20e0c94791ab4d7.tar.bz2
mate-control-center-797375812a94286b74397818e20e0c94791ab4d7.tar.xz
time-admin: Simplify date & time displaying
-rw-r--r--capplets/time-admin/src/main.c9
-rw-r--r--capplets/time-admin/src/time-share.h1
-rw-r--r--capplets/time-admin/src/time-tool.c120
-rw-r--r--capplets/time-admin/src/time-tool.h6
4 files changed, 76 insertions, 60 deletions
diff --git a/capplets/time-admin/src/main.c b/capplets/time-admin/src/main.c
index 2e31a5af..4a18c5fd 100644
--- a/capplets/time-admin/src/main.c
+++ b/capplets/time-admin/src/main.c
@@ -158,14 +158,9 @@ static void InitMainWindow(TimeAdmin *ta)
struct tm *LocalTime = GetCurrentTime();
ta->UpdateTimeId = 0;
ta->ApplyId = 0;
- gtk_spin_button_set_value(GTK_SPIN_BUTTON(ta->HourSpin),LocalTime->tm_hour);
- gtk_spin_button_set_value(GTK_SPIN_BUTTON(ta->MinuteSpin),LocalTime->tm_min);
- char *str = g_strdup_printf ("%02d", LocalTime->tm_sec);
- gtk_entry_set_text(GTK_ENTRY(ta->SecondSpin),str);
- g_free (str);
+ ta_refresh_time (ta, LocalTime);
/* date */
- gtk_calendar_mark_day (GTK_CALENDAR(ta->Calendar), LocalTime->tm_mday);
- ta->OldDay = LocalTime->tm_mday;
+ ta_refresh_date (ta, LocalTime);
Update_Clock_Start(ta);
}
diff --git a/capplets/time-admin/src/time-share.h b/capplets/time-admin/src/time-share.h
index 346944be..e6057687 100644
--- a/capplets/time-admin/src/time-share.h
+++ b/capplets/time-admin/src/time-share.h
@@ -54,7 +54,6 @@ typedef struct
GtkWidget *SaveButton;
int UpdateTimeId;
int ApplyId;
- int OldDay;
gboolean NtpState;
GDBusConnection *Connection;
GDBusProxy *proxy;
diff --git a/capplets/time-admin/src/time-tool.c b/capplets/time-admin/src/time-tool.c
index a5e13f03..5491ac6a 100644
--- a/capplets/time-admin/src/time-tool.c
+++ b/capplets/time-admin/src/time-tool.c
@@ -23,59 +23,69 @@
struct tm *GetCurrentTime(void)
{
- time_t tt;
- tzset();
- tt=time(NULL);
+ time_t tt;
+ tzset();
+ tt=time(NULL);
return localtime(&tt);
}
-static void UpdateDate(TimeAdmin *ta,gboolean state)
+
+void
+ta_refresh_time (TimeAdmin *ta, struct tm *LocalTime)
{
- struct tm *LocalTime;
+ gchar *str;
+
+ gtk_spin_button_set_value (GTK_SPIN_BUTTON (ta->HourSpin), LocalTime->tm_hour);
+ gtk_spin_button_set_value (GTK_SPIN_BUTTON (ta->MinuteSpin), LocalTime->tm_min);
+ str = g_strdup_printf ("%02d", LocalTime->tm_sec);
+ gtk_entry_set_text (GTK_ENTRY (ta->SecondSpin), str);
+ g_free (str);
+}
+
+void
+ta_refresh_date (TimeAdmin *ta, struct tm *LocalTime)
+{
+ gtk_calendar_select_month (GTK_CALENDAR (ta->Calendar),
+ LocalTime->tm_mon,
+ LocalTime->tm_year+1900);
+ gtk_calendar_select_day (GTK_CALENDAR (ta->Calendar),
+ LocalTime->tm_mday);
+ gtk_calendar_clear_marks (GTK_CALENDAR (ta->Calendar));
+ gtk_calendar_mark_day (GTK_CALENDAR (ta->Calendar),
+ LocalTime->tm_mday);
+}
- if(state == TRUE)
+static void
+UpdateDate (TimeAdmin *ta)
+{
+ if (ta->NtpState)
{
- LocalTime = GetCurrentTime();
- gtk_calendar_select_month (GTK_CALENDAR (ta->Calendar),
- LocalTime->tm_mon,
- LocalTime->tm_year+1900);
- gtk_calendar_select_day (GTK_CALENDAR (ta->Calendar),
- LocalTime->tm_mday);
+ struct tm *LocalTime = GetCurrentTime();
+ ta_refresh_time (ta, LocalTime);
+ ta_refresh_date (ta, LocalTime);
}
}
-static gboolean UpdateClock(gpointer data)
+
+static gboolean
+UpdateClock (gpointer data)
{
TimeAdmin *ta = (TimeAdmin *)data;
- struct tm *LocalTime;
- gchar *str;
- LocalTime = GetCurrentTime();
TimeoutFlag = 1;
- gtk_spin_button_set_value(GTK_SPIN_BUTTON(ta->HourSpin),LocalTime->tm_hour);
- gtk_spin_button_set_value(GTK_SPIN_BUTTON(ta->MinuteSpin),LocalTime->tm_min);
- str = g_strdup_printf ("%02d", LocalTime->tm_sec);
- gtk_entry_set_text(GTK_ENTRY(ta->SecondSpin),str);
-
- UpdateDate(ta,ta->NtpState);
- gtk_calendar_mark_day(GTK_CALENDAR(ta->Calendar),LocalTime->tm_mday);
- if(LocalTime->tm_mday != ta->OldDay)
- {
- gtk_calendar_unmark_day(GTK_CALENDAR(ta->Calendar),ta->OldDay);
- ta->OldDay = LocalTime->tm_mday;
- }
+ UpdateDate (ta);
TimeoutFlag = 0;
- g_free(str);
return TRUE;
}
+
void Update_Clock_Start(TimeAdmin *ta)
{
if(ta->UpdateTimeId <= 0)
{
ta->UpdateTimeId = g_timeout_add(1000,(GSourceFunc)UpdateClock,ta);
}
-
}
+
void Update_Clock_Stop(TimeAdmin *ta)
{
if(ta->UpdateTimeId > 0)
@@ -84,6 +94,7 @@ void Update_Clock_Stop(TimeAdmin *ta)
ta->UpdateTimeId = 0;
}
}
+
gboolean GetNtpState(TimeAdmin *ta)
{
GDBusProxy *proxy = NULL;
@@ -187,17 +198,19 @@ void SetTimeZone(GDBusProxy *proxy,const char *zone)
MessageReport(_("Set time zone"),error->message,ERROR);
}
}
-static void ChangeSpinBttonState(TimeAdmin *ta,gboolean State)
+
+static void
+ChangeSpinBttonState (TimeAdmin *ta)
{
- gtk_widget_set_sensitive(ta->SaveButton,!State);
- SetTooltip(ta->SaveButton,!ta->NtpState);
- SetTooltip(ta->HourSpin,!ta->NtpState);
- SetTooltip(ta->MinuteSpin,!ta->NtpState);
- SetTooltip(ta->SecondSpin,!ta->NtpState);
- SetTooltip(ta->Calendar,!ta->NtpState);
+ gtk_widget_set_sensitive (ta->SaveButton, !ta->NtpState);
+ SetTooltip (ta->SaveButton, !ta->NtpState);
+ SetTooltip (ta->HourSpin, !ta->NtpState);
+ SetTooltip (ta->MinuteSpin, !ta->NtpState);
+ SetTooltip (ta->SecondSpin, !ta->NtpState);
+ SetTooltip (ta->Calendar, !ta->NtpState);
}
-gboolean ChangeNtpSync(GtkSwitch *widget,gboolean state,gpointer data)
+gboolean ChangeNtpSync (GtkSwitch *widget, gboolean state, gpointer data)
{
TimeAdmin *ta = (TimeAdmin *)data;
GError *error = NULL;
@@ -211,7 +224,7 @@ gboolean ChangeNtpSync(GtkSwitch *widget,gboolean state,gpointer data)
NULL,
&error);
- if(ret == NULL)
+ if (ret == NULL)
{
MessageReport(_("Set Ntp sync"),error->message,ERROR);
g_error_free(error);
@@ -220,12 +233,13 @@ gboolean ChangeNtpSync(GtkSwitch *widget,gboolean state,gpointer data)
else
{
ta->NtpState = state;
- ChangeSpinBttonState(ta,state);
- Update_Clock_Start(ta);
- UpdateDate(ta,state);
+ ChangeSpinBttonState (ta);
+ Update_Clock_Start (ta);
+ UpdateDate (ta);
}
return FALSE;
}
+
static guint GetTimeStamp(TimeAdmin *ta)
{
guint year,month,day,hour,min,sec;
@@ -242,7 +256,9 @@ static guint GetTimeStamp(TimeAdmin *ta)
return atoi(st);
}
-static void SetTime(GDBusProxy *proxy,gint64 TimeSec)
+
+static gboolean
+SetTime (GDBusProxy *proxy, gint64 TimeSec)
{
GError *error = NULL;
GVariant *ret;
@@ -259,20 +275,20 @@ static void SetTime(GDBusProxy *proxy,gint64 TimeSec)
{
MessageReport(_("Set Ntp sync"),error->message,ERROR);
g_error_free(error);
+ return FALSE;
}
+
+ return TRUE;
}
-void SaveModifyTime (GtkButton *button,gpointer data)
+
+void SaveModifyTime (GtkButton *button, gpointer data)
{
TimeAdmin *ta = (TimeAdmin *)data;
- guint ts;
- if(ta->NtpState == FALSE)
- {
- ts = GetTimeStamp(ta);
- SetTime(ta->proxy,ts);
- }
- else
+ if (SetTime (ta->proxy, GetTimeStamp(ta)))
{
- MessageReport(_("Set Time"),_("NTP synchronization has been started, the modification is invalid"),INFOR);
+ struct tm *LocalTime = GetCurrentTime();
+ ta_refresh_time (ta, LocalTime);
+ ta_refresh_date (ta, LocalTime);
}
}
diff --git a/capplets/time-admin/src/time-tool.h b/capplets/time-admin/src/time-tool.h
index f5461b0d..9c17703e 100644
--- a/capplets/time-admin/src/time-tool.h
+++ b/capplets/time-admin/src/time-tool.h
@@ -22,6 +22,12 @@
struct tm *GetCurrentTime (void);
void Update_Clock_Start(TimeAdmin *ta);
+void ta_refresh_time (TimeAdmin *ta,
+ struct tm *LocalTime);
+
+void ta_refresh_date (TimeAdmin *ta,
+ struct tm *LocalTime);
+
void Update_Clock_Stop (TimeAdmin *ta);
gboolean ChangeNtpSync (GtkSwitch *widget,