~ubuntu-branches/ubuntu/intrepid/gnome-games/intrepid-updates

« back to all changes in this revision

Viewing changes to freecell/src/io-gtk.h

  • Committer: Package Import Robot
  • Author(s): Jose Carlos Garcia Sogo
  • Date: 2002-02-15 20:12:21 UTC
  • Revision ID: package-import@ubuntu.com-20020215201221-pntf81dxhsatz4qy
Tags: upstream-1.4.0.3
ImportĀ upstreamĀ versionĀ 1.4.0.3

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* io-gtk.h --
 
2
   Copyright (C) 1998 Free Software Foundation, Inc.
 
3
 
 
4
   This program is free software; you can redistribute it and'or modify
 
5
   it under the terms of the GNU General Public License as published by
 
6
   the Free Software Foundation; either version 2, or (at your option)
 
7
   any later version.
 
8
 
 
9
   This program is distributed in the hope that it will be useful,
 
10
   but WITHOUT ANY WARRANTY; without even the implied warranty of
 
11
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
12
   GNU General Public License for more details.
 
13
 
 
14
   You should have received a copy of the GNU General Public License
 
15
   along with this program; if not, write to the Free Software
 
16
   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307
 
17
   USA */
 
18
 
 
19
/* Written by Changwoo Ryu <cwryu@adam.kaist.ac.kr>. */
 
20
 
 
21
#ifndef __FREECELL_IO_GTK_H
 
22
#define __FREECELL_IO_GTK_H
 
23
 
 
24
#include <gtk/gtk.h>
 
25
 
 
26
#include "card.h"
 
27
#include "game.h"
 
28
 
 
29
/* IO interface.  */
 
30
 
 
31
extern GtkWidget *main_window;
 
32
 
 
33
void io_gtk_init (void);
 
34
void io_gtk_loop (void);
 
35
 
 
36
void callback_restart (GtkWidget *widget, GdkEvent *event);
 
37
void callback_new (GtkWidget *widget, GdkEvent *event);
 
38
void callback_new_with_seed (GtkWidget *widget, GdkEvent *event);
 
39
void callback_score (GtkWidget *widget, GdkEvent *event);
 
40
void callback_undo (GtkWidget *widget, GdkEvent *event);
 
41
void callback_option (GtkWidget *widget, GdkEvent *event);
 
42
void callback_exit (GtkWidget *widget, GdkEvent *event);
 
43
void callback_rule (GtkWidget *widget, GdkEvent *event);
 
44
void callback_about (GtkWidget *widget, GdkEvent *event);
 
45
 
 
46
#endif /* __FREECELL_IO_GTK_H */
 
47
 
 
48
 
 
49
 
 
50
 
 
51
 
 
52