mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 20:58:11 +00:00
LibGUI: Add a ToolBarContainer widget and put most ToolBars in one
This mimics the Explorer toolbar container from Windows 2000 and looks pretty neat! :^)
This commit is contained in:
parent
5b6c2f3bd6
commit
ab336e895f
12 changed files with 179 additions and 18 deletions
|
@ -38,6 +38,7 @@
|
|||
#include <LibGUI/MenuBar.h>
|
||||
#include <LibGUI/MessageBox.h>
|
||||
#include <LibGUI/ToolBar.h>
|
||||
#include <LibGUI/ToolBarContainer.h>
|
||||
#include <LibGUI/Window.h>
|
||||
#include <LibGfx/Bitmap.h>
|
||||
#include <stdio.h>
|
||||
|
@ -71,7 +72,8 @@ int main(int argc, char** argv)
|
|||
root_widget.set_layout<GUI::VerticalBoxLayout>();
|
||||
root_widget.layout()->set_spacing(0);
|
||||
|
||||
auto& main_toolbar = root_widget.add<GUI::ToolBar>();
|
||||
auto& toolbar_container = root_widget.add<GUI::ToolBarContainer>();
|
||||
auto& main_toolbar = toolbar_container.add<GUI::ToolBar>();
|
||||
|
||||
auto& widget = root_widget.add<QSWidget>();
|
||||
widget.on_scale_change = [&](int scale) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue