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
|
#ifndef message_option_h
#define message_option_h
#include "../simmesg.h"
#include "gui_frame.h"
#include "components/action_listener.h"
#include "components/gui_button.h"
#include "components/gui_textarea.h"
#include "components/gui_image.h"
#include "../utils/cbuffer_t.h"
class karte_t;
class message_option_t : public gui_frame_t, private action_listener_t
{
private:
cbuffer_t buf;
gui_textarea_t text_label;
button_t buttons[4*message_t::MAX_MESSAGE_TYPE];
gui_image_t legend;
sint32 ticker_msg, window_msg, auto_msg, ignore_msg;
static karte_t *welt;
public:
message_option_t(karte_t *welt);
/**
* Manche Fenster haben einen Hilfetext assoziiert.
* @return den Dateinamen fr die Hilfe, oder NULL
* @author Hj. Malthaner
*/
const char * get_hilfe_datei() const {return "mailbox.txt";}
bool action_triggered(gui_action_creator_t*, value_t) OVERRIDE;
};
#endif
|