]> git.cworth.org Git - grrobot/blob - src/grr_icons.h
Update to 2020
[grrobot] / src / grr_icons.h
1 /* grr_board_view - GTK+ widget for displaying an rr_board
2  *
3  * Copyright © 2003 Carl Worth
4  *
5  * Permission to use, copy, modify, distribute, and sell this software
6  * and its documentation for any purpose is hereby granted without
7  * fee, provided that the above copyright notice appear in all copies
8  * and that both that copyright notice and this permission notice
9  * appear in supporting documentation, and that the name of Carl Worth
10  * not be used in advertising or publicity pertaining to distribution
11  * of the software without specific, written prior permission.
12  * Carl Worth makes no representations about the suitability of this
13  * software for any purpose.  It is provided "as is" without express
14  * or implied warranty.
15  * 
16  * CARL WORTH DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
17  * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN
18  * NO EVENT SHALL CARL WORTH BE LIABLE FOR ANY SPECIAL, INDIRECT OR
19  * CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS
20  * OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT,
21  * NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
22  * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
23  *
24  * Author: Carl Worth <carl@theworths.org>
25  */
26
27 #ifndef GRR_ICONS_H
28 #define GRR_ICONS_H
29
30 extern char *GRR_ROBOT_BLUE_SVG;
31 extern char *GRR_ROBOT_GREEN_SVG;
32 extern char *GRR_ROBOT_RED_SVG;
33 extern char *GRR_ROBOT_YELLOW_SVG;
34
35 extern char *GRR_TARGET_BLUE_CIRCLE_SVG;
36 extern char *GRR_TARGET_GREEN_CIRCLE_SVG;
37 extern char *GRR_TARGET_RED_CIRCLE_SVG;
38 extern char *GRR_TARGET_YELLOW_CIRCLE_SVG;
39
40 extern char *GRR_TARGET_BLUE_OCTAGON_SVG;
41 extern char *GRR_TARGET_GREEN_OCTAGON_SVG;
42 extern char *GRR_TARGET_RED_OCTAGON_SVG;
43 extern char *GRR_TARGET_YELLOW_OCTAGON_SVG;
44
45 extern char *GRR_TARGET_BLUE_SQUARE_SVG;
46 extern char *GRR_TARGET_GREEN_SQUARE_SVG;
47 extern char *GRR_TARGET_RED_SQUARE_SVG;
48 extern char *GRR_TARGET_YELLOW_SQUARE_SVG;
49
50 extern char *GRR_TARGET_BLUE_TRIANGLE_SVG;
51 extern char *GRR_TARGET_GREEN_TRIANGLE_SVG;
52 extern char *GRR_TARGET_RED_TRIANGLE_SVG;
53 extern char *GRR_TARGET_YELLOW_TRIANGLE_SVG;
54
55 extern char *GRR_TARGET_WHIRL_SVG;
56
57 #endif