/* 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 .
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include "time-share.h"
#include
/******************************************************************************
* 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(GTK_WINDOW(WindowLogin),
GTK_DIALOG_DESTROY_WITH_PARENT,
GTK_MESSAGE_ERROR,
GTK_BUTTONS_OK,
"%s",Title);
break;
}
case WARING:
{
dialog = gtk_message_dialog_new(GTK_WINDOW(WindowLogin),
GTK_DIALOG_DESTROY_WITH_PARENT,
GTK_MESSAGE_WARNING,
GTK_BUTTONS_OK,
"%s",Title);
break;
}
case INFOR:
{
dialog = gtk_message_dialog_new(GTK_WINDOW(WindowLogin),
GTK_DIALOG_DESTROY_WITH_PARENT,
GTK_MESSAGE_INFO,
GTK_BUTTONS_OK,
"%s",Title);
break;
}
case QUESTION:
{
dialog = gtk_message_dialog_new(GTK_WINDOW(WindowLogin),
GTK_DIALOG_DESTROY_WITH_PARENT,
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(GTK_WINDOW(WindowLogin),
GTK_DIALOG_DESTROY_WITH_PARENT,
GTK_MESSAGE_QUESTION,
GTK_BUTTONS_YES_NO,
"%s",Title);
break;
}
default :
break;
}
gtk_message_dialog_format_secondary_markup(GTK_MESSAGE_DIALOG(dialog),
TYPEMSG,
Msg);
gtk_window_set_title(GTK_WINDOW(dialog),("Message"));
nRet = gtk_dialog_run(GTK_DIALOG(dialog));
gtk_widget_destroy(dialog);
return nRet;
}
void SetLableFontType(GtkWidget *Lable,int FontSzie,const char *Word)
{
char LableTypeBuf[200] = { 0 };
sprintf(LableTypeBuf,
"%s",
FontSzie,Word);
gtk_label_set_markup(GTK_LABEL(Lable),LableTypeBuf);
}
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)
{
if(!mode)
{
gtk_widget_set_tooltip_markup(box,
_("Network time synchronization has been set up. Manual time/date setting is disabled."));
}
else
{
gtk_widget_set_tooltip_markup(box,NULL);
}
}