aseprite/src/ui/separator.cpp
2015-12-03 21:50:05 -03:00

59 lines
1.1 KiB
C++

// Aseprite UI Library
// Copyright (C) 2001-2013, 2015 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"
namespace ui {
using namespace gfx;
Separator::Separator(const std::string& text, int align)
: Widget(kSeparatorWidget)
{
setAlign(align);
if (!text.empty())
setText(text);
initTheme();
}
void Separator::onPaint(PaintEvent& ev)
{
getTheme()->paintSeparator(ev);
}
void Separator::onSizeHint(SizeHintEvent& ev)
{
Size maxSize(0, 0);
for (auto child : children()) {
Size reqSize = child->sizeHint();
maxSize.w = MAX(maxSize.w, reqSize.w);
maxSize.h = MAX(maxSize.h, reqSize.h);
}
if (hasText()) {
maxSize.w = MAX(maxSize.w, getTextWidth());
maxSize.h = MAX(maxSize.h, getTextHeight());
}
int w = maxSize.w + border().width();
int h = maxSize.h + border().height();
ev.setSizeHint(Size(w, h));
}
} // namespace ui