forked from aseprite/aseprite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
listitem.cpp
101 lines (82 loc) · 1.87 KB
/
listitem.cpp
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
// Aseprite UI Library
// Copyright (C) 2019-2022 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/listitem.h"
#include "ui/message.h"
#include "ui/size_hint_event.h"
#include "ui/resize_event.h"
#include "ui/theme.h"
#include "ui/view.h"
#include <algorithm>
namespace ui {
using namespace gfx;
ListItem::ListItem(const std::string& text)
: Widget(kListItemWidget)
{
setDoubleBuffered(true);
setAlign(LEFT | MIDDLE);
setText(text);
initTheme();
}
bool ListItem::onProcessMessage(Message* msg)
{
switch (msg->type()) {
case kDoubleClickMessage:
// Propagate the message to the parent.
if (parent())
return parent()->sendMessage(msg);
else
break;
break;
}
return Widget::onProcessMessage(msg);
}
void ListItem::onResize(ResizeEvent& ev)
{
setBoundsQuietly(ev.bounds());
Rect crect = childrenBounds();
for (auto child : children())
child->setBounds(crect);
}
void ListItem::onSizeHint(SizeHintEvent& ev)
{
int w = 0, h = 0;
Size maxSize;
if (hasText()) {
if (m_textLength >= 0) {
maxSize.w = m_textLength;
maxSize.h = textHeight();
}
else {
maxSize = textSize();
m_textLength = maxSize.w;
}
}
else
maxSize.w = maxSize.h = 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);
}
w = maxSize.w + border().width();
h = maxSize.h + border().height();
ev.setSizeHint(Size(w, h));
}
void ListItem::onInitTheme(InitThemeEvent& ev)
{
Widget::onInitTheme(ev);
m_textLength = -1;
}
void ListItem::onSetText()
{
Widget::onSetText();
m_textLength = -1;
}
} // namespace ui