Home
last modified time | relevance | path

Searched refs:effectChannel (Results 1 – 14 of 14) sorted by relevance

/dports/audio/tuxguitar/tuxguitar-src-1.2/TuxGuitar/src/org/herac/tuxguitar/gui/mixer/
H A DTGMixerTrackChannel.java22 protected Combo effectChannel; field in TGMixerTrackChannel
44 this.effectChannel = new Combo(parent,SWT.DROP_DOWN | SWT.READ_ONLY); in init()
45 this.effectChannel.setLayoutData(new GridData(GridData.FILL_HORIZONTAL)); in init()
69 this.effectChannel.addSelectionListener(new SelectionAdapter() { in init()
74 …rTrackChannel.this.effectChannels.getChannel(TGMixerTrackChannel.this.effectChannel.getSelectionIn… in init()
93 this.effectChannel.setEnabled(!TuxGuitar.instance().getPlayer().isRunning()); in updateItems()
131 this.effectChannel.removeAll(); in updateEffectChannel()
137 this.effectChannel.add(Integer.toString(TGChannel.DEFAULT_PERCUSSION_CHANNEL)); in updateEffectChannel()
138 this.effectChannel.select(0); in updateEffectChannel()
145 this.effectChannel.add(Integer.toString(i)); in updateEffectChannel()
[all …]
/dports/audio/tuxguitar/tuxguitar-src-1.2/TuxGuitar/src/org/herac/tuxguitar/song/models/
H A DTGChannel.java17 private short effectChannel; field in TGChannel
28 this.effectChannel = 0; in TGChannel()
55 return this.effectChannel; in getEffectChannel()
58 public void setEffectChannel(short effectChannel) { in setEffectChannel() argument
59 this.effectChannel = effectChannel; in setEffectChannel()
/dports/audio/lmms/lmms-1.2.2/src/gui/
H A DFxMixerView.cpp278 FxChannel *fxChannel = Engine::fxMixer()->effectChannel(channelIndex); in FxChannelView()
320 FxChannel* fxChannel = Engine::fxMixer()->effectChannel( index ); in setChannelIndex()
357 thisLine->setToolTip( Engine::fxMixer()->effectChannel( index )->m_name ); in updateFxLine()
452 FxChannel * ch = Engine::fxMixer()->effectChannel( i ); in deleteUnusedChannels()
577 m->effectChannel(0)->m_peakLeft *= Engine::mixer()->masterGain(); in updateFaders()
578 m->effectChannel(0)->m_peakRight *= Engine::mixer()->masterGain(); in updateFaders()
585 if( m->effectChannel(i)->m_peakLeft > opl ) in updateFaders()
587 m_fxChannelViews[i]->m_fader->setPeak_L( m->effectChannel(i)->m_peakLeft ); in updateFaders()
588 m->effectChannel(i)->m_peakLeft = 0; in updateFaders()
595 if( m->effectChannel(i)->m_peakRight > opr ) in updateFaders()
[all …]
/dports/audio/lmms/lmms-1.2.2/src/gui/widgets/
H A DFxLine.cpp95 QString name = Engine::fxMixer()->effectChannel( m_channelIndex )->m_name; in FxLine()
146 QString name = Engine::fxMixer()->effectChannel( m_channelIndex )->m_name; in drawFxLine()
222 …QPointer<CaptionMenu> contextMenu = new CaptionMenu( Engine::fxMixer()->effectChannel( m_channelIn… in contextMenuEvent()
253 m_renameLineEdit->setText( Engine::fxMixer()->effectChannel( m_channelIndex )->m_name ); in renameChannel()
271 if( !newName.isEmpty() && Engine::fxMixer()->effectChannel( m_channelIndex )->m_name != newName ) in renameFinished()
273 Engine::fxMixer()->effectChannel( m_channelIndex )->m_name = newName; in renameFinished()
277 QString name = Engine::fxMixer()->effectChannel( m_channelIndex )->m_name; in renameFinished()
/dports/games/scummvm/scummvm-2.5.1/engines/buried/
H A Dsound.cpp399 int effectChannel = -1; in playSoundEffect() local
401 effectChannel = 1; in playSoundEffect()
403 effectChannel = 0; in playSoundEffect()
404 if (effectChannel == -1) in playSoundEffect()
408 delete _soundData[kEffectsIndexBase + effectChannel]; in playSoundEffect()
409 _soundData[kEffectsIndexBase + effectChannel] = new Sound(); in playSoundEffect()
412 if (!_soundData[kEffectsIndexBase + effectChannel]->load(fileName)) in playSoundEffect()
416 _soundData[kEffectsIndexBase + effectChannel]->_volume = volume; in playSoundEffect()
417 _soundData[kEffectsIndexBase + effectChannel]->_loop = loop; in playSoundEffect()
423 _soundData[kEffectsIndexBase + effectChannel]->start(); in playSoundEffect()
[all …]
/dports/audio/tuxguitar/tuxguitar-src-1.2/TuxGuitar/src/org/herac/tuxguitar/player/base/
H A DMidiSequenceParser.java208 int effectChannel = track.getChannel().getEffectChannel(); in makeNotes() local
213 channel = effectChannel; in makeNotes()
217 if(note.getEffect().isGrace() && effectChannel >= 0 && !percussionTrack ){ in makeNotes()
218 channel = effectChannel; in makeNotes()
232 if(note.getEffect().isTrill() && effectChannel >= 0 && !percussionTrack ){ in makeNotes()
251 if(note.getEffect().isTremoloPicking() && effectChannel >= 0){ in makeNotes()
267 if(note.getEffect().isBend() && effectChannel >= 0 && !percussionTrack ){ in makeNotes()
268 channel = effectChannel; in makeNotes()
273 channel = effectChannel; in makeNotes()
278 channel = effectChannel; in makeNotes()
[all …]
/dports/audio/tuxguitar/tuxguitar-src-1.2/TuxGuitar/src/org/herac/tuxguitar/song/managers/
H A DTGSongManager.java187 short effectChannel = -1; in getFreeChannel() local
194 effectChannel = (effectChannel < 0 && i != normalChannel)?i:effectChannel; in getFreeChannel()
197 if(normalChannel < 0 || effectChannel < 0){ in getFreeChannel()
199 effectChannel = normalChannel; in getFreeChannel()
207 channel.setEffectChannel(effectChannel); in getFreeChannel()
/dports/audio/lmms/lmms-1.2.2/include/
H A DFxMixer.h143 FxChannel * effectChannel( int _ch ) in effectChannel() function
/dports/audio/tuxguitar/tuxguitar-src-1.2/TuxGuitar-gtp/src/org/herac/tuxguitar/io/gtp/
H A DGP3InputStream.java368 int effectChannel = (readInt() - 1);
375 channel.setEffectChannel((short)effectChannel);
H A DGP4InputStream.java383 int effectChannel = (readInt() - 1); in parseRepeatAlternative()
390 channel.setEffectChannel((short)effectChannel); in parseRepeatAlternative()
H A DGP5InputStream.java456 int effectChannel = (readInt() - 1);
463 channel.setEffectChannel((short)effectChannel);
/dports/games/tremulous/tremulous/tremulous-1.1.0-src/src/game/
H A Dg_weapon.c1045 gentity_t *effect = zap->effectChannel; in G_UpdateZapEffect()
1103 zap->effectChannel = G_Spawn( ); in G_CreateNewZap()
1186 G_FreeEntity( zap->effectChannel ); in G_UpdateZaps()
H A Dg_local.h829 gentity_t *effectChannel; member
/dports/audio/lmms/lmms-1.2.2/src/tracks/
H A DInstrumentTrack.cpp1014 Engine::fxMixer()->effectChannel( channelIndex )->m_name = getTrack()->name(); in createFxLine()
1220 FxChannel *fxChannel = Engine::fxMixer()->effectChannel( channelIndex ); in createFxMenu()
1237 FxChannel * currentChannel = Engine::fxMixer()->effectChannel( i ); in createFxMenu()