Created artwork for the artwork tabs.
BIN
data/themes/default/env_lfo_active.png
Normal file
|
After Width: | Height: | Size: 411 B |
BIN
data/themes/default/env_lfo_inactive.png
Normal file
|
After Width: | Height: | Size: 634 B |
BIN
data/themes/default/functions_active.png
Normal file
|
After Width: | Height: | Size: 290 B |
BIN
data/themes/default/functions_inactive.png
Normal file
|
After Width: | Height: | Size: 418 B |
BIN
data/themes/default/fx_active.png
Normal file
|
After Width: | Height: | Size: 230 B |
BIN
data/themes/default/fx_inactive.png
Normal file
|
After Width: | Height: | Size: 378 B |
BIN
data/themes/default/midi_active.png
Normal file
|
After Width: | Height: | Size: 235 B |
BIN
data/themes/default/midi_inactive.png
Normal file
|
After Width: | Height: | Size: 378 B |
BIN
data/themes/default/miscellaneous_active.png
Normal file
|
After Width: | Height: | Size: 242 B |
BIN
data/themes/default/miscellaneous_inactive.png
Normal file
|
After Width: | Height: | Size: 378 B |
BIN
data/themes/default/plugin_active.png
Normal file
|
After Width: | Height: | Size: 300 B |
BIN
data/themes/default/plugin_inactive.png
Normal file
|
After Width: | Height: | Size: 442 B |
@@ -79,7 +79,7 @@ void TabWidget::addTab( QWidget * _w, const QString & _name, const char * pixma
|
||||
if ( pixmapName == NULL ) {
|
||||
w = fontMetrics().width( _name ) + 10;
|
||||
} else {
|
||||
w = 30;
|
||||
w = 28; // artwork's width
|
||||
}
|
||||
|
||||
// Register new tab
|
||||
|
||||
@@ -1434,11 +1434,11 @@ InstrumentTrackWindow::InstrumentTrackWindow( InstrumentTrackView * _itv ) :
|
||||
m_miscView = new InstrumentMiscView( m_track, m_tabWidget );
|
||||
|
||||
|
||||
m_tabWidget->addTab( m_ssView, tr( "ENV/LFO" ), "usr_wave", 1 );
|
||||
m_tabWidget->addTab( instrumentFunctions, tr( "FUNC" ), "sin_wave", 2 );
|
||||
m_tabWidget->addTab( m_effectView, tr( "FX" ), "saw_wave", 3 );
|
||||
m_tabWidget->addTab( m_midiView, tr( "MIDI" ), "round_square_wave", 4 );
|
||||
m_tabWidget->addTab( m_miscView, tr( "MISC" ), "exp_wave", 5 );
|
||||
m_tabWidget->addTab( m_ssView, tr( "ENV/LFO" ), "env_lfo", 1 );
|
||||
m_tabWidget->addTab( instrumentFunctions, tr( "FUNC" ), "functions", 2 );
|
||||
m_tabWidget->addTab( m_effectView, tr( "FX" ), "fx", 3 );
|
||||
m_tabWidget->addTab( m_midiView, tr( "MIDI" ), "midi", 4 );
|
||||
m_tabWidget->addTab( m_miscView, tr( "MISC" ), "miscellaneous", 5 );
|
||||
|
||||
// setup piano-widget
|
||||
m_pianoView = new PianoView( this );
|
||||
@@ -1611,7 +1611,7 @@ void InstrumentTrackWindow::updateInstrumentView()
|
||||
if( m_track->m_instrument != NULL )
|
||||
{
|
||||
m_instrumentView = m_track->m_instrument->createView( m_tabWidget );
|
||||
m_tabWidget->addTab( m_instrumentView, tr( "PLUGIN" ), "moog_saw_wave", 0 );
|
||||
m_tabWidget->addTab( m_instrumentView, tr( "PLUGIN" ), "plugin", 0 );
|
||||
m_tabWidget->setActiveTab( 0 );
|
||||
|
||||
m_ssView->setFunctionsHidden( m_track->m_instrument->flags().testFlag( Instrument::IsSingleStreamed ) );
|
||||
|
||||