~ubuntu-branches/ubuntu/breezy/gnubik/breezy

« back to all changes in this revision

Viewing changes to src/menutree.h

  • Committer: Bazaar Package Importer
  • Author(s): Florian Ernst
  • Date: 2004-09-21 13:48:26 UTC
  • Revision ID: james.westby@ubuntu.com-20040921134826-p3sk7d3qzsaotn2s
Tags: upstream-2.2
ImportĀ upstreamĀ versionĀ 2.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
    GNUbik -- A 3 dimensional magic cube game.
 
3
    Copyright (C) 1998,2003  John Darrington
 
4
 
 
5
    This program is free software; you can redistribute it and/or modify
 
6
    it under the terms of the GNU General Public License as published by
 
7
    the Free Software Foundation; either version 2 of the License, or
 
8
    (at your option) any later version.
 
9
 
 
10
    This program is distributed in the hope that it will be useful,
 
11
    but WITHOUT ANY WARRANTY; without even the implied warranty of
 
12
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
13
    GNU General Public License for more details.
 
14
 
 
15
    You should have received a copy of the GNU General Public License
 
16
    along with this program; if not, write to the Free Software
 
17
    Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
 
18
*/
 
19
 
 
20
#ifndef MENU_H
 
21
#define MENU_H
 
22
 
 
23
Widget initMenu(Widget w, Widget toplevel);
 
24
 
 
25
/* Increase the number of animations in am move */
 
26
void
 
27
animation_inc(Widget w, XtPointer data, XtPointer callData);
 
28
 
 
29
 
 
30
 
 
31
 
 
32
/* Decrease the number of animations in a move */
 
33
void
 
34
animation_dec(Widget w, XtPointer data, XtPointer callData);
 
35
 
 
36
 
 
37
 
 
38
/* Exit the program */
 
39
void
 
40
quit(Widget w, XtPointer data, XtPointer callData);
 
41
 
 
42
 
 
43
 
 
44
#endif