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
|
/*
* File: tilereg_menu.h
* Created by: ennewalker on Sat Jan 5 01:33:53 2008 UTC
*/
#ifdef USE_TILE
#ifndef TILEREG_MENU_H
#define TILEREG_MENU_H
#include "format.h"
#include "tilereg.h"
#include "fixedvector.h"
#include <vector>
class MenuEntry;
class MenuRegion : public Region
{
public:
MenuRegion(ImageManager *im, FontWrapper *entry);
virtual int handle_mouse(MouseEvent &event);
virtual void render();
virtual void clear();
int maxpagesize() const;
void set_entry(int index, const std::string &s, int colour, const MenuEntry *me);
void set_offset(int lines);
void set_more(const formatted_string &more);
void set_num_columns(int columns);
protected:
virtual void on_resize();
virtual void place_entries();
int mouse_entry(int x, int y);
struct MenuRegionEntry
{
formatted_string text;
int sx, ex, sy, ey;
bool selected;
bool heading;
char key;
bool valid;
std::vector<tile_def> tiles;
};
ImageManager *m_image;
FontWrapper *m_font_entry;
formatted_string m_more;
int m_mouse_idx;
int m_max_columns;
bool m_dirty;
std::vector<MenuRegionEntry> m_entries;
// TODO enne - remove this?
ShapeBuffer m_shape_buf;
LineBuffer m_line_buf;
FontBuffer m_font_buf;
FixedVector<TileBuffer, TEX_MAX> m_tile_buf;
};
#endif
#endif
|