2020-01-18 11:38:21 +03:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions are met:
|
|
|
|
*
|
|
|
|
* 1. Redistributions of source code must retain the above copyright notice, this
|
|
|
|
* list of conditions and the following disclaimer.
|
|
|
|
*
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright notice,
|
|
|
|
* this list of conditions and the following disclaimer in the documentation
|
|
|
|
* and/or other materials provided with the distribution.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
|
|
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
|
|
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
|
|
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
|
|
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
|
|
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
|
|
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
2020-02-06 14:04:00 +03:00
|
|
|
#include <LibGfx/Palette.h>
|
2020-02-06 22:33:02 +03:00
|
|
|
#include <LibGUI/Action.h>
|
|
|
|
#include <LibGUI/ActionGroup.h>
|
|
|
|
#include <LibGUI/BoxLayout.h>
|
|
|
|
#include <LibGUI/Button.h>
|
|
|
|
#include <LibGUI/Painter.h>
|
|
|
|
#include <LibGUI/ToolBar.h>
|
2019-02-20 04:39:46 +03:00
|
|
|
|
2020-02-02 17:07:41 +03:00
|
|
|
namespace GUI {
|
|
|
|
|
2020-02-23 14:07:13 +03:00
|
|
|
ToolBar::ToolBar(Orientation orientation, int button_size)
|
|
|
|
: m_button_size(button_size)
|
2019-02-20 04:39:46 +03:00
|
|
|
{
|
2019-11-08 23:09:34 +03:00
|
|
|
if (orientation == Orientation::Horizontal) {
|
|
|
|
set_size_policy(SizePolicy::Fill, SizePolicy::Fixed);
|
2020-04-23 18:44:49 +03:00
|
|
|
set_preferred_size(0, button_size + 8);
|
2019-11-08 23:09:34 +03:00
|
|
|
} else {
|
|
|
|
set_size_policy(SizePolicy::Fixed, SizePolicy::Fill);
|
2020-04-23 18:44:49 +03:00
|
|
|
set_preferred_size(button_size + 8, 0);
|
2019-11-08 23:09:34 +03:00
|
|
|
}
|
2020-03-05 11:21:46 +03:00
|
|
|
set_layout<BoxLayout>(orientation);
|
2019-02-20 13:56:28 +03:00
|
|
|
layout()->set_spacing(0);
|
2019-03-27 22:48:23 +03:00
|
|
|
layout()->set_margins({ 2, 2, 2, 2 });
|
2019-02-20 04:39:46 +03:00
|
|
|
}
|
|
|
|
|
2020-02-02 17:07:41 +03:00
|
|
|
ToolBar::~ToolBar()
|
2019-02-20 04:39:46 +03:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2020-02-02 17:07:41 +03:00
|
|
|
void ToolBar::add_action(Action& action)
|
2019-02-20 04:39:46 +03:00
|
|
|
{
|
|
|
|
auto item = make<Item>();
|
2020-02-02 17:07:41 +03:00
|
|
|
item->type = Item::Type::Action;
|
2019-07-11 16:55:54 +03:00
|
|
|
item->action = action;
|
2019-02-20 04:39:46 +03:00
|
|
|
|
2020-03-04 21:07:55 +03:00
|
|
|
auto& button = add<Button>();
|
2019-11-11 00:49:02 +03:00
|
|
|
if (action.group() && action.group()->is_exclusive())
|
2020-03-04 21:07:55 +03:00
|
|
|
button.set_exclusive(true);
|
|
|
|
button.set_action(*item->action);
|
|
|
|
button.set_tooltip(item->action->text());
|
2019-02-20 04:39:46 +03:00
|
|
|
if (item->action->icon())
|
2020-03-04 21:07:55 +03:00
|
|
|
button.set_icon(item->action->icon());
|
2019-02-20 04:39:46 +03:00
|
|
|
else
|
2020-03-04 21:07:55 +03:00
|
|
|
button.set_text(item->action->text());
|
2019-02-20 04:39:46 +03:00
|
|
|
|
2020-03-04 21:07:55 +03:00
|
|
|
button.set_button_style(Gfx::ButtonStyle::CoolBar);
|
|
|
|
button.set_size_policy(SizePolicy::Fixed, SizePolicy::Fixed);
|
|
|
|
ASSERT(button.size_policy(Orientation::Horizontal) == SizePolicy::Fixed);
|
|
|
|
ASSERT(button.size_policy(Orientation::Vertical) == SizePolicy::Fixed);
|
|
|
|
button.set_preferred_size(m_button_size + 8, m_button_size + 8);
|
2019-02-20 04:39:46 +03:00
|
|
|
|
|
|
|
m_items.append(move(item));
|
|
|
|
}
|
|
|
|
|
2020-02-02 17:07:41 +03:00
|
|
|
class SeparatorWidget final : public Widget {
|
2019-07-25 20:49:28 +03:00
|
|
|
C_OBJECT(SeparatorWidget)
|
2019-03-08 01:01:36 +03:00
|
|
|
public:
|
2020-02-23 14:07:13 +03:00
|
|
|
SeparatorWidget()
|
2019-03-08 01:01:36 +03:00
|
|
|
{
|
|
|
|
set_size_policy(SizePolicy::Fixed, SizePolicy::Fixed);
|
2020-04-23 15:09:05 +03:00
|
|
|
set_preferred_size(8, 18);
|
2019-03-08 01:01:36 +03:00
|
|
|
}
|
2019-06-07 12:46:02 +03:00
|
|
|
virtual ~SeparatorWidget() override {}
|
2019-03-08 01:01:36 +03:00
|
|
|
|
2020-02-02 17:07:41 +03:00
|
|
|
virtual void paint_event(PaintEvent& event) override
|
2019-03-08 01:01:36 +03:00
|
|
|
{
|
2020-02-02 17:07:41 +03:00
|
|
|
Painter painter(*this);
|
2019-03-29 17:01:54 +03:00
|
|
|
painter.add_clip_rect(event.rect());
|
2019-03-08 01:01:36 +03:00
|
|
|
painter.translate(rect().center().x() - 1, 0);
|
2019-12-24 22:57:54 +03:00
|
|
|
painter.draw_line({ 0, 0 }, { 0, rect().bottom() }, palette().threed_shadow1());
|
|
|
|
painter.draw_line({ 1, 0 }, { 1, rect().bottom() }, palette().threed_highlight());
|
2019-03-08 01:01:36 +03:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2020-02-02 17:07:41 +03:00
|
|
|
void ToolBar::add_separator()
|
2019-02-20 04:39:46 +03:00
|
|
|
{
|
|
|
|
auto item = make<Item>();
|
2020-02-02 17:07:41 +03:00
|
|
|
item->type = Item::Type::Separator;
|
2020-02-23 14:07:13 +03:00
|
|
|
add<SeparatorWidget>();
|
2019-02-20 04:39:46 +03:00
|
|
|
m_items.append(move(item));
|
|
|
|
}
|
|
|
|
|
2020-02-02 17:07:41 +03:00
|
|
|
void ToolBar::paint_event(PaintEvent& event)
|
2019-02-20 04:39:46 +03:00
|
|
|
{
|
2020-02-02 17:07:41 +03:00
|
|
|
Painter painter(*this);
|
2019-03-29 17:01:54 +03:00
|
|
|
painter.add_clip_rect(event.rect());
|
2019-05-10 23:58:52 +03:00
|
|
|
|
2020-04-23 18:44:49 +03:00
|
|
|
//if (m_has_frame)
|
|
|
|
// Gfx::StylePainter::paint_surface(painter, rect(), palette(), x() != 0, y() != 0);
|
|
|
|
// else
|
2019-12-24 22:57:54 +03:00
|
|
|
painter.fill_rect(event.rect(), palette().button());
|
2019-02-20 04:39:46 +03:00
|
|
|
}
|
2020-02-02 17:07:41 +03:00
|
|
|
|
|
|
|
}
|