summaryrefslogtreecommitdiff
path: root/Applications
diff options
context:
space:
mode:
authorAndreas Kling <kling@serenityos.org>2020-02-23 11:09:20 +0100
committerAndreas Kling <kling@serenityos.org>2020-02-23 11:10:52 +0100
commitbfd86c46316c0a7b0fca2b6966ec57884124caab (patch)
tree43e98365bf20dea6d7f827806ecfd9a797940939 /Applications
parent3d20da9ee451460b6e233f5efdf5a13e11525f97 (diff)
downloadserenity-bfd86c46316c0a7b0fca2b6966ec57884124caab.zip
LibGUI: Make GUI::Frame have the 2px sunken container look by default
The overwhelming majority of GUI::Frame users set the same appearance, so let's just make it the default.
Diffstat (limited to 'Applications')
-rw-r--r--Applications/FileManager/PropertiesDialog.cpp3
-rw-r--r--Applications/FontEditor/GlyphEditorWidget.cpp3
-rw-r--r--Applications/FontEditor/GlyphMapWidget.cpp3
-rw-r--r--Applications/HexEditor/HexEditor.cpp3
-rw-r--r--Applications/PaintBrush/PaletteWidget.cpp9
-rw-r--r--Applications/Piano/KeysWidget.cpp3
-rw-r--r--Applications/Piano/KnobsWidget.cpp3
-rw-r--r--Applications/Piano/RollWidget.cpp4
-rw-r--r--Applications/Piano/SamplerWidget.cpp6
-rw-r--r--Applications/Piano/WaveWidget.cpp3
-rw-r--r--Applications/QuickShow/QSWidget.cpp4
-rw-r--r--Applications/SoundPlayer/SampleWidget.cpp3
-rw-r--r--Applications/SystemMonitor/GraphWidget.cpp3
13 files changed, 0 insertions, 50 deletions
diff --git a/Applications/FileManager/PropertiesDialog.cpp b/Applications/FileManager/PropertiesDialog.cpp
index 082a819422..6c7a867cf3 100644
--- a/Applications/FileManager/PropertiesDialog.cpp
+++ b/Applications/FileManager/PropertiesDialog.cpp
@@ -276,9 +276,6 @@ void PropertiesDialog::make_divider(NonnullRefPtr<GUI::Widget>& parent)
auto divider = parent->add<GUI::Frame>();
divider->set_size_policy(GUI::SizePolicy::Fill, GUI::SizePolicy::Fixed);
divider->set_preferred_size({ 0, 2 });
- divider->set_frame_shape(Gfx::FrameShape::HorizontalLine);
- divider->set_frame_shadow(Gfx::FrameShadow::Sunken);
- divider->set_frame_thickness(2);
parent->layout()->add_spacer();
}
diff --git a/Applications/FontEditor/GlyphEditorWidget.cpp b/Applications/FontEditor/GlyphEditorWidget.cpp
index 1d0c350a9e..66adffdda5 100644
--- a/Applications/FontEditor/GlyphEditorWidget.cpp
+++ b/Applications/FontEditor/GlyphEditorWidget.cpp
@@ -32,9 +32,6 @@
GlyphEditorWidget::GlyphEditorWidget(Gfx::Font& mutable_font)
: m_font(mutable_font)
{
- set_frame_thickness(2);
- set_frame_shadow(Gfx::FrameShadow::Sunken);
- set_frame_shape(Gfx::FrameShape::Container);
set_relative_rect({ 0, 0, preferred_width(), preferred_height() });
}
diff --git a/Applications/FontEditor/GlyphMapWidget.cpp b/Applications/FontEditor/GlyphMapWidget.cpp
index f057b46bb7..43ce3a234a 100644
--- a/Applications/FontEditor/GlyphMapWidget.cpp
+++ b/Applications/FontEditor/GlyphMapWidget.cpp
@@ -32,9 +32,6 @@
GlyphMapWidget::GlyphMapWidget(Gfx::Font& mutable_font)
: m_font(mutable_font)
{
- set_frame_thickness(2);
- set_frame_shape(Gfx::FrameShape::Container);
- set_frame_shadow(Gfx::FrameShadow::Sunken);
set_relative_rect({ 0, 0, preferred_width(), preferred_height() });
}
diff --git a/Applications/HexEditor/HexEditor.cpp b/Applications/HexEditor/HexEditor.cpp
index 1c4f1a53f7..6914cb1760 100644
--- a/Applications/HexEditor/HexEditor.cpp
+++ b/Applications/HexEditor/HexEditor.cpp
@@ -44,9 +44,6 @@
HexEditor::HexEditor(GUI::Widget* parent)
: ScrollableWidget(parent)
{
- set_frame_shape(Gfx::FrameShape::Container);
- set_frame_shadow(Gfx::FrameShadow::Sunken);
- set_frame_thickness(2);
set_scrollbars_enabled(true);
set_font(GFontDatabase::the().get_by_name("Csilla Thin"));
set_background_role(ColorRole::Base);
diff --git a/Applications/PaintBrush/PaletteWidget.cpp b/Applications/PaintBrush/PaletteWidget.cpp
index e7394c10fd..fb6bcb077c 100644
--- a/Applications/PaintBrush/PaletteWidget.cpp
+++ b/Applications/PaintBrush/PaletteWidget.cpp
@@ -37,9 +37,6 @@ public:
: m_palette_widget(palette_widget)
, m_color(color)
{
- set_frame_thickness(2);
- set_frame_shadow(Gfx::FrameShadow::Sunken);
- set_frame_shape(Gfx::FrameShape::Container);
}
virtual ~ColorWidget() override
@@ -83,17 +80,11 @@ PaletteWidget::PaletteWidget(PaintableWidget& paintable_widget)
set_preferred_size(0, 34);
m_secondary_color_widget = add<GUI::Frame>();
- m_secondary_color_widget->set_frame_thickness(2);
- m_secondary_color_widget->set_frame_shape(Gfx::FrameShape::Container);
- m_secondary_color_widget->set_frame_shadow(Gfx::FrameShadow::Sunken);
m_secondary_color_widget->set_relative_rect({ 2, 2, 60, 31 });
m_secondary_color_widget->set_fill_with_background_color(true);
set_secondary_color(paintable_widget.secondary_color());
m_primary_color_widget = add<GUI::Frame>();
- m_primary_color_widget->set_frame_thickness(2);
- m_primary_color_widget->set_frame_shape(Gfx::FrameShape::Container);
- m_primary_color_widget->set_frame_shadow(Gfx::FrameShadow::Sunken);
Gfx::Rect rect { 0, 0, 38, 15 };
rect.center_within(m_secondary_color_widget->relative_rect());
m_primary_color_widget->set_relative_rect(rect);
diff --git a/Applications/Piano/KeysWidget.cpp b/Applications/Piano/KeysWidget.cpp
index 9fd8779d5a..e757ef57c4 100644
--- a/Applications/Piano/KeysWidget.cpp
+++ b/Applications/Piano/KeysWidget.cpp
@@ -32,9 +32,6 @@
KeysWidget::KeysWidget(AudioEngine& audio_engine)
: m_audio_engine(audio_engine)
{
- set_frame_thickness(2);
- set_frame_shadow(Gfx::FrameShadow::Sunken);
- set_frame_shape(Gfx::FrameShape::Container);
set_fill_with_background_color(true);
}
diff --git a/Applications/Piano/KnobsWidget.cpp b/Applications/Piano/KnobsWidget.cpp
index c272ff80e8..0a4bf4b02f 100644
--- a/Applications/Piano/KnobsWidget.cpp
+++ b/Applications/Piano/KnobsWidget.cpp
@@ -36,9 +36,6 @@ KnobsWidget::KnobsWidget(AudioEngine& audio_engine, MainWidget& main_widget)
: m_audio_engine(audio_engine)
, m_main_widget(main_widget)
{
- set_frame_thickness(2);
- set_frame_shadow(Gfx::FrameShadow::Sunken);
- set_frame_shape(Gfx::FrameShape::Container);
set_layout(make<GUI::VerticalBoxLayout>());
set_fill_with_background_color(true);
diff --git a/Applications/Piano/RollWidget.cpp b/Applications/Piano/RollWidget.cpp
index 8efb6dd671..03b87413ac 100644
--- a/Applications/Piano/RollWidget.cpp
+++ b/Applications/Piano/RollWidget.cpp
@@ -36,10 +36,6 @@ constexpr int roll_height = note_count * note_height;
RollWidget::RollWidget(AudioEngine& audio_engine)
: m_audio_engine(audio_engine)
{
- set_frame_thickness(2);
- set_frame_shadow(Gfx::FrameShadow::Sunken);
- set_frame_shape(Gfx::FrameShape::Container);
-
set_should_hide_unnecessary_scrollbars(true);
set_content_size({ 0, roll_height });
vertical_scrollbar().set_value(roll_height / 2);
diff --git a/Applications/Piano/SamplerWidget.cpp b/Applications/Piano/SamplerWidget.cpp
index ea227659b9..2231afcea3 100644
--- a/Applications/Piano/SamplerWidget.cpp
+++ b/Applications/Piano/SamplerWidget.cpp
@@ -36,9 +36,6 @@
WaveEditor::WaveEditor(AudioEngine& audio_engine)
: m_audio_engine(audio_engine)
{
- set_frame_thickness(2);
- set_frame_shadow(Gfx::FrameShadow::Sunken);
- set_frame_shape(Gfx::FrameShape::Container);
}
WaveEditor::~WaveEditor()
@@ -94,9 +91,6 @@ void WaveEditor::paint_event(GUI::PaintEvent& event)
SamplerWidget::SamplerWidget(AudioEngine& audio_engine)
: m_audio_engine(audio_engine)
{
- set_frame_thickness(2);
- set_frame_shadow(Gfx::FrameShadow::Sunken);
- set_frame_shape(Gfx::FrameShape::Container);
set_layout(make<GUI::VerticalBoxLayout>());
layout()->set_margins({ 10, 10, 10, 10 });
layout()->set_spacing(10);
diff --git a/Applications/Piano/WaveWidget.cpp b/Applications/Piano/WaveWidget.cpp
index 434f51cf4d..5d8f3d72be 100644
--- a/Applications/Piano/WaveWidget.cpp
+++ b/Applications/Piano/WaveWidget.cpp
@@ -33,9 +33,6 @@
WaveWidget::WaveWidget(AudioEngine& audio_engine)
: m_audio_engine(audio_engine)
{
- set_frame_thickness(2);
- set_frame_shadow(Gfx::FrameShadow::Sunken);
- set_frame_shape(Gfx::FrameShape::Container);
}
WaveWidget::~WaveWidget()
diff --git a/Applications/QuickShow/QSWidget.cpp b/Applications/QuickShow/QSWidget.cpp
index aebaa246f0..9adc2766e1 100644
--- a/Applications/QuickShow/QSWidget.cpp
+++ b/Applications/QuickShow/QSWidget.cpp
@@ -35,10 +35,6 @@
QSWidget::QSWidget(GUI::Widget* parent)
: GUI::Frame(parent)
{
- set_frame_shape(Gfx::FrameShape::Container);
- set_frame_shadow(Gfx::FrameShadow::Sunken);
- set_frame_thickness(2);
-
set_fill_with_background_color(true);
set_background_color(Color::Black);
}
diff --git a/Applications/SoundPlayer/SampleWidget.cpp b/Applications/SoundPlayer/SampleWidget.cpp
index 1346c218a3..06a6c53727 100644
--- a/Applications/SoundPlayer/SampleWidget.cpp
+++ b/Applications/SoundPlayer/SampleWidget.cpp
@@ -31,9 +31,6 @@
SampleWidget::SampleWidget()
{
- set_frame_shape(Gfx::FrameShape::Container);
- set_frame_shadow(Gfx::FrameShadow::Sunken);
- set_frame_thickness(2);
}
SampleWidget::~SampleWidget()
diff --git a/Applications/SystemMonitor/GraphWidget.cpp b/Applications/SystemMonitor/GraphWidget.cpp
index 0a82a17b66..d3120e9ca0 100644
--- a/Applications/SystemMonitor/GraphWidget.cpp
+++ b/Applications/SystemMonitor/GraphWidget.cpp
@@ -30,9 +30,6 @@
GraphWidget::GraphWidget()
{
- set_frame_thickness(2);
- set_frame_shape(Gfx::FrameShape::Container);
- set_frame_shadow(Gfx::FrameShadow::Sunken);
}
GraphWidget::~GraphWidget()