From e016d304229277adfbcc30c07d732238a9d312b3 Mon Sep 17 00:00:00 2001 From: Ferran Pujol Camins Date: Fri, 26 Jun 2015 21:59:58 +0200 Subject: [PATCH 01/33] Removed layout option buttons from the top of LateNight. Centered the clock. --- res/skins/LateNight/waveform_and_mixer.xml | 201 +++------------------ 1 file changed, 28 insertions(+), 173 deletions(-) diff --git a/res/skins/LateNight/waveform_and_mixer.xml b/res/skins/LateNight/waveform_and_mixer.xml index 284fc6ed18c..3446b1c162a 100644 --- a/res/skins/LateNight/waveform_and_mixer.xml +++ b/res/skins/LateNight/waveform_and_mixer.xml @@ -9,199 +9,54 @@ ToolbarTop me,min - - GuiToggleContainer - vertical - min,min - - - 50f,20f - toggle_4decks - GuiToggleButton - 2 - - 0 - 4 DECKS - - - 1 - 4 DECKS - - - [Master],show_4decks - LeftButton - - - [Master],show_4decks - - - - - - GuiToggleContainer - vertical - min,min - - - 40f,20f - show_mixer - GuiToggleButton - 2 - - 0 - MIXER - - - 1 - MIXER - - - [Master],show_mixer - LeftButton - - - [Master],show_mixer - - - - - - GuiToggleContainer - vertical - min,min - - - 40f,20f - GuiToggleButton - 2 - - 0 - EQ - - - 1 - EQ - - - [Master],show_eqs - LeftButton - - - [Master],show_eqs - - - - - - GuiToggleContainer - vertical - min,min + + horizontal + 64f,4f - - 55f,20f - GuiToggleButton - 2 - - 0 - PREVIEW - - - 1 - PREVIEW - - - [PreviewDeck],show_previewdeck - LeftButton - - - [PreviewDeck],show_previewdeck - - - - GuiToggleContainer - vertical - min,min + + horizontal + me,min - - 55f,20f - GuiToggleButton - 2 - - 0 - SPINNIES - - - 1 - SPINNIES - - - [Spinny],show_spinnies - LeftButton - - - [Spinny],show_spinnies - - - GuiToggleContainer - vertical - min,min - - - 40f,20f - show_vinylcontrol - GuiToggleButton - 2 - - 0 - VINYL - - - 1 - VINYL - - - [VinylControl],show_vinylcontrol - LeftButton - - - [VinylControl],show_vinylcontrol - - - + ClockWidget + horizontal + min,min + + + horizontal me,min - + + - vertical + horizontal min,min - - ClockWidget - horizontal - min,max - - - - + + horizontal + me,min + 5, + + + From 94e7b2535d0bf3750ce0c6c039104c334aec3c94 Mon Sep 17 00:00:00 2001 From: Ferran Pujol Camins Date: Sun, 3 Apr 2016 15:48:57 +0200 Subject: [PATCH 02/33] Reordered view menu. --- src/widget/wmainmenubar.cpp | 88 ++++++++++++++++++++----------------- 1 file changed, 48 insertions(+), 40 deletions(-) diff --git a/src/widget/wmainmenubar.cpp b/src/widget/wmainmenubar.cpp index dd02fde5136..593822c407c 100644 --- a/src/widget/wmainmenubar.cpp +++ b/src/widget/wmainmenubar.cpp @@ -176,19 +176,20 @@ void WMainMenuBar::initialize() { QMenu* pViewMenu = new QMenu(tr("&View")); QString mayNotBeSupported = tr("May not be supported on all skins."); - QString showSamplersTitle = tr("Show Samplers"); - QString showSamplersText = tr("Show the sample deck section of the Mixxx interface.") + + + QString maximizeLibraryTitle = tr("Maximize Library"); + QString maximizeLibraryText = tr("Maximize the track library to take up all the available screen space.") + " " + mayNotBeSupported; - QAction* pViewShowSamplers = new QAction(showSamplersTitle, this); - pViewShowSamplers->setCheckable(true); - pViewShowSamplers->setShortcut( + QAction* pViewMaximizeLibrary = new QAction(maximizeLibraryTitle, this); + pViewMaximizeLibrary->setCheckable(true); + pViewMaximizeLibrary->setShortcut( QKeySequence(m_pKbdConfig->getValueString(ConfigKey("[KeyboardShortcuts]", - "ViewMenu_ShowSamplers"), - tr("Ctrl+1", "Menubar|View|Show Samplers")))); - pViewShowSamplers->setStatusTip(showSamplersText); - pViewShowSamplers->setWhatsThis(buildWhatsThis(showSamplersTitle, showSamplersText)); - createVisibilityControl(pViewShowSamplers, ConfigKey("[Samplers]", "show_samplers")); - pViewMenu->addAction(pViewShowSamplers); + "ViewMenu_MaximizeLibrary"), + tr("Space", "Menubar|View|Maximize Library")))); + pViewMaximizeLibrary->setStatusTip(maximizeLibraryText); + pViewMaximizeLibrary->setWhatsThis(buildWhatsThis(maximizeLibraryTitle, maximizeLibraryText)); + createVisibilityControl(pViewMaximizeLibrary, ConfigKey("[Master]", "maximize_library")); + pViewMenu->addAction(pViewMaximizeLibrary); QString showMicrophoneTitle = tr("Show Microphone Section"); QString showMicrophoneText = tr("Show the microphone section of the Mixxx interface.") + @@ -204,6 +205,40 @@ void WMainMenuBar::initialize() { createVisibilityControl(pViewShowMicrophone, ConfigKey("[Microphone]", "show_microphone")); pViewMenu->addAction(pViewShowMicrophone); + + QString showEffectsTitle = tr("Show Effect Rack"); + QString showEffectsText = tr("Show the effect rack in the Mixxx interface.") + + " " + mayNotBeSupported; + QAction* pViewShowEffects = new QAction(showEffectsTitle, this); + pViewShowEffects->setCheckable(true); + pViewShowEffects->setShortcut( + QKeySequence(m_pKbdConfig->getValueString(ConfigKey("[KeyboardShortcuts]", + "ViewMenu_ShowEffects"), + tr("Ctrl+5", "Menubar|View|Show Effect Rack")))); + pViewShowEffects->setStatusTip(showEffectsText); + pViewShowEffects->setWhatsThis(buildWhatsThis(showEffectsTitle, showEffectsText)); + createVisibilityControl(pViewShowEffects, ConfigKey("[EffectRack1]", "show")); + pViewMenu->addAction(pViewShowEffects); + + + QString showSamplersTitle = tr("Show Samplers"); + QString showSamplersText = tr("Show the sample deck section of the Mixxx interface.") + + " " + mayNotBeSupported; + QAction* pViewShowSamplers = new QAction(showSamplersTitle, this); + pViewShowSamplers->setCheckable(true); + pViewShowSamplers->setShortcut( + QKeySequence(m_pKbdConfig->getValueString(ConfigKey("[KeyboardShortcuts]", + "ViewMenu_ShowSamplers"), + tr("Ctrl+1", "Menubar|View|Show Samplers")))); + pViewShowSamplers->setStatusTip(showSamplersText); + pViewShowSamplers->setWhatsThis(buildWhatsThis(showSamplersTitle, showSamplersText)); + createVisibilityControl(pViewShowSamplers, ConfigKey("[Samplers]", "show_samplers")); + pViewMenu->addAction(pViewShowSamplers); + + + pViewMenu->addSeparator(); + + #ifdef __VINYLCONTROL__ QString showVinylControlTitle = tr("Show Vinyl Control Section"); QString showVinylControlText = tr("Show the vinyl control section of the Mixxx interface.") + @@ -220,6 +255,7 @@ void WMainMenuBar::initialize() { pViewMenu->addAction(pViewVinylControl); #endif + QString showPreviewDeckTitle = tr("Show Preview Deck"); QString showPreviewDeckText = tr("Show the preview deck in the Mixxx interface.") + " " + mayNotBeSupported; @@ -234,20 +270,6 @@ void WMainMenuBar::initialize() { createVisibilityControl(pViewShowPreviewDeck, ConfigKey("[PreviewDeck]", "show_previewdeck")); pViewMenu->addAction(pViewShowPreviewDeck); - QString showEffectsTitle = tr("Show Effect Rack"); - QString showEffectsText = tr("Show the effect rack in the Mixxx interface.") + - " " + mayNotBeSupported; - QAction* pViewShowEffects = new QAction(showEffectsTitle, this); - pViewShowEffects->setCheckable(true); - pViewShowEffects->setShortcut( - QKeySequence(m_pKbdConfig->getValueString(ConfigKey("[KeyboardShortcuts]", - "ViewMenu_ShowEffects"), - tr("Ctrl+5", "Menubar|View|Show Effect Rack")))); - pViewShowEffects->setStatusTip(showEffectsText); - pViewShowEffects->setWhatsThis(buildWhatsThis(showEffectsTitle, showEffectsText)); - createVisibilityControl(pViewShowEffects, ConfigKey("[EffectRack1]", "show")); - pViewMenu->addAction(pViewShowEffects); - QString showCoverArtTitle = tr("Show Cover Art"); QString showCoverArtText = tr("Show cover art in the Mixxx interface.") + @@ -264,21 +286,6 @@ void WMainMenuBar::initialize() { pViewMenu->addAction(pViewShowCoverArt); - QString maximizeLibraryTitle = tr("Maximize Library"); - QString maximizeLibraryText = tr("Maximize the track library to take up all the available screen space.") + - " " + mayNotBeSupported; - QAction* pViewMaximizeLibrary = new QAction(maximizeLibraryTitle, this); - pViewMaximizeLibrary->setCheckable(true); - pViewMaximizeLibrary->setShortcut( - QKeySequence(m_pKbdConfig->getValueString(ConfigKey("[KeyboardShortcuts]", - "ViewMenu_MaximizeLibrary"), - tr("Space", "Menubar|View|Maximize Library")))); - pViewMaximizeLibrary->setStatusTip(maximizeLibraryText); - pViewMaximizeLibrary->setWhatsThis(buildWhatsThis(maximizeLibraryTitle, maximizeLibraryText)); - createVisibilityControl(pViewMaximizeLibrary, ConfigKey("[Master]", "maximize_library")); - pViewMenu->addAction(pViewMaximizeLibrary); - - pViewMenu->addSeparator(); @@ -302,6 +309,7 @@ void WMainMenuBar::initialize() { addMenu(pViewMenu); + // OPTIONS MENU QMenu* pOptionsMenu = new QMenu(tr("&Options")); From 386721e07c12984fca97f7acf430f8d4e7bbb48b Mon Sep 17 00:00:00 2001 From: Ferran Pujol Camins Date: Sun, 3 Apr 2016 20:27:08 +0200 Subject: [PATCH 03/33] Added "Show Library" check control to the view menu. --- src/widget/wmainmenubar.cpp | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/src/widget/wmainmenubar.cpp b/src/widget/wmainmenubar.cpp index 593822c407c..848501fe7d1 100644 --- a/src/widget/wmainmenubar.cpp +++ b/src/widget/wmainmenubar.cpp @@ -191,6 +191,22 @@ void WMainMenuBar::initialize() { createVisibilityControl(pViewMaximizeLibrary, ConfigKey("[Master]", "maximize_library")); pViewMenu->addAction(pViewMaximizeLibrary); + + QString showLibraryTitle = tr("Show Library"); + QString showLibraryText = tr("Show the library of the Mixxx interfce.") + + " " + mayNotBeSupported; + QAction* pViewShowLibrary = new QAction(showLibraryTitle, this); + pViewShowLibrary->setCheckable(true); + pViewShowLibrary->setShortcut( + QKeySequence(m_pKbdConfig->getValueString(ConfigKey("[KeyboardShortcuts]", + "ViewMenu_ShowLibrary"), + tr("Ctrl+1", "Menubar|View|Show Library")))); + pViewShowLibrary->setStatusTip(showLibraryText); + pViewShowLibrary->setWhatsThis(buildWhatsThis(showLibraryTitle, showLibraryText)); + createVisibilityControl(pViewShowLibrary, ConfigKey("[Library]", "show_library")); + pViewMenu->addAction(pViewShowLibrary); + + QString showMicrophoneTitle = tr("Show Microphone Section"); QString showMicrophoneText = tr("Show the microphone section of the Mixxx interface.") + " " + mayNotBeSupported; From 402302853fde38fcce726496cefc967c2fd78b5d Mon Sep 17 00:00:00 2001 From: Ferran Pujol Camins Date: Wed, 1 Jul 2015 13:14:03 +0200 Subject: [PATCH 04/33] Changed CO show_library_tab_small to show_library in LateNight. This lets the view menu check option work in all circumstances. --- res/skins/LateNight/fx_samplers_container_small.xml | 4 ++-- res/skins/LateNight/toolbar_small.xml | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/res/skins/LateNight/fx_samplers_container_small.xml b/res/skins/LateNight/fx_samplers_container_small.xml index a68acd504f9..cccbf6bec26 100644 --- a/res/skins/LateNight/fx_samplers_container_small.xml +++ b/res/skins/LateNight/fx_samplers_container_small.xml @@ -6,7 +6,7 @@ - + vertical @@ -43,4 +43,4 @@ - \ No newline at end of file + diff --git a/res/skins/LateNight/toolbar_small.xml b/res/skins/LateNight/toolbar_small.xml index 8a06ed7f9f8..f2a09e5b630 100644 --- a/res/skins/LateNight/toolbar_small.xml +++ b/res/skins/LateNight/toolbar_small.xml @@ -28,11 +28,11 @@ LIBRARY - [Library],show_library_tab_small + [Library],show_library LeftButton - [Library],show_library_tab_small + [Library],show_library @@ -156,4 +156,4 @@ - \ No newline at end of file + From db93d5d3e7968257a01bbe3f5421c71a18ccc186 Mon Sep 17 00:00:00 2001 From: Ferran Pujol Camins Date: Sun, 3 Apr 2016 20:41:52 +0200 Subject: [PATCH 05/33] Added Show Eqs check control to the view Menu. --- src/widget/wmainmenubar.cpp | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/src/widget/wmainmenubar.cpp b/src/widget/wmainmenubar.cpp index 848501fe7d1..3e40686f578 100644 --- a/src/widget/wmainmenubar.cpp +++ b/src/widget/wmainmenubar.cpp @@ -272,6 +272,21 @@ void WMainMenuBar::initialize() { #endif + QString showEqsTitle = tr("Show Eqs"); + QString showEqsText = tr("Show the equalizers on the mixer section.") + + " " + mayNotBeSupported; + QAction* pViewShowEqs = new QAction(showEqsTitle, this); + pViewShowEqs->setCheckable(true); + pViewShowEqs->setShortcut( + QKeySequence(m_pKbdConfig->getValueString(ConfigKey("[KeyboardShortcuts]", + "ViewMenu_ShowEqs"), + tr("Ctrl+1", "Menubar|View|Show Eqs")))); + pViewShowEqs->setStatusTip(showEqsText); + pViewShowEqs->setWhatsThis(buildWhatsThis(showEqsTitle, showEqsText)); + createVisibilityControl(pViewShowEqs, ConfigKey("[Master]", "show_eqs")); + pViewMenu->addAction(pViewShowEqs); + + QString showPreviewDeckTitle = tr("Show Preview Deck"); QString showPreviewDeckText = tr("Show the preview deck in the Mixxx interface.") + " " + mayNotBeSupported; From 925bf4b01e9d3e1cd2c67b43c90c2502c4eef71f Mon Sep 17 00:00:00 2001 From: Ferran Pujol Camins Date: Sun, 3 Apr 2016 20:49:07 +0200 Subject: [PATCH 06/33] Added Show Mixer check control in view menu. --- src/widget/wmainmenubar.cpp | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/src/widget/wmainmenubar.cpp b/src/widget/wmainmenubar.cpp index 3e40686f578..89152215a5e 100644 --- a/src/widget/wmainmenubar.cpp +++ b/src/widget/wmainmenubar.cpp @@ -272,6 +272,21 @@ void WMainMenuBar::initialize() { #endif + QString showMixerTitle = tr("Show Mixer"); + QString showMixerText = tr("Show the mixer section.") + + " " + mayNotBeSupported; + QAction* pViewShowMixer = new QAction(showMixerTitle, this); + pViewShowMixer->setCheckable(true); + pViewShowMixer->setShortcut( + QKeySequence(m_pKbdConfig->getValueString(ConfigKey("[KeyboardShortcuts]", + "ViewMenu_ShowMixer"), + tr("Ctrl+1", "Menubar|View|Show Mixer")))); + pViewShowMixer->setStatusTip(showMixerText); + pViewShowMixer->setWhatsThis(buildWhatsThis(showMixerTitle, showMixerText)); + createVisibilityControl(pViewShowMixer, ConfigKey("[Master]", "show_mixer")); + pViewMenu->addAction(pViewShowMixer); + + QString showEqsTitle = tr("Show Eqs"); QString showEqsText = tr("Show the equalizers on the mixer section.") + " " + mayNotBeSupported; From e30c9550675e09a1ae9a95ca93e09fc377e0dbf0 Mon Sep 17 00:00:00 2001 From: Ferran Pujol Camins Date: Sun, 3 Apr 2016 20:53:20 +0200 Subject: [PATCH 07/33] Added Show 4 decks check option to view menu. --- src/widget/wmainmenubar.cpp | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/src/widget/wmainmenubar.cpp b/src/widget/wmainmenubar.cpp index 89152215a5e..12689203248 100644 --- a/src/widget/wmainmenubar.cpp +++ b/src/widget/wmainmenubar.cpp @@ -255,6 +255,24 @@ void WMainMenuBar::initialize() { pViewMenu->addSeparator(); + QString show4DecksTitle = tr("Show 4 Decks"); + QString show4DecksText = tr("Show 4 Decks on the Mixxx interface.") + + " " + mayNotBeSupported; + QAction* pViewShow4Decks = new QAction(show4DecksTitle, this); + pViewShow4Decks->setCheckable(true); + pViewShow4Decks->setShortcut( + QKeySequence(m_pKbdConfig->getValueString(ConfigKey("[KeyboardShortcuts]", + "ViewMenu_Show4Decks"), + tr("Ctrl+1", "Menubar|View|Show 4 Decks")))); + pViewShow4Decks->setStatusTip(show4DecksText); + pViewShow4Decks->setWhatsThis(buildWhatsThis(show4DecksTitle, show4DecksText)); + connect(pViewShow4Decks, SIGNAL(toggled(bool)), + this, SLOT(slotViewShow4Decks(bool))); + createVisibilityControl(pViewShow4Decks, ConfigKey("[Master]", "show_4decks")); + pViewMenu->addAction(pViewShow4Decks); + + + #ifdef __VINYLCONTROL__ QString showVinylControlTitle = tr("Show Vinyl Control Section"); QString showVinylControlText = tr("Show the vinyl control section of the Mixxx interface.") + From da2bb21d7ac58083a3dbffce8bf886525e703386 Mon Sep 17 00:00:00 2001 From: Ferran Pujol Camins Date: Sun, 3 Apr 2016 21:15:57 +0200 Subject: [PATCH 08/33] LateNight: crossfader can now be hidden. Added "Show crossfader" check option to view menu. --- res/skins/LateNight/mixer.xml | 4 + res/skins/LateNight/skin.xml | 3 +- res/skins/SkinConcepts/skin.xml | 123 ++++++++++++++++++++++++++ res/skins/SkinConcepts/style.qss | 26 ++++++ res/skins/WidgetAlignment/skin.xml | 43 +++++++++ res/skins/WidgetAlignment/style.qss | 14 +++ src/controllers/controlpickermenu.cpp | 3 + src/skin/tooltips.cpp | 4 + src/widget/wmainmenubar.cpp | 16 ++++ 9 files changed, 235 insertions(+), 1 deletion(-) create mode 100644 res/skins/SkinConcepts/skin.xml create mode 100644 res/skins/SkinConcepts/style.qss create mode 100644 res/skins/WidgetAlignment/skin.xml create mode 100644 res/skins/WidgetAlignment/style.qss diff --git a/res/skins/LateNight/mixer.xml b/res/skins/LateNight/mixer.xml index 05c098838ca..83cf31fb6bc 100644 --- a/res/skins/LateNight/mixer.xml +++ b/res/skins/LateNight/mixer.xml @@ -197,6 +197,10 @@ + + [Master],show_xfader + visible + diff --git a/res/skins/LateNight/skin.xml b/res/skins/LateNight/skin.xml index 3472d31f7ca..cefa0185d3d 100644 --- a/res/skins/LateNight/skin.xml +++ b/res/skins/LateNight/skin.xml @@ -57,7 +57,8 @@ 1 0 1 - 1 + 1 + 1 0 diff --git a/res/skins/SkinConcepts/skin.xml b/res/skins/SkinConcepts/skin.xml new file mode 100644 index 00000000000..5ed82f99e06 --- /dev/null +++ b/res/skins/SkinConcepts/skin.xml @@ -0,0 +1,123 @@ + + + + SkinConcepts + Ferran Pujol Camins + 1.12.0.01 + An example skin showing how to properly align widgets. + en + Creative Commons Attribution, Share-Alike 3.0 Unported + + 2 + + + + Mixxx + + play_cue_set + 1 + true + + 0 + A + + + [Channel1],hotcue_1_gotoandplay + true + LeftButton + + + [Channel2],hotcue_1_gotoandplay + true + LeftButton + + + + + [Master],num_decks + visible + + + + + + diff --git a/res/skins/SkinConcepts/style.qss b/res/skins/SkinConcepts/style.qss new file mode 100644 index 00000000000..2c7cc4acb3e --- /dev/null +++ b/res/skins/SkinConcepts/style.qss @@ -0,0 +1,26 @@ +#Mixxx { + background-color: #000000; + qproperty-layoutAlignment: 'AlignCenter | AlignTop'; +} + +#SkinStuff { + background-color: #100030; +} + +#Clock { + font: bold 23px; + color: #FFFFFF; + background-color: #300010; +} + +#Page1 { + background-color: #000080; +} + +#Page2 { + background-color: #008000; +} + +#Page3 { + background-color: #800000; +} diff --git a/res/skins/WidgetAlignment/skin.xml b/res/skins/WidgetAlignment/skin.xml new file mode 100644 index 00000000000..10337056ec5 --- /dev/null +++ b/res/skins/WidgetAlignment/skin.xml @@ -0,0 +1,43 @@ + + + + WidgetAlignment + Ferran Pujol Camins + 1.12.0.01 + An example skin showing how to properly align widgets. + en + Creative Commons Attribution, Share-Alike 3.0 Unported + + 2 + + + + Mixxx + + false + + + + + horizontal + min,min + + + horizontal + 197f,min + + + + + From d99a28b6df2cca67c67ed1295c57a649f351498f Mon Sep 17 00:00:00 2001 From: Ferran Pujol Camins Date: Sun, 3 Apr 2016 21:30:51 +0200 Subject: [PATCH 13/33] Removed top toolbar. --- res/skins/LateNight/style.qss | 3 +- res/skins/LateNight/waveform_and_mixer.xml | 52 +--------------------- 2 files changed, 2 insertions(+), 53 deletions(-) diff --git a/res/skins/LateNight/style.qss b/res/skins/LateNight/style.qss index 74f438e23ad..1e1cabea614 100644 --- a/res/skins/LateNight/style.qss +++ b/res/skins/LateNight/style.qss @@ -801,9 +801,8 @@ #ToolbarTop { qproperty-layoutAlignment: 'AlignLeft | AlignTop'; border: 1px solid #585858; - border-top: 0px; padding: 0px; - background-color: #1e1e1e; + background-color: #0f0f0f; } #WaveformMixerContainer { diff --git a/res/skins/LateNight/waveform_and_mixer.xml b/res/skins/LateNight/waveform_and_mixer.xml index 3446b1c162a..d25d33e8f87 100644 --- a/res/skins/LateNight/waveform_and_mixer.xml +++ b/res/skins/LateNight/waveform_and_mixer.xml @@ -7,58 +7,8 @@ horizontal ToolbarTop - me,min + me,12f - - horizontal - 64f,4f - - - - - horizontal - me,min - - - - - ClockWidget - horizontal - min,min - - - - - - horizontal - me,min - - - - - horizontal - min,min - - - - horizontal - me,min - 5, - - - - - From f06cc1686b4d2a6a8eaa63051a53ff4ece5a3a06 Mon Sep 17 00:00:00 2001 From: Ferran Pujol Camins Date: Sun, 3 Apr 2016 22:37:34 +0200 Subject: [PATCH 14/33] Unified all LateNight toolbars. --- res/skins/LateNight/lower_half.xml | 10 +- res/skins/LateNight/skin.xml | 2 +- .../{toolbar_med.xml => toolbar.xml} | 0 res/skins/LateNight/toolbar_big_library.xml | 43 ----- res/skins/LateNight/toolbar_full.xml | 126 -------------- res/skins/LateNight/toolbar_small.xml | 159 ------------------ 6 files changed, 8 insertions(+), 332 deletions(-) rename res/skins/LateNight/{toolbar_med.xml => toolbar.xml} (100%) delete mode 100644 res/skins/LateNight/toolbar_big_library.xml delete mode 100644 res/skins/LateNight/toolbar_full.xml delete mode 100644 res/skins/LateNight/toolbar_small.xml diff --git a/res/skins/LateNight/lower_half.xml b/res/skins/LateNight/lower_half.xml index bf3f3af1995..1ecd07645da 100644 --- a/res/skins/LateNight/lower_half.xml +++ b/res/skins/LateNight/lower_half.xml @@ -9,7 +9,11 @@ 1920,249