forked from aseprite/aseprite
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlabel.h
More file actions
49 lines (38 loc) · 1008 Bytes
/
Copy pathlabel.h
File metadata and controls
49 lines (38 loc) · 1008 Bytes
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
// Aseprite UI Library
// Copyright (C) 2001-2017 David Capello
//
// This file is released under the terms of the MIT license.
// Read LICENSE.txt for more information.
#ifndef UI_LABEL_H_INCLUDED
#define UI_LABEL_H_INCLUDED
#pragma once
#include "gfx/color.h"
#include "ui/widget.h"
namespace ui {
class Label : public Widget {
public:
Label(const std::string& text);
Widget* buddy();
void setBuddy(Widget* buddy);
void setBuddy(const std::string& buddyId);
// Keeps the label's enabled state synchronized with the buddy
void setBuddySyncEnabled(bool sync)
{
if (m_buddySync != sync) {
m_buddySync = sync;
refreshBuddySync();
}
}
bool buddySyncEnabled() const { return m_buddySync; }
protected:
bool onProcessMessage(Message* msg) override;
void onEnable(bool enabled) override;
private:
void refreshBuddySync();
Widget* m_buddy;
bool m_buddySync;
std::string m_buddyId;
obs::scoped_connection m_buddyEnabledConn;
};
} // namespace ui
#endif