aseprite/src/ui/separator.cpp
David Capello 1aaeacc460 Refactor several "getNoun()" getters to "noun()"
This is a work-in-progress to create a consistent API and finally
separate the whole Aseprite base/gfx/ui libs into a reusable C++ library.

Classes:
app::IFileItem, app::AppMenuItem, app::skin::SkinPart,
gfx::Rect, gfx::Border, she::FileDialog,
ui::IButtonIcon, ui::Graphics, ui::Overlay, ui::Widget,
ui::ScrollableViewDelegate, and UI events
2015-12-04 14:39:04 -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)
{
theme()->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, textWidth());
maxSize.h = MAX(maxSize.h, textHeight());
}
int w = maxSize.w + border().width();
int h = maxSize.h + border().height();
ev.setSizeHint(Size(w, h));
}
} // namespace ui