2005-10-20 15:45:00 +00:00
|
|
|
/*
|
2005-11-26 16:52:51 +00:00
|
|
|
gui.h
|
|
|
|
|
2005-10-20 15:45:00 +00: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 12:58:39 +00:00
|
|
|
#ifndef GUI_H
|
|
|
|
#define GUI_H
|
|
|
|
|
|
|
|
#include "bygfoot.h"
|
|
|
|
|
2005-11-02 21:04:19 +00:00
|
|
|
/** What kind of pictures we on top of the progress bar. */
|
|
|
|
enum PicType
|
|
|
|
{
|
|
|
|
PIC_TYPE_NONE = 0,
|
|
|
|
PIC_TYPE_SAVE,
|
|
|
|
PIC_TYPE_LOAD,
|
|
|
|
PIC_TYPE_MATCHPIC
|
|
|
|
};
|
|
|
|
|
2005-03-03 12:46:48 +00:00
|
|
|
void
|
|
|
|
gui_label_set_text_from_int(GtkLabel *label, gint number, gboolean append);
|
|
|
|
|
2005-03-10 20:59:39 +00:00
|
|
|
void
|
2005-11-02 21:04:19 +00:00
|
|
|
gui_show_progress(gfloat value, const gchar *text, gint pictype);
|
2005-03-10 20:59:39 +00:00
|
|
|
|
2005-04-10 12:32:44 +00:00
|
|
|
void
|
|
|
|
gui_set_arrow_pair(gint pair, gboolean state);
|
|
|
|
|
|
|
|
void
|
|
|
|
gui_set_arrows(void);
|
|
|
|
|
2005-09-29 09:03:43 +00:00
|
|
|
void
|
|
|
|
gui_set_sensitive_lg_meters(gboolean state);
|
|
|
|
|
2004-12-23 12:58:39 +00:00
|
|
|
#endif
|