41 lines
996 B
C++
41 lines
996 B
C++
/*
|
|
* message.h
|
|
* BoE
|
|
*
|
|
* Created by Celtic Minstrel on 11/05/09.
|
|
*
|
|
*/
|
|
|
|
#ifndef MESSAGE_H
|
|
#define MESSAGE_H
|
|
|
|
#include <SFML/Graphics.hpp>
|
|
|
|
#include <string>
|
|
#include "control.h"
|
|
#include "graphtool.h" // for eFont
|
|
|
|
class cTextMsg : public cControl {
|
|
public:
|
|
void attachClickHandler(click_callback_t f) throw();
|
|
void attachFocusHandler(focus_callback_t f) throw(xHandlerNotSupported);
|
|
bool triggerClickHandler(cDialog& me, std::string id, eKeyMod mods, location where);
|
|
void setFormat(eFormat prop, short val) throw(xUnsupportedProp);
|
|
short getFormat(eFormat prop) throw(xUnsupportedProp);
|
|
void setColour(sf::Color clr) throw(xUnsupportedProp);
|
|
sf::Color getColour() throw(xUnsupportedProp);
|
|
explicit cTextMsg(cDialog& parent);
|
|
explicit cTextMsg(sf::RenderWindow& parent);
|
|
bool isClickable();
|
|
virtual ~cTextMsg();
|
|
void draw();
|
|
private:
|
|
bool drawFramed, clickable;
|
|
short textSize;
|
|
eFont textFont;
|
|
sf::Color color;
|
|
std::string fromList;
|
|
click_callback_t onClick;
|
|
};
|
|
#endif
|