2005-10-20 17:45:00 +02:00
|
|
|
/*
|
2005-11-26 17:52:51 +01:00
|
|
|
callback_func.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.
|
|
|
|
*/
|
|
|
|
|
2005-03-03 13:46:48 +01:00
|
|
|
#ifndef CALLBACK_FUNC_H
|
|
|
|
#define CALLBACK_FUNC_H
|
|
|
|
|
|
|
|
#include "bygfoot.h"
|
2005-08-20 21:39:36 +02:00
|
|
|
#include "live_game_struct.h"
|
2005-03-03 13:46:48 +01:00
|
|
|
|
|
|
|
void
|
2020-12-28 06:09:02 +01:00
|
|
|
callback_show_next_live_game(Bygfoot *bygfoot);
|
2005-03-03 13:46:48 +01:00
|
|
|
|
|
|
|
void
|
|
|
|
callback_player_clicked(gint idx, GdkEventButton *event);
|
|
|
|
|
2007-02-11 12:52:01 +01:00
|
|
|
void
|
|
|
|
callback_player_activate(gint idx);
|
|
|
|
|
2005-03-11 18:18:51 +01:00
|
|
|
void
|
2020-12-28 06:09:02 +01:00
|
|
|
callback_show_last_match(gboolean start, LiveGame *lg, Bygfoot *bygfoot);
|
2005-03-11 18:18:51 +01:00
|
|
|
|
2005-03-14 18:47:27 +01:00
|
|
|
void
|
|
|
|
callback_show_fixtures(gint type);
|
|
|
|
|
2005-03-15 16:10:57 +01:00
|
|
|
void
|
|
|
|
callback_show_tables(gint type);
|
|
|
|
|
2005-03-17 21:26:01 +01:00
|
|
|
void
|
|
|
|
callback_pay_loan(void);
|
|
|
|
|
|
|
|
void
|
|
|
|
callback_get_loan(void);
|
|
|
|
|
2005-03-19 21:04:08 +01:00
|
|
|
void
|
2005-05-27 20:48:36 +02:00
|
|
|
callback_transfer_list_clicked(gint button, gint idx);
|
2005-03-19 21:04:08 +01:00
|
|
|
|
2005-03-25 11:54:54 +01:00
|
|
|
void
|
|
|
|
callback_offer_new_contract(gint idx);
|
|
|
|
|
2005-03-25 21:18:35 +01:00
|
|
|
void
|
|
|
|
callback_show_team(gint type);
|
|
|
|
|
2005-03-27 19:59:57 +02:00
|
|
|
void
|
|
|
|
callback_show_player_list(gint type);
|
|
|
|
|
|
|
|
void
|
|
|
|
callback_fire_player(gint idx);
|
|
|
|
|
2005-04-09 21:18:28 +02:00
|
|
|
void
|
|
|
|
callback_show_last_match_stats(void);
|
|
|
|
|
2005-04-15 15:55:59 +02:00
|
|
|
void
|
|
|
|
callback_show_fixtures_week(gint type);
|
|
|
|
|
2005-04-29 21:48:02 +02:00
|
|
|
void
|
|
|
|
callback_show_league_stats(gint type);
|
|
|
|
|
2005-05-02 16:39:30 +02:00
|
|
|
void
|
|
|
|
callback_show_season_history(gint type);
|
|
|
|
|
2005-05-19 18:45:29 +02:00
|
|
|
void
|
|
|
|
callback_show_next_opponent(void);
|
|
|
|
|
|
|
|
void
|
|
|
|
callback_show_player_team(void);
|
|
|
|
|
2005-07-08 11:26:00 +02:00
|
|
|
void
|
|
|
|
callback_show_youth_academy(void);
|
|
|
|
|
2005-03-03 13:46:48 +01:00
|
|
|
#endif
|