--- qsampler/trunk/src/qsamplerMainForm.ui 2004/11/16 15:26:18 295 +++ qsampler/trunk/src/qsamplerMainForm.ui 2005/08/26 23:04:32 757 @@ -2,7 +2,7 @@ qsamplerMainForm qsampler - A LinuxSampler Qt GUI Interface. - Copyright (C) 2004, rncbc aka Rui Nuno Capela. All rights reserved. + Copyright (C) 2004-2005, rncbc aka Rui Nuno Capela. All rights reserved. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License @@ -29,7 +29,7 @@ 0 0 472 - 293 + 296 @@ -39,7 +39,7 @@ - qsampler + Qsampler qsampler.png @@ -75,6 +75,7 @@ + @@ -82,6 +83,7 @@ + @@ -109,6 +111,8 @@ + + @@ -121,7 +125,9 @@ + + @@ -263,7 +269,7 @@ Restart sampler instance - Shift+Ctrl+R + Ctrl+Shift+R @@ -331,45 +337,45 @@ - editSetupChannelAction + editResetChannelAction - editSetupChannel.png + editResetChannel.png - Setup + Reset - &Setup Channel... + Re&set Channel - Setup channel + Reset channel - Setup current sampler channel + Reset current sampler channel - F2 + - editResetChannelAction + editResetAllChannelsAction - editResetChannel.png + editResetAllChannels.png - Reset + Reset All - Re&set Channel + R&eset All Channels - Reset channel + Reset all channels - Reset current sampler channel + Reset all sampler channels @@ -377,6 +383,29 @@ + editSetupChannelAction + + + editSetupChannel.png + + + Setup + + + &Setup Channel... + + + Setup channel + + + Setup current sampler channel + + + F2 + + + + viewMenubarAction @@ -469,6 +498,32 @@ + viewDevicesAction + + + qsamplerDevice.png + + + true + + + Devices + + + &Devices + + + Device configuration + + + Show/hide the device configuration window + + + F11 + + + + viewOptionsAction @@ -639,6 +694,12 @@ editResetChannel() + editResetAllChannelsAction + activated() + qsamplerMainForm + editResetAllChannels() + + viewMenubarAction toggled(bool) qsamplerMainForm @@ -663,6 +724,12 @@ viewMessages(bool) + viewDevicesAction + activated() + qsamplerMainForm + viewDevices() + + viewOptionsAction activated() qsamplerMainForm @@ -692,12 +759,6 @@ qsamplerMainForm helpAboutQt() - - channelsMenu - aboutToShow() - qsamplerMainForm - channelsMenuAboutToShow() - lscp/client.h @@ -711,6 +772,7 @@ class qsamplerChannel; class qsamplerMessages; class qsamplerChannelStrip; + class qsamplerDeviceForm; qsamplerOptions *m_pOptions; @@ -724,33 +786,38 @@ int m_iStartDelay; int m_iTimerDelay; int m_iTimerSlot; - QLabel *m_status[5]; + QLabel *m_statusItem[5]; QPopupMenu *m_pRecentFilesMenu; + QPtrList<qsamplerChannelStrip> m_changedStrips; + qsamplerDeviceForm *m_pDeviceForm; fileNew( void ) fileOpen( void ) + fileOpenRecent( int iIndex ) fileSave( void ) fileSaveAs( void ) fileReset( void ) fileRestart( void ) fileExit( void ) - fileOpenRecent( int iIndex ) editAddChannel( void ) editRemoveChannel( void ) editSetupChannel( void ) editResetChannel( void ) + editResetAllChannels( void ) viewMenubar( bool bOn ) viewToolbar( bool bOn ) viewStatusbar( bool bOn ) viewMessages( bool bOn ) + viewDevices( void ) viewOptions( void ) channelsArrange( void ) channelsAutoArrange( bool bOn ) helpAboutQt( void ) helpAbout( void ) + sessionDirty( void ) stabilizeForm( void ) - channelStripChanged( qsamplerChannelStrip * ) + channelStripChanged( qsamplerChannelStrip *pChannelStrip ) channelsMenuAboutToShow() channelsMenuActivated( int iChannel ) timerSlot( void ) @@ -763,6 +830,7 @@ setup( qsamplerOptions * pOptions ) queryClose( void ) closeEvent( QCloseEvent * pCloseEvent ) + decodeDragFiles( const QMimeSource * pEvent, QStringList & files ) dragEnterEvent( QDragEnterEvent *pDragEnterEvent ) dropEvent( QDropEvent *pDropEvent ) customEvent( QCustomEvent *pCustomEvent ) @@ -776,8 +844,10 @@ closeSession( bool bForce ) loadSessionFile( const QString & sFilename ) saveSessionFile( const QString & sFilename ) + updateSession() updateRecentFiles( const QString & sFilename ) updateRecentFilesMenu( void ) + updateInstrumentNames( void ) updateDisplayFont( void ) updateDisplayEffect( void ) updateMaxVolume( void ) @@ -789,9 +859,10 @@ updateMessagesFont( void ) updateMessagesLimit( void ) updateMessagesCapture( void ) - createChannelStrip( int iChannelID ) + createChannelStrip( qsamplerChannel *pChannel ) activeChannelStrip( void ) channelStripAt( int iChannel ) + channelStrip( int iChannelID ) startSchedule( int iStartDelay ) stopSchedule( void ) startServer( void )