~ubuntu-branches/ubuntu/oneiric/groundhog/oneiric

« back to all changes in this revision

Viewing changes to src/icons.h

  • Committer: Bazaar Package Importer
  • Author(s): Stephen M Moraco
  • Date: 2004-08-20 23:12:32 UTC
  • mfrom: (2.1.1 warty)
  • Revision ID: james.westby@ubuntu.com-20040820231232-18s0op2f9g21ag1z
Tags: 1.4-6
Update Policy Version

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* Groundhog -- a simple logic game
 
2
 * Copyright (C) 1998-2002 Maurits Rijk
 
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 of the License, or
 
7
 * (at your option) 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, USA.
 
17
 */
 
18
 
 
19
#ifndef _ICONS_H
 
20
#define _ICONS_H
 
21
 
 
22
#include <gtk/gtk.h>
 
23
 
 
24
class Icons {
 
25
   GtkIconFactory*      _factory;
 
26
   static GtkIconSize   _size;
 
27
 
 
28
   void Add(const gchar *stock_id, const char **xpm_data);
 
29
public:
 
30
   Icons();
 
31
   void Init();
 
32
   static GtkIconSize Size() {return _size;}
 
33
};
 
34
 
 
35
#define GROUNDHOG_SIZE                  "groundhog-size"
 
36
 
 
37
#define GROUNDHOG_STOCK_ABOUT           "groundhog-about"
 
38
#define GROUNDHOG_STOCK_CHAMPAGNE       "groundhog-champagne"
 
39
#define GROUNDHOG_STOCK_HIGHSCORE       "groundhog-highscore"
 
40
#define GROUNDHOG_STOCK_NEW             "groundhog-new"
 
41
#define GROUNDHOG_STOCK_TUBE_LEFT       "groundhog-tube-left"
 
42
#define GROUNDHOG_STOCK_TUBE_RIGHT      "groundhog-tube-right"
 
43
 
 
44
#define GROUNDHOG_STOCK_LEFT_BLUE       "groundhog-left-blue"
 
45
#define GROUNDHOG_STOCK_LEFT_GREEN      "groundhog-left-green"
 
46
#define GROUNDHOG_STOCK_LEFT_RED        "groundhog-left-red"
 
47
#define GROUNDHOG_STOCK_LEFT_YELLOW     "groundhog-left-yellow"
 
48
#define GROUNDHOG_STOCK_LOWER_BLUE      "groundhog-lower-blue"
 
49
#define GROUNDHOG_STOCK_LOWER_GREEN     "groundhog-lower-green"
 
50
#define GROUNDHOG_STOCK_LOWER_RED       "groundhog-lower-red"
 
51
#define GROUNDHOG_STOCK_LOWER_YELLOW    "groundhog-lower-yellow"
 
52
#define GROUNDHOG_STOCK_RIGHT_BLUE      "groundhog-right-blue"
 
53
#define GROUNDHOG_STOCK_RIGHT_GREEN     "groundhog-right-green"
 
54
#define GROUNDHOG_STOCK_RIGHT_RED       "groundhog-right-red"
 
55
#define GROUNDHOG_STOCK_RIGHT_YELLOW    "groundhog-right-yellow"
 
56
#define GROUNDHOG_STOCK_UPPER_BLUE      "groundhog-upper-blue"
 
57
#define GROUNDHOG_STOCK_UPPER_GREEN     "groundhog-upper-green"
 
58
#define GROUNDHOG_STOCK_UPPER_RED       "groundhog-upper-red"
 
59
#define GROUNDHOG_STOCK_UPPER_YELLOW    "groundhog-upper-yellow"
 
60
 
 
61
#endif // _ICONS_H