--- qsampler/trunk/src/qsamplerMainForm.ui 2005/02/11 15:36:06 371 +++ qsampler/trunk/src/qsamplerMainForm.ui 2005/03/07 17:05:55 428 @@ -1,4 +1,4 @@ - + qsamplerMainForm qsampler - A LinuxSampler Qt GUI Interface. @@ -29,7 +29,7 @@ 0 0 472 - 293 + 296 @@ -75,6 +75,7 @@ + @@ -82,6 +83,7 @@ + @@ -121,7 +123,9 @@ + + @@ -263,7 +267,7 @@ Restart sampler instance - Shift+Ctrl+R + Ctrl+Shift+R @@ -331,45 +335,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 +381,29 @@ + editSetupChannelAction + + + editSetupChannel.png + + + Setup + + + &Setup Channel... + + + Setup channel + + + Setup current sampler channel + + + F2 + + + + viewMenubarAction @@ -469,6 +496,26 @@ + viewDevicesAction + + + true + + + Devices + + + &Devices + + + Device configuration + + + Show/hide the device configuration window + + + + viewOptionsAction @@ -639,6 +686,12 @@ editResetChannel() + editResetAllChannelsAction + activated() + qsamplerMainForm + editResetAllChannels() + + viewMenubarAction toggled(bool) qsamplerMainForm @@ -663,6 +716,12 @@ viewMessages(bool) + viewDevicesAction + activated() + qsamplerMainForm + viewDevices() + + viewOptionsAction activated() qsamplerMainForm @@ -692,12 +751,6 @@ qsamplerMainForm helpAboutQt() - - channelsMenu - aboutToShow() - qsamplerMainForm - channelsMenuAboutToShow() - lscp/client.h @@ -711,6 +764,7 @@ class qsamplerChannel; class qsamplerMessages; class qsamplerChannelStrip; + class qsamplerDeviceForm; qsamplerOptions *m_pOptions; @@ -719,39 +773,42 @@ QString m_sFilename; int m_iUntitled; int m_iDirtyCount; - int m_iChangeCount; lscp_client_t *m_pClient; QProcess *m_pServer; 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 ) stabilizeForm( void ) - channelStripChanged( qsamplerChannelStrip * ) + channelStripChanged( qsamplerChannelStrip *pChannelStrip ) channelsMenuAboutToShow() channelsMenuActivated( int iChannel ) timerSlot( void ) @@ -764,6 +821,7 @@ setup( qsamplerOptions * pOptions ) queryClose( void ) closeEvent( QCloseEvent * pCloseEvent ) + decodeDragFiles( const QMimeSource * pEvent, QStringList & files ) dragEnterEvent( QDragEnterEvent *pDragEnterEvent ) dropEvent( QDropEvent *pDropEvent ) customEvent( QCustomEvent *pCustomEvent ) @@ -777,6 +835,7 @@ closeSession( bool bForce ) loadSessionFile( const QString & sFilename ) saveSessionFile( const QString & sFilename ) + updateSession() updateRecentFiles( const QString & sFilename ) updateRecentFilesMenu( void ) updateInstrumentNames( void ) @@ -794,6 +853,7 @@ createChannelStrip( qsamplerChannel *pChannel ) activeChannelStrip( void ) channelStripAt( int iChannel ) + channelStrip( int iChannelID ) startSchedule( int iStartDelay ) stopSchedule( void ) startServer( void )