Files
lmms/plugins/stereo_matrix/stereomatrix_control_dialog.cpp
Paul Giblock 02608af089 Add Stereomatrix artwork
git-svn-id: https://lmms.svn.sf.net/svnroot/lmms/trunk/lmms@1213 0778d3d1-df1d-0410-868b-ea421aaaa00d
2008-06-29 15:08:58 +00:00

71 lines
2.1 KiB
C++

/*
* stereomatrix_control_dialog.cpp - control dialog for stereoMatrix-effect
*
* Copyright (c) 2008 Paul Giblock <drfaygo/at/gmail/dot/com>
*
* This file is part of Linux MultiMedia Studio - http://lmms.sourceforge.net
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public
* License along with this program (see COPYING); if not, write to the
* Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301 USA.
*
*/
#include <QtGui/QLayout>
#include <QtGui/QLabel>
#include "stereomatrix_control_dialog.h"
#include "stereomatrix_controls.h"
#include "embed.h"
stereoMatrixControlDialog::stereoMatrixControlDialog(
stereoMatrixControls * _controls ) :
effectControlDialog( _controls )
{
setFixedSize( 105, 115);
setAutoFillBackground( TRUE );
QPalette pal;
pal.setBrush( backgroundRole(),
PLUGIN_NAME::getIconPixmap( "artwork" ) );
setPalette( pal );
knob * llKnob = new knob( knobSmall_17, this );
llKnob->setModel( &_controls->m_llModel );
llKnob->setHintText( tr( "Left to Left Vol:" ) + " ", "" );
llKnob->move( 40, 60 );
knob * lrKnob = new knob( knobSmall_17, this );
lrKnob->setModel( &_controls->m_lrModel );
lrKnob->setHintText( tr( "Left to Right Vol:" ) + " ", "" );
lrKnob->move( 40+28, 60);
knob * rlKnob = new knob( knobSmall_17, this );
rlKnob->setModel( &_controls->m_rlModel );
rlKnob->setHintText( tr( "Right to Left Vol:" ) + " ", "" );
rlKnob->move( 40, 60+28 );
knob * rrKnob = new knob( knobSmall_17, this );
rrKnob->setModel( &_controls->m_rrModel );
rrKnob->setHintText( tr( "Right to Right Vol:" ) + " ", "" );
rrKnob->move( 40+28, 60+28 );
}