2005-10-20 17:45:00 +02:00
|
|
|
/*
|
2005-11-26 17:52:51 +01:00
|
|
|
options_callbacks.h
|
|
|
|
|
2005-10-20 17:45:00 +02:00
|
|
|
Bygfoot Football Manager -- a small and simple GTK2-based
|
|
|
|
football management game.
|
|
|
|
|
|
|
|
http://bygfoot.sourceforge.net
|
|
|
|
|
|
|
|
Copyright (C) 2005 Gyözö Both (gyboth@bygfoot.com)
|
|
|
|
|
|
|
|
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 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 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
*/
|
|
|
|
|
2004-12-23 13:58:39 +01:00
|
|
|
#include <gtk/gtk.h>
|
|
|
|
|
2005-07-14 18:05:10 +02:00
|
|
|
#ifndef OPTIONS_CALLBACKS_H
|
|
|
|
#define OPTIONS_CALLBACKS_H
|
|
|
|
|
2004-12-23 13:58:39 +01:00
|
|
|
void
|
2005-03-23 20:03:26 +01:00
|
|
|
on_button_options_ok_clicked (GtkButton *button,
|
2004-12-23 13:58:39 +01:00
|
|
|
gpointer user_data);
|
|
|
|
|
|
|
|
void
|
2005-03-23 20:03:26 +01:00
|
|
|
on_button_options_cancel_clicked (GtkButton *button,
|
2004-12-23 13:58:39 +01:00
|
|
|
gpointer user_data);
|
2005-03-24 14:00:01 +01:00
|
|
|
|
|
|
|
void
|
|
|
|
on_button_font_name_clicked (GtkButton *button,
|
|
|
|
gpointer user_data);
|
2005-03-27 19:59:57 +02:00
|
|
|
|
|
|
|
void
|
|
|
|
on_button_reload_constants_clicked (GtkButton *button,
|
|
|
|
gpointer user_data);
|
2005-04-13 15:01:59 +02:00
|
|
|
|
|
|
|
gboolean
|
|
|
|
on_checkbutton_save_global_button_press_event
|
|
|
|
(GtkWidget *widget,
|
|
|
|
GdkEventButton *event,
|
|
|
|
gpointer user_data);
|
|
|
|
|
|
|
|
gboolean
|
|
|
|
on_checkbutton_save_user_button_press_event
|
|
|
|
(GtkWidget *widget,
|
|
|
|
GdkEventButton *event,
|
|
|
|
gpointer user_data);
|
2005-07-14 18:05:10 +02:00
|
|
|
|
|
|
|
gboolean
|
|
|
|
on_window_options_delete_event (GtkWidget *widget,
|
|
|
|
GdkEvent *event,
|
|
|
|
gpointer user_data);
|
2008-05-03 17:03:30 +02:00
|
|
|
void
|
|
|
|
on_spinbutton_recreation_value_changed (GtkSpinButton *spinbutton,
|
|
|
|
gpointer user_data);
|
2009-03-09 21:20:26 +01:00
|
|
|
|
|
|
|
void
|
|
|
|
on_button_edit_constants_clicked (GtkButton *button,
|
|
|
|
gpointer user_data);
|
|
|
|
|
|
|
|
gboolean
|
|
|
|
on_window_constants_destroy_event (GtkWidget *widget,
|
|
|
|
GdkEvent *event,
|
|
|
|
gpointer user_data);
|
|
|
|
|
|
|
|
gboolean
|
|
|
|
on_window_constants_delete_event (GtkWidget *widget,
|
|
|
|
GdkEvent *event,
|
|
|
|
gpointer user_data);
|
|
|
|
|
|
|
|
void
|
|
|
|
on_button_constants_reload_clicked (GtkButton *button,
|
|
|
|
gpointer user_data);
|
|
|
|
|
|
|
|
void
|
|
|
|
on_button_constants_close_clicked (GtkButton *button,
|
|
|
|
gpointer user_data);
|
|
|
|
|
2009-03-11 21:54:15 +01:00
|
|
|
|
|
|
|
void
|
|
|
|
on_button_constants_save_clicked (GtkButton *button,
|
|
|
|
gpointer user_data);
|
|
|
|
#endif
|