diff --git a/plugins/dynamics_processor/add1_active.png b/plugins/dynamics_processor/add1_active.png old mode 100644 new mode 100755 index 89ae87e0fe6..71979b1812d Binary files a/plugins/dynamics_processor/add1_active.png and b/plugins/dynamics_processor/add1_active.png differ diff --git a/plugins/dynamics_processor/add1_inactive.png b/plugins/dynamics_processor/add1_inactive.png old mode 100644 new mode 100755 index 94213a27c64..9557735ed75 Binary files a/plugins/dynamics_processor/add1_inactive.png and b/plugins/dynamics_processor/add1_inactive.png differ diff --git a/plugins/dynamics_processor/artwork.png b/plugins/dynamics_processor/artwork.png index f5398d738ba..76b812e27dc 100644 Binary files a/plugins/dynamics_processor/artwork.png and b/plugins/dynamics_processor/artwork.png differ diff --git a/plugins/dynamics_processor/avg_active.png b/plugins/dynamics_processor/avg_active.png index baa6b36e3a1..9c1719266de 100644 Binary files a/plugins/dynamics_processor/avg_active.png and b/plugins/dynamics_processor/avg_active.png differ diff --git a/plugins/dynamics_processor/avg_inactive.png b/plugins/dynamics_processor/avg_inactive.png index 816900e2c1d..ca20bc2777c 100644 Binary files a/plugins/dynamics_processor/avg_inactive.png and b/plugins/dynamics_processor/avg_inactive.png differ diff --git a/plugins/dynamics_processor/dynamics_processor_control_dialog.cpp b/plugins/dynamics_processor/dynamics_processor_control_dialog.cpp index 139bb6a6c1c..17111ef8899 100644 --- a/plugins/dynamics_processor/dynamics_processor_control_dialog.cpp +++ b/plugins/dynamics_processor/dynamics_processor_control_dialog.cpp @@ -44,23 +44,23 @@ dynProcControlDialog::dynProcControlDialog( pal.setBrush( backgroundRole(), PLUGIN_NAME::getIconPixmap( "artwork" ) ); setPalette( pal ); - setFixedSize( 224, 340 ); + setFixedSize( 224, 319 ); Graph * waveGraph = new Graph( this, Graph::LinearNonCyclicStyle, 204, 205 ); - waveGraph -> move( 10, 32 ); + waveGraph -> move( 10, 6 ); waveGraph -> setModel( &_controls -> m_wavegraphModel ); waveGraph -> setAutoFillBackground( true ); pal = QPalette(); pal.setBrush( backgroundRole(), PLUGIN_NAME::getIconPixmap("wavegraph") ); waveGraph->setPalette( pal ); - waveGraph->setGraphColor( QColor( 170, 255, 255 ) ); + waveGraph->setGraphColor( QColor( 85, 204, 145 ) ); waveGraph -> setMaximumSize( 204, 205 ); Knob * inputKnob = new Knob( knobBright_26, this); inputKnob -> setVolumeKnob( true ); inputKnob -> setVolumeRatio( 1.0 ); - inputKnob -> move( 14, 251 ); + inputKnob -> move( 26, 223 ); inputKnob->setModel( &_controls->m_inputModel ); inputKnob->setLabel( tr( "INPUT" ) ); inputKnob->setHintText( tr( "Input gain:" ) , "" ); @@ -68,19 +68,19 @@ dynProcControlDialog::dynProcControlDialog( Knob * outputKnob = new Knob( knobBright_26, this ); outputKnob -> setVolumeKnob( true ); outputKnob -> setVolumeRatio( 1.0 ); - outputKnob -> move( 54, 251 ); + outputKnob -> move( 76, 223 ); outputKnob->setModel( &_controls->m_outputModel ); outputKnob->setLabel( tr( "OUTPUT" ) ); outputKnob->setHintText( tr( "Output gain:" ) , "" ); Knob * attackKnob = new Knob( knobBright_26, this); - attackKnob -> move( 11, 291 ); + attackKnob -> move( 24, 268 ); attackKnob->setModel( &_controls->m_attackModel ); attackKnob->setLabel( tr( "ATTACK" ) ); attackKnob->setHintText( tr( "Peak attack time:" ) , "ms" ); Knob * releaseKnob = new Knob( knobBright_26, this ); - releaseKnob -> move( 52, 291 ); + releaseKnob -> move( 74, 268 ); releaseKnob->setModel( &_controls->m_releaseModel ); releaseKnob->setLabel( tr( "RELEASE" ) ); releaseKnob->setHintText( tr( "Peak release time:" ) , "ms" ); @@ -88,51 +88,51 @@ dynProcControlDialog::dynProcControlDialog( //waveform control buttons PixmapButton * resetButton = new PixmapButton( this, tr("Reset waveform") ); - resetButton -> move( 164, 251 ); - resetButton -> resize( 12, 48 ); + resetButton -> move( 162, 223 ); + resetButton -> resize( 13, 48 ); resetButton -> setActiveGraphic( PLUGIN_NAME::getIconPixmap( "reset_active" ) ); resetButton -> setInactiveGraphic( PLUGIN_NAME::getIconPixmap( "reset_inactive" ) ); ToolTip::add( resetButton, tr( "Click here to reset the wavegraph back to default" ) ); PixmapButton * smoothButton = new PixmapButton( this, tr("Smooth waveform") ); - smoothButton -> move( 164, 267 ); - smoothButton -> resize( 12, 48 ); + smoothButton -> move( 162, 239 ); + smoothButton -> resize( 13, 48 ); smoothButton -> setActiveGraphic( PLUGIN_NAME::getIconPixmap( "smooth_active" ) ); smoothButton -> setInactiveGraphic( PLUGIN_NAME::getIconPixmap( "smooth_inactive" ) ); ToolTip::add( smoothButton, tr( "Click here to apply smoothing to wavegraph" ) ); PixmapButton * addOneButton = new PixmapButton( this, tr("Increase wavegraph amplitude by 1dB") ); - addOneButton -> move( 133, 251 ); - addOneButton -> resize( 12, 29 ); + addOneButton -> move( 131, 223 ); + addOneButton -> resize( 13, 29 ); addOneButton -> setActiveGraphic( PLUGIN_NAME::getIconPixmap( "add1_active" ) ); addOneButton -> setInactiveGraphic( PLUGIN_NAME::getIconPixmap( "add1_inactive" ) ); ToolTip::add( addOneButton, tr( "Click here to increase wavegraph amplitude by 1dB" ) ); PixmapButton * subOneButton = new PixmapButton( this, tr("Decrease wavegraph amplitude by 1dB") ); - subOneButton -> move( 133, 267 ); - subOneButton -> resize( 12, 29 ); + subOneButton -> move( 131, 239 ); + subOneButton -> resize( 13, 29 ); subOneButton -> setActiveGraphic( PLUGIN_NAME::getIconPixmap( "sub1_active" ) ); subOneButton -> setInactiveGraphic( PLUGIN_NAME::getIconPixmap( "sub1_inactive" ) ); ToolTip::add( subOneButton, tr( "Click here to decrease wavegraph amplitude by 1dB" ) ); //stereomode switches PixmapButton * smMaxButton = new PixmapButton( this, tr( "Stereomode Maximum" ) ); - smMaxButton -> move( 165, 290 ); - smMaxButton -> resize( 48, 13 ); + smMaxButton -> move( 131, 257 ); + smMaxButton -> resize( 78, 17 ); smMaxButton -> setActiveGraphic( PLUGIN_NAME::getIconPixmap( "max_active" ) ); smMaxButton -> setInactiveGraphic( PLUGIN_NAME::getIconPixmap( "max_inactive" ) ); ToolTip::add( smMaxButton, tr( "Process based on the maximum of both stereo channels" ) ); PixmapButton * smAvgButton = new PixmapButton( this, tr( "Stereomode Average" ) ); - smAvgButton -> move( 165, 290 + 13 ); - smAvgButton -> resize( 48, 13 ); + smAvgButton -> move( 131, 274 ); + smAvgButton -> resize( 78, 16 ); smAvgButton -> setActiveGraphic( PLUGIN_NAME::getIconPixmap( "avg_active" ) ); smAvgButton -> setInactiveGraphic( PLUGIN_NAME::getIconPixmap( "avg_inactive" ) ); ToolTip::add( smAvgButton, tr( "Process based on the average of both stereo channels" ) ); PixmapButton * smUnlButton = new PixmapButton( this, tr( "Stereomode Unlinked" ) ); - smUnlButton -> move( 165, 290 + (13*2) ); - smUnlButton -> resize( 48, 13 ); + smUnlButton -> move( 131, 290 ); + smUnlButton -> resize( 78, 17 ); smUnlButton -> setActiveGraphic( PLUGIN_NAME::getIconPixmap( "unl_active" ) ); smUnlButton -> setInactiveGraphic( PLUGIN_NAME::getIconPixmap( "unl_inactive" ) ); ToolTip::add( smUnlButton, tr( "Process each stereo channel independently" ) ); diff --git a/plugins/dynamics_processor/max_active.png b/plugins/dynamics_processor/max_active.png index 30bb7429eda..b8dffcd9072 100644 Binary files a/plugins/dynamics_processor/max_active.png and b/plugins/dynamics_processor/max_active.png differ diff --git a/plugins/dynamics_processor/max_inactive.png b/plugins/dynamics_processor/max_inactive.png index 0b556b2ee9c..15712cc688d 100644 Binary files a/plugins/dynamics_processor/max_inactive.png and b/plugins/dynamics_processor/max_inactive.png differ diff --git a/plugins/dynamics_processor/reset_active.png b/plugins/dynamics_processor/reset_active.png old mode 100644 new mode 100755 index 7bb3957eec9..915e2aede9d Binary files a/plugins/dynamics_processor/reset_active.png and b/plugins/dynamics_processor/reset_active.png differ diff --git a/plugins/dynamics_processor/reset_inactive.png b/plugins/dynamics_processor/reset_inactive.png old mode 100644 new mode 100755 index 5c3955b2be8..b23b4852030 Binary files a/plugins/dynamics_processor/reset_inactive.png and b/plugins/dynamics_processor/reset_inactive.png differ diff --git a/plugins/dynamics_processor/smooth_active.png b/plugins/dynamics_processor/smooth_active.png old mode 100644 new mode 100755 index a44bef32d84..29e88083460 Binary files a/plugins/dynamics_processor/smooth_active.png and b/plugins/dynamics_processor/smooth_active.png differ diff --git a/plugins/dynamics_processor/smooth_inactive.png b/plugins/dynamics_processor/smooth_inactive.png old mode 100644 new mode 100755 index eb689a500c8..c924b58cfff Binary files a/plugins/dynamics_processor/smooth_inactive.png and b/plugins/dynamics_processor/smooth_inactive.png differ diff --git a/plugins/dynamics_processor/sub1_active.png b/plugins/dynamics_processor/sub1_active.png old mode 100644 new mode 100755 index b82eb2585dd..434baca3281 Binary files a/plugins/dynamics_processor/sub1_active.png and b/plugins/dynamics_processor/sub1_active.png differ diff --git a/plugins/dynamics_processor/sub1_inactive.png b/plugins/dynamics_processor/sub1_inactive.png old mode 100644 new mode 100755 index 075239fd483..a766e6a1914 Binary files a/plugins/dynamics_processor/sub1_inactive.png and b/plugins/dynamics_processor/sub1_inactive.png differ diff --git a/plugins/dynamics_processor/unl_active.png b/plugins/dynamics_processor/unl_active.png index 9b534b8715e..69a5e41471d 100644 Binary files a/plugins/dynamics_processor/unl_active.png and b/plugins/dynamics_processor/unl_active.png differ diff --git a/plugins/dynamics_processor/unl_inactive.png b/plugins/dynamics_processor/unl_inactive.png index 850b7077bef..fe87cd6d84e 100644 Binary files a/plugins/dynamics_processor/unl_inactive.png and b/plugins/dynamics_processor/unl_inactive.png differ diff --git a/plugins/dynamics_processor/wavegraph.png b/plugins/dynamics_processor/wavegraph.png old mode 100644 new mode 100755 index 650fcec0238..e7999b1afa8 Binary files a/plugins/dynamics_processor/wavegraph.png and b/plugins/dynamics_processor/wavegraph.png differ