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-12-09 14:52:38 +03:00
|
|
|
#include <AK/String.h>
|
|
|
|
#include <AK/StringBuilder.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>
|
2020-12-30 05:52:27 +03:00
|
|
|
#include <LibGUI/SeparatorWidget.h>
|
2020-02-06 22:33:02 +03:00
|
|
|
#include <LibGUI/ToolBar.h>
|
2020-09-18 10:49:51 +03:00
|
|
|
#include <LibGfx/Palette.h>
|
2019-02-20 04:39:46 +03:00
|
|
|
|
2021-01-03 02:30:13 +03:00
|
|
|
REGISTER_WIDGET(GUI, ToolBar)
|
|
|
|
|
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)
|
2020-12-30 05:52:27 +03:00
|
|
|
: m_orientation(orientation)
|
|
|
|
, m_button_size(button_size)
|
2019-02-20 04:39:46 +03:00
|
|
|
{
|
2020-12-30 05:52:27 +03:00
|
|
|
if (m_orientation == Orientation::Horizontal) {
|
2020-12-30 03:23:32 +03:00
|
|
|
set_fixed_height(button_size + 8);
|
2019-11-08 23:09:34 +03:00
|
|
|
} else {
|
2020-12-30 03:23:32 +03:00
|
|
|
set_fixed_width(button_size + 8);
|
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-10-30 18:47:00 +03:00
|
|
|
class ToolBarButton final : public Button {
|
|
|
|
C_OBJECT(ToolBarButton);
|
|
|
|
|
|
|
|
public:
|
|
|
|
virtual ~ToolBarButton() override { }
|
|
|
|
|
|
|
|
private:
|
|
|
|
explicit ToolBarButton(Action& action)
|
|
|
|
{
|
|
|
|
if (action.group() && action.group()->is_exclusive())
|
|
|
|
set_exclusive(true);
|
|
|
|
set_action(action);
|
2020-12-09 14:52:38 +03:00
|
|
|
set_tooltip(tooltip(action));
|
2020-10-30 18:47:00 +03:00
|
|
|
set_focus_policy(FocusPolicy::TabFocus);
|
|
|
|
if (action.icon())
|
|
|
|
set_icon(action.icon());
|
|
|
|
else
|
|
|
|
set_text(action.text());
|
|
|
|
set_button_style(Gfx::ButtonStyle::CoolBar);
|
|
|
|
}
|
2020-12-09 14:52:38 +03:00
|
|
|
String tooltip(const Action& action) const
|
|
|
|
{
|
|
|
|
StringBuilder builder;
|
|
|
|
builder.append(action.text());
|
|
|
|
if (action.shortcut().is_valid()) {
|
|
|
|
builder.append(" (");
|
|
|
|
builder.append(action.shortcut().to_string());
|
|
|
|
builder.append(")");
|
|
|
|
}
|
|
|
|
return builder.to_string();
|
|
|
|
}
|
2020-10-30 18:47:00 +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-10-30 18:47:00 +03:00
|
|
|
auto& button = add<ToolBarButton>(action);
|
2020-12-30 03:23:32 +03:00
|
|
|
button.set_fixed_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
|
|
|
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-12-30 05:52:27 +03:00
|
|
|
add<SeparatorWidget>(m_orientation == Gfx::Orientation::Horizontal ? Gfx::Orientation::Vertical : Gfx::Orientation::Horizontal);
|
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-09-18 10:49:51 +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
|
|
|
|
|
|
|
}
|