bygfoot/src/treeview2.h

95 lines
2.0 KiB
C
Raw Permalink Normal View History

2005-10-20 17:45:00 +02:00
/*
2005-11-26 17:52:51 +01:00
treeview2.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-08-20 21:39:36 +02:00
#ifndef TREEVIEW2_H
#define TREEVIEW2_H
#include "bygfoot.h"
2005-08-21 21:58:51 +02:00
enum
{
TREEVIEW_MMATCH_COL_REPLAY = 6,
TREEVIEW_MMATCH_COL_REMOVE,
TREEVIEW_MMATCH_COL_EXPORT,
TREEVIEW_MMATCH_COL_END
};
2005-08-20 21:39:36 +02:00
void
treeview2_create_mmatches(GtkListStore *ls);
void
treeview2_set_up_mmatches(GtkTreeView *treeview);
void
treeview2_show_mmatches(void);
2005-10-03 20:08:26 +02:00
void
treeview2_create_season_results(GtkListStore *ls);
void
treeview2_set_up_season_results(GtkTreeView *treeview);
void
treeview2_show_season_results(void);
2005-10-27 23:10:15 +02:00
void
treeview2_create_bets(GtkListStore *ls);
void
treeview2_set_up_bets(GtkTreeView *treeview);
void
treeview2_show_bets(void);
void
treeview2_create_job_exchange(GtkListStore *ls);
void
treeview2_set_up_job_exchange(GtkTreeView *treeview);
void
treeview2_show_job_exchange(void);
void
treeview2_create_news(GtkListStore *ls);
void
treeview2_set_up_news(GtkTreeView *treeview);
void
treeview2_show_news(void);
2009-03-09 21:20:26 +01:00
GtkTreeModel*
2009-03-09 21:56:16 +01:00
treeview2_create_constants(const GPtrArray *list, gint type);
2009-03-09 21:20:26 +01:00
void
2009-03-10 21:58:34 +01:00
treeview2_set_up_constants(GtkTreeView *treeview, gint type);
2009-03-09 21:20:26 +01:00
void
treeview2_show_constants(void);
2005-08-20 21:39:36 +02:00
#endif