1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
|
/* time-admin
* Copyright (C) 2018 zhuyaliang https://github.com/zhuyaliang/
*
* 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 3 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 General Public License for more details.
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include "time-share.h"
#include <glib/gi18n.h>
/******************************************************************************
* Function: MessageReport
*
* Explain: Prompt information dialog
*
* Input: @Title Message title
* @Msg Message content
* @nType Message type
* Output:
*
* Author: zhuyaliang 25/05/2018
******************************************************************************/
int MessageReport(const char *Title,
const char *Msg,
int nType)
{
GtkWidget *dialog = NULL;
int nRet;
switch(nType)
{
case ERROR:
{
dialog = gtk_message_dialog_new(NULL,
GTK_DIALOG_MODAL,
GTK_MESSAGE_ERROR,
GTK_BUTTONS_OK,
"%s", Title);
break;
}
case WARING:
{
dialog = gtk_message_dialog_new(NULL,
GTK_DIALOG_MODAL,
GTK_MESSAGE_WARNING,
GTK_BUTTONS_OK,
"%s", Title);
break;
}
case INFOR:
{
dialog = gtk_message_dialog_new(NULL,
GTK_DIALOG_MODAL,
GTK_MESSAGE_INFO,
GTK_BUTTONS_OK,
"%s", Title);
break;
}
case QUESTION:
{
dialog = gtk_message_dialog_new(NULL,
GTK_DIALOG_MODAL,
GTK_MESSAGE_QUESTION,
GTK_BUTTONS_YES_NO,
"%s", Title);
gtk_dialog_add_button (GTK_DIALOG (dialog),("_Return"),
GTK_RESPONSE_ACCEPT);
break;
}
case QUESTIONNORMAL:
{
dialog = gtk_message_dialog_new(NULL,
GTK_DIALOG_MODAL,
GTK_MESSAGE_QUESTION,
GTK_BUTTONS_YES_NO,
"%s", Title);
break;
}
default :
break;
}
gtk_message_dialog_format_secondary_text (GTK_MESSAGE_DIALOG(dialog),
"%s", Msg);
nRet = gtk_dialog_run(GTK_DIALOG(dialog));
gtk_widget_destroy(dialog);
return nRet;
}
void QuitApp(TimeAdmin *ta)
{
if(ta->UpdateTimeId > 0)
g_source_remove (ta->UpdateTimeId);
if(ta->ApplyId > 0)
g_source_remove(ta->ApplyId);
gtk_main_quit();
}
void SetTooltip(GtkWidget *box, gboolean mode)
{
gchar *text = mode ? NULL : _("Network time synchronization has been set up. Manual time/date setting is disabled.");
gtk_widget_set_tooltip_text (box, text);
}
|