Created artwork for the artwork tabs.

This commit is contained in:
Cyrille Bollu
2016-02-18 16:45:30 +01:00
parent 7153709ea5
commit d9964006b7
14 changed files with 7 additions and 7 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 411 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 634 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 290 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 418 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 230 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 378 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 235 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 378 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 242 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 378 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 300 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 442 B

View File

@@ -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

View File

@@ -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 ) );