Skip to content

Commit

Permalink
Default filter vaules changed, about box gpl license info
Browse files Browse the repository at this point in the history
  • Loading branch information
curlymorphic committed Mar 27, 2015
1 parent 73e00dc commit 01d1169
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 4 deletions.
2 changes: 1 addition & 1 deletion modules/Demo1/Demo1ModuleControls.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@


Demo1ModuleControls::Demo1ModuleControls(QObject *parent) : ModuleControls( parent ),
cutOffModel(1000, 50, 10000,1, tr( "Cut" ) ),
cutOffModel(10000, 50, 10000,1, tr( "Cut" ) ),
resModel(0.7, 1, 6, 0.1, tr( "Res" ) ),
waveShapeModel( 2, 0 , 4 , 1, tr( "Wave" ) ),
attackModel(1.0, 0.01 , 5 , 0.01, tr( "Atk" ) ),
Expand Down
2 changes: 1 addition & 1 deletion modules/SuperSawer/SuperSawerModuleControls.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@

SuperSawerModuleControls::SuperSawerModuleControls( QObject *parent ) : ModuleControls( parent ),
seperationModel( 0.01f, 0.0f, 0.02f, 0.001f, tr( "Spread" ) ),
cutOffModel(1000.0f, 50.0f, 10000.0f ,1.0f, tr( "Cut" ) ),
cutOffModel(10000.0f, 50.0f, 10000.0f ,1.0f, tr( "Cut" ) ),
resModel(1.0f, 1.0f, 4.0f, 0.1f, tr( "Res" ) ),
attackModel(1.0f, 0.01f , 5.0f , 0.01f, tr( "Atk" ) ),
decayModel(1.0f, 0.01f , 5.0f , 0.01f, tr( "Dcy" ) ),
Expand Down
17 changes: 15 additions & 2 deletions src/gui/About.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -25,13 +25,26 @@

#include <QVBoxLayout>
#include <QLabel>
#include <QScrollArea>

About::About( QWidget *parent ) :
QWidget( parent )
{
QVBoxLayout *vlayout = new QVBoxLayout;
QLabel *title = new QLabel( tr( "About" ) );
QLabel *content = new QLabel( tr( "Involve \n " ) );
QLabel *title = new QLabel( tr( "Involve.\n\n Using Qt framework www.qt.io" ) );
QLabel *content = new QLabel( tr( "Involve synth \n Copyright (C) <2015> <Dave French> \n"
"This program is free software: you can redistribute it and/or modify\n"
"it under the terms of the GNU General Public License as published by\n"
"the Free Software Foundation, either version 3 of the License, or\n"
"(at your option) any later version.\n"

"This program is distributed in the hope that it will be useful,\n"
"but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
"MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n"
"GNU General Public License for more details.\n"

"You should have received a copy of the GNU General Public License\n"
"along with this program. If not, see <http://www.gnu.org/licenses/>. " ) );
vlayout->addWidget( title );
vlayout->addWidget( content);
setLayout( vlayout );
Expand Down

0 comments on commit 01d1169

Please sign in to comment.