Home
last modified time | relevance | path

Searched refs:maxNote (Results 1 – 12 of 12) sorted by relevance

/dports/audio/midifile/midifile-988d55b/tools/
H A Dhenonfile.cpp58 int maxNote = 100; // maximum note to play variable
129 if (key > maxNote) { in createHenon()
166 if (key < minNote || key > maxNote) { in storeInMidiFile()
285 maxNote = opts.getInteger("max-note"); in checkOptions()
289 if (maxNote < 0) maxNote = 0; in checkOptions()
290 if (maxNote > 126) maxNote = 126; in checkOptions()
291 if (minNote > maxNote) { in checkOptions()
293 minNote = maxNote; in checkOptions()
294 maxNote = temp; in checkOptions()
/dports/audio/tuxguitar/tuxguitar-src-1.2/TuxGuitar/src/org/herac/tuxguitar/gui/editors/tab/
H A DTGBeatGroup.java28 private TGNoteImpl maxNote; field in TGBeatGroup
39 this.maxNote = null; in TGBeatGroup()
94 if(this.maxNote == null || value > this.maxNote.getRealValue()){ in check()
95 this.maxNote = note; in check()
110 …int min = Math.abs(this.maxNote.getRealValue() - (SCORE_MIDDLE_KEYS[measure.getClef() - 1] - 100)); in finish()
163 }else if(this.maxNote != this.firstMaxNote && this.maxNote != this.lastMaxNote){ in getY2()
164 return (int)(getY1(layout,this.maxNote,key,clef) - upOffset); in getY2()
191 return this.maxNote; in getMaxNote()
H A DTGBeatImpl.java35 private TGNoteImpl maxNote; field in TGBeatImpl
84 return this.maxNote; in getMaxNote()
171 this.maxNote = null; in reset()
178 if(this.maxNote == null || value > this.maxNote.getRealValue()){ in check()
179 this.maxNote = note; in check()
H A DTGVoiceImpl.java34 private TGNoteImpl maxNote; field in TGVoiceImpl
76 return this.maxNote; in getMaxNote()
147 this.maxNote = null; in reset()
160 if(this.maxNote == null || value > this.maxNote.getRealValue()){ in check()
161 this.maxNote = note; in check()
554 …int vY1 = fromY + ( direction == TGBeatGroup.DIRECTION_DOWN ? this.maxNote.getScorePosY() : this.m… in paintScoreBeat()
/dports/audio/tuxguitar/tuxguitar-src-1.2/TuxGuitar/src/org/herac/tuxguitar/gui/editors/matrix/
H A DMatrixEditor.java89 private int maxNote; field in MatrixEditor
285 int value = (this.maxNote - ((int)( (y + scroll - BORDER_HEIGHT) / this.lineHeight)) ); in getValueAt()
330 this.maxNote = 0; in getBuffer()
336 this.maxNote = Math.max(this.maxNote,PERCUSSIONS[i].getValue()); in getBuffer()
343 this.maxNote = Math.max(this.maxNote,(string.getValue() + 20)); in getBuffer()
345 names = new String[this.maxNote - this.minNote + 1]; in getBuffer()
347 names[i] = (NOTE_NAMES[ (this.maxNote - i) % 12] + ((this.maxNote - i) / 12 ) ); in getBuffer()
367 int rows = (this.maxNote - this.minNote); in getBuffer()
428 …float y1 = (fromY + (((this.maxNote - this.minNote) - (note.getRealValue() - this.minNote)) * this… in paintBeat()
496 int y = Math.round( fromY + ((this.maxNote - this.selection) * this.lineHeight) ); in paintSelection()
[all …]
/dports/audio/yoshimi/yoshimi-2.1.2.2/src/
H A Dglobals.h595 maxNote, enumerator
/dports/audio/yoshimi/yoshimi-2.1.2.2/src/UI/
H A DPartUI.fl231 …send_data(0, PART::control::maxNote, tmp, TOPLEVEL::type::Integer, n, UNUSED, TOPLEVEL::insert::ki…
680 send_data(0, PART::control::maxNote, tmp, TOPLEVEL::type::Integer);}
1927 case PART::control::maxNote:
/dports/audio/yoshimi/yoshimi-2.1.2.2/src/Misc/
H A DPart.cpp1840 case PART::control::maxNote: in getLimits()
/dports/audio/yoshimi/yoshimi-2.1.2.2/src/CLI/
H A DCmdInterpreter.cpp2546 …int max = int(readControl(synth, 0, PART::control::maxNote, TOPLEVEL::section::part1 + npart, item… in listCurrentParts()
2630 … int max = int(readControl(synth, 0, PART::control::maxNote, TOPLEVEL::section::part1 + partno)); in listCurrentParts()
5443 cmd = PART::control::maxNote; in commandPart()
/dports/audio/yoshimi/yoshimi-2.1.2.2/src/Interface/
H A DData2Text.cpp1511 case PART::control::maxNote: in resolvePart()
H A DInterChange.cpp3572 case PART::control::maxNote: // always return actual value in commandPart()
/dports/audio/libopenmpt/libopenmpt-0.6.0+release.autotools/soundlib/
H A DSnd_fx.cpp5926 uint32 minNote = NOTE_MIN, maxNote = NOTE_MAX, count = maxNote - minNote + 1; in GetNoteFromPeriod() local