/* 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 int ErrorMessage (const char *Title, const char *Msg) { int nRet; GtkWidget *dialog; dialog = gtk_message_dialog_new (NULL, GTK_DIALOG_MODAL, GTK_MESSAGE_ERROR, GTK_BUTTONS_OK, "%s", Title); 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 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); }