New vestige artwork

git-svn-id: https://lmms.svn.sf.net/svnroot/lmms/trunk/lmms@1002 0778d3d1-df1d-0410-868b-ea421aaaa00d
This commit is contained in:
Paul Giblock
2008-05-21 00:37:52 +00:00
parent 9ea1c5433a
commit 8bed507c08
5 changed files with 19 additions and 11 deletions

View File

@@ -1,3 +1,11 @@
2008-05-20 Paul Giblock <drfaygo/at/gmail/dot/com>
* plugins/vestige/select_file.png:
* plugins/vestige/logo.png:
* plugins/vestige/vestige.cpp:
* plugins/vestige/artwork.png:
Integrate new vestige artwork
2008-05-21 Tobias Doerffel <tobydox/at/users/dot/sourceforge/dot/net>
* src/core/main.cpp:

Binary file not shown.

Before

Width:  |  Height:  |  Size: 12 KiB

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.5 KiB

After

Width:  |  Height:  |  Size: 4.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@@ -361,11 +361,11 @@ vestigeInstrumentView::vestigeInstrumentView( instrument * _instrument,
m_openPluginButton = new pixmapButton( this, "" );
m_openPluginButton->setCheckable( FALSE );
m_openPluginButton->setCursor( Qt::PointingHandCursor );
m_openPluginButton->move( 200, 70 );
m_openPluginButton->setActiveGraphic( embed::getIconPixmap(
"project_open_down" ) );
m_openPluginButton->setInactiveGraphic( embed::getIconPixmap(
"project_open" ) );
m_openPluginButton->move( 218, 79 );
m_openPluginButton->setActiveGraphic( PLUGIN_NAME::getIconPixmap(
"select_file" ) );
m_openPluginButton->setInactiveGraphic( PLUGIN_NAME::getIconPixmap(
"select_file" ) );
connect( m_openPluginButton, SIGNAL( clicked() ), this,
SLOT( openPlugin() ) );
toolTip::add( m_openPluginButton, tr( "Open other VST-plugin" ) );
@@ -376,7 +376,7 @@ vestigeInstrumentView::vestigeInstrumentView( instrument * _instrument,
"and you can select your file." ) );
m_toggleGUIButton = new QPushButton( tr( "Show/hide VST-GUI" ), this );
m_toggleGUIButton->setGeometry( 20, 120, 160, 24 );
m_toggleGUIButton->setGeometry( 45, 150, 160, 24 );
m_toggleGUIButton->setIcon( embed::getIconPixmap( "zoom" ) );
m_toggleGUIButton->setFont( pointSize<8>( m_toggleGUIButton->font() ) );
connect( m_toggleGUIButton, SIGNAL( clicked() ), this,
@@ -387,7 +387,7 @@ vestigeInstrumentView::vestigeInstrumentView( instrument * _instrument,
QPushButton * note_off_all_btn = new QPushButton( tr( "Turn off all "
"notes" ), this );
note_off_all_btn->setGeometry( 20, 150, 160, 24 );
note_off_all_btn->setGeometry( 45, 180, 160, 24 );
note_off_all_btn->setIcon( embed::getIconPixmap( "state_stop" ) );
note_off_all_btn->setFont( pointSize<8>( note_off_all_btn->font() ) );
connect( note_off_all_btn, SIGNAL( clicked() ), this,
@@ -512,17 +512,17 @@ void vestigeInstrumentView::paintEvent( QPaintEvent * )
QFont f = p.font();
f.setBold( TRUE );
p.setFont( pointSize<10>( f ) );
p.setPen( QColor( 0, 0, 0 ) );
p.setPen( QColor( 32, 160, 54 ) );
p.drawText( 20, 80, plugin_name );
p.drawText( 10, 100, plugin_name );
// m_pluginMutex.lock();
if( m_vi->m_plugin != NULL )
{
p.setPen( QColor( 64, 128, 64 ) );
p.setPen( QColor( 251, 41, 8 ) );
f.setBold( FALSE );
p.setFont( pointSize<8>( f ) );
p.drawText( 20, 94, tr( "by" ) + " " +
p.drawText( 10, 114, tr( "by" ) + " " +
m_vi->m_plugin->vendorString() );
}
// m_pluginMutex.unlock();