/* * xlog - GTK+ logging program for amateur radio operators * Copyright (C) 2001-2002 Joop Stakenborg * * This program is free oftware; 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 2 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 Library General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ /* * callbacks_preferencesdialog.h */ /* preferences dialog */ void on_preferencesokbutton_clicked (GtkButton * button, gpointer user_data); void on_preferencescancelbutton_clicked (GtkButton * button, gpointer user_data); gboolean on_preferencesdialog_delete_event (GtkWidget * widget, GdkEvent * event, gpointer user_data); void on_bandsradiobutton_toggled (GtkToggleButton * togglebutton, gpointer user_data); void on_modesradiobutton_toggled (GtkToggleButton * togglebutton, gpointer user_data); void on_hamlibcheckbutton_toggled (GtkToggleButton * togglebutton, gpointer user_data); void on_themebutton_clicked (GtkButton * button, gpointer user_data); void on_pathbutton_clicked (GtkButton * button, gpointer user_data); void on_fontbutton_clicked (GtkButton * button, gpointer user_data); /* color selection dialog */ void on_colorokbutton_clicked (GtkButton * button, gpointer user_data); void on_colorcancelbutton_clicked (GtkButton * button, gpointer user_data); gboolean on_colorselectiondialog_delete_event (GtkWidget * widget, GdkEvent * event, gpointer user_data); /* path selection dialog */ gboolean on_pathselection_delete_event (GtkWidget * widget, GdkEvent * event, gpointer user_data); void on_pathselection_ok_button_clicked (GtkButton * button, gpointer user_data); void on_pathselection_cancel_button_clicked (GtkButton * button, gpointer user_data); /* font selection dialog */ void on_fontokbutton_clicked (GtkButton * button, gpointer user_data); gboolean on_fontselectiondialog_delete_event (GtkWidget * widget, GdkEvent * event, gpointer user_data); void on_fontcancelbutton_clicked (GtkButton * button, gpointer user_data);