1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66
|
/**********************************************************************
Freeciv - Copyright (C) 2002 - The Freeciv Poject
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2, or (at your option)
any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
***********************************************************************/
#ifndef FC__MAPCTRL_COMMON_H
#define FC__MAPCTRL_COMMON_H
#include "map.h" /* enum direction8 */
#include "shared.h" /* bool type */
#include "control.h" /* quickselect_type */
extern bool rbutton_down;
extern bool rectangle_active;
extern bool tiles_hilited_cities;
extern bool keyboardless_goto_button_down;
extern bool keyboardless_goto_active;
extern struct tile *keyboardless_goto_start_tile;
void anchor_selection_rectangle(int canvas_x, int canvas_y, bool append);
void update_selection_rectangle(int canvas_x, int canvas_y);
void redraw_selection_rectangle(void);
void cancel_selection_rectangle(void);
bool is_city_hilited(struct city *pcity);
void cancel_tile_hiliting(void);
void toggle_tile_hilite(struct tile *ptile);
void key_city_overlay(int canvas_x, int canvas_y);
void clipboard_copy_production(struct tile *ptile);
void clipboard_paste_production(struct city *pcity);
void upgrade_canvas_clipboard(void);
void release_right_button(int canvas_x, int canvas_y);
void release_goto_button(int canvas_x, int canvas_y);
void maybe_activate_keyboardless_goto(int canvas_x, int canvas_y);
bool get_turn_done_button_state(void);
void scroll_mapview(enum direction8 gui_dir);
void action_button_pressed(int canvas_x, int canvas_y,
enum quickselect_type qtype);
void wakeup_button_pressed(int canvas_x, int canvas_y);
void adjust_workers_button_pressed(int canvas_x, int canvas_y);
void recenter_button_pressed(int canvas_x, int canvas_y);
void update_turn_done_button_state(void);
void update_line(int canvas_x, int canvas_y);
void overview_update_line(int overview_x, int overview_y);
void fill_tile_unit_list(const struct tile *ptile, struct unit **unit_list);
extern struct city *city_workers_display;
#endif /* FC__MAPCTRL_COMMON_H */
|