]> git.draconx.ca Git - rrace.git/blob - src/motif.h
Reduce the amount of redundant drawing in the goal area.
[rrace.git] / src / motif.h
1 /*
2  * X11 GUI for slide puzzle game
3  * Copyright © 2022 Nick Bowler
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 3 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, see <https://www.gnu.org/licenses/>.
17  */
18
19 #ifndef RRACE_MOTIF_H_
20 #define RRACE_MOTIF_H_
21
22 #include <inttypes.h>
23 #include "ewmhicon.h"
24 #include "game.h"
25
26 struct app_state {
27         struct board board;
28
29         Widget game, goal;
30
31         /* Whether to set _NET_WM_ICON property on WMShell */
32         int use_ewmh_icons;
33
34         GC tile_gc;
35         Pixmap icon_pixmap;
36         uint_least32_t tile_colour[TILE_MAX-1][3];
37 };
38
39 void ui_initialize(struct app_state *state, Widget shell);
40 void x11_initialize(struct app_state *state, Screen *screen);
41 void x11_redraw_icon(struct app_state *state, Widget shell);
42 void x11_redraw_goal(struct app_state *state, uint_fast32_t mask);
43 void x11_redraw_game(struct app_state *state, uint_fast32_t mask);
44
45 #endif