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
|
#ifndef gui_messagebox_h
#define gui_messagebox_h
#include "gui_frame.h"
#include "components/gui_location_view_t.h"
#include "components/gui_image.h"
#include "components/gui_fixedwidth_textarea.h"
#include "../simskin.h"
#include "../besch/skin_besch.h"
#include "../simcolor.h"
#include "../utils/cbuffer_t.h"
/**
* Eine Klasse fr Nachrichtenfenster.
* @author Hj. Malthaner
*/
class news_window : public gui_frame_t
{
public:
virtual PLAYER_COLOR_VAL get_titelcolor() const { return color; }
// Knightly : to extend the window with an extra component in the upper right corner
void extend_window_with_component(gui_komponente_t *const component, const koord size, const koord offset = koord(0,0));
protected:
news_window(const char* text, PLAYER_COLOR_VAL color);
private:
cbuffer_t buf;
gui_fixedwidth_textarea_t textarea;
PLAYER_COLOR_VAL color;
};
/* Shows a news window with an image */
class news_img : public news_window
{
public:
news_img(const char* text, image_id bild = skinverwaltung_t::meldungsymbol->get_bild_nr(0), PLAYER_COLOR_VAL color = WIN_TITEL);
private:
gui_image_t bild;
};
/* Shows a news window with a view on some location */
class news_loc : public news_window
{
public:
news_loc(karte_t* welt, const char* text, koord k, PLAYER_COLOR_VAL color = WIN_TITEL);
void map_rotate90( sint16 new_ysize );
virtual koord3d get_weltpos();
private:
location_view_t view;
};
#endif
|