forked from aseprite/aseprite
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathseparator.cpp
More file actions
66 lines (51 loc) · 1.47 KB
/
separator.cpp
File metadata and controls
66 lines (51 loc) · 1.47 KB
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
61
62
63
64
65
66
// Aseprite UI Library
// Copyright (C) 2018-2025 Igara Studio S.A.
// Copyright (C) 2001-2017 David Capello
//
// This file is released under the terms of the MIT license.
// Read LICENSE.txt for more information.
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include "ui/separator.h"
#include "gfx/size.h"
#include "ui/message.h"
#include "ui/size_hint_event.h"
#include "ui/theme.h"
#include <algorithm>
namespace ui {
using namespace gfx;
Separator::Separator(const std::string& text, int align) : Widget(kSeparatorWidget)
{
enableFlags(IGNORE_MOUSE);
setAlign(align);
if (!text.empty())
setText(text);
initTheme();
}
void Separator::onSizeHint(SizeHintEvent& ev)
{
Size maxSize(0, 0);
for (auto child : children()) {
Size reqSize = child->sizeHint();
maxSize.w = std::max(maxSize.w, reqSize.w);
maxSize.h = std::max(maxSize.h, reqSize.h);
}
if (hasText()) {
maxSize.w = std::max(maxSize.w, textWidth());
maxSize.h = std::max(maxSize.h, textHeight());
}
gfx::Border border = this->border();
gfx::Border styleBorder;
if (style()) {
styleBorder = style()->margin() + style()->border() + style()->padding();
if (hasText()) {
styleBorder.left(2 * styleBorder.left());
styleBorder.right(2 * styleBorder.right());
}
}
int w = maxSize.w + std::max(border.width(), styleBorder.width());
int h = maxSize.h + std::max(border.height(), styleBorder.height());
ev.setSizeHint(Size(w, h));
}
} // namespace ui