mirror of
https://github.com/aseprite/aseprite.git
synced 2024-12-29 09:23:32 +00:00
Add LinkLabel::get/setUrl().
This commit is contained in:
parent
4e2c4f530d
commit
c7cf74228b
@ -25,6 +25,11 @@ LinkLabel::LinkLabel(const char* url, const char* text)
|
|||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void LinkLabel::setUrl(const char* url)
|
||||||
|
{
|
||||||
|
m_url = url;
|
||||||
|
}
|
||||||
|
|
||||||
bool LinkLabel::onProcessMessage(Message* msg)
|
bool LinkLabel::onProcessMessage(Message* msg)
|
||||||
{
|
{
|
||||||
switch (msg->type) {
|
switch (msg->type) {
|
||||||
|
@ -15,18 +15,20 @@
|
|||||||
|
|
||||||
class LinkLabel : public CustomLabel
|
class LinkLabel : public CustomLabel
|
||||||
{
|
{
|
||||||
std::string m_url;
|
|
||||||
|
|
||||||
public:
|
public:
|
||||||
LinkLabel(const char* urlOrText);
|
LinkLabel(const char* urlOrText);
|
||||||
LinkLabel(const char* url, const char* text);
|
LinkLabel(const char* url, const char* text);
|
||||||
|
|
||||||
|
const char* getUrl() const { return m_url.c_str(); }
|
||||||
|
void setUrl(const char* url);
|
||||||
|
|
||||||
Signal0<void> Click;
|
Signal0<void> Click;
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
bool onProcessMessage(Message* msg) OVERRIDE;
|
bool onProcessMessage(Message* msg) OVERRIDE;
|
||||||
void onPaint(PaintEvent& ev) OVERRIDE;
|
void onPaint(PaintEvent& ev) OVERRIDE;
|
||||||
|
|
||||||
|
std::string m_url;
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
Reference in New Issue
Block a user