2006-12-30 09:57:40 +00:00
|
|
|
//
|
2007-04-27 06:41:34 +00:00
|
|
|
// File: VLSheetViewSelection.mm - Measure selection functionality
|
2006-12-30 09:57:40 +00:00
|
|
|
//
|
2007-04-27 06:41:34 +00:00
|
|
|
// Author(s):
|
|
|
|
//
|
|
|
|
// (MN) Matthias Neeracher
|
|
|
|
//
|
|
|
|
// Copyright © 2006-2007 Matthias Neeracher
|
2006-12-30 09:57:40 +00:00
|
|
|
//
|
|
|
|
|
|
|
|
#import "VLSheetView.h"
|
|
|
|
#import "VLSheetViewSelection.h"
|
|
|
|
#import "VLDocument.h"
|
|
|
|
|
2008-01-16 13:04:01 +00:00
|
|
|
@interface NSMenuItem (VLSetStateToOff)
|
|
|
|
- (void) VLSetStateToOff;
|
|
|
|
@end
|
|
|
|
|
|
|
|
@implementation NSMenuItem (VLSetStateToOff)
|
|
|
|
|
|
|
|
- (void) VLSetStateToOff
|
|
|
|
{
|
|
|
|
[self setState:NSOffState];
|
|
|
|
}
|
|
|
|
|
|
|
|
@end
|
|
|
|
|
2007-01-02 07:09:06 +00:00
|
|
|
//
|
|
|
|
// We're too lazy to properly serialize our private pasteboard format.
|
|
|
|
//
|
|
|
|
static VLSong sPasteboard;
|
|
|
|
|
2006-12-30 09:57:40 +00:00
|
|
|
@implementation VLSheetView (Selection)
|
|
|
|
|
|
|
|
- (void)editSelection
|
|
|
|
{
|
|
|
|
fSelStart = fSelEnd = fCursorMeasure;
|
2008-01-16 13:04:01 +00:00
|
|
|
[self updateMenus];
|
2006-12-30 09:57:40 +00:00
|
|
|
[self setNeedsDisplay:YES];
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void)adjustSelection:(NSEvent *)event
|
|
|
|
{
|
|
|
|
int prevMeasure = fCursorMeasure;
|
|
|
|
switch ([self findRegionForEvent:event]) {
|
|
|
|
case kRegionNote:
|
|
|
|
case kRegionChord:
|
|
|
|
case kRegionLyrics:
|
|
|
|
if (fCursorAt.fNum)
|
|
|
|
++fCursorMeasure;
|
|
|
|
//
|
|
|
|
// Fall through
|
|
|
|
//
|
|
|
|
case kRegionMeasure:
|
2007-01-12 09:04:24 +00:00
|
|
|
fCursorMeasure =
|
|
|
|
std::max(0, std::min<int>(fCursorMeasure, [self song]->CountMeasures()));
|
2006-12-30 09:57:40 +00:00
|
|
|
if (fCursorMeasure > fSelEnd) {
|
|
|
|
fSelEnd = fCursorMeasure;
|
2008-01-16 13:04:01 +00:00
|
|
|
[self updateMenus];
|
2006-12-30 09:57:40 +00:00
|
|
|
[self setNeedsDisplay:YES];
|
|
|
|
} else if (fCursorMeasure < fSelStart) {
|
|
|
|
fSelStart = fCursorMeasure;
|
2008-01-16 13:04:01 +00:00
|
|
|
[self updateMenus];
|
2006-12-30 09:57:40 +00:00
|
|
|
[self setNeedsDisplay:YES];
|
|
|
|
} else if (prevMeasure == fSelEnd && fCursorMeasure<prevMeasure) {
|
|
|
|
fSelEnd = fCursorMeasure;
|
2008-01-16 13:04:01 +00:00
|
|
|
[self updateMenus];
|
2006-12-30 09:57:40 +00:00
|
|
|
[self setNeedsDisplay:YES];
|
|
|
|
} else if (prevMeasure == fSelStart && fCursorMeasure>prevMeasure) {
|
|
|
|
fSelStart = fCursorMeasure;
|
2008-01-16 13:04:01 +00:00
|
|
|
[self updateMenus];
|
2006-12-30 09:57:40 +00:00
|
|
|
[self setNeedsDisplay:YES];
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
fCursorMeasure = prevMeasure;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
fCursorRegion = kRegionMeasure;
|
|
|
|
}
|
|
|
|
|
2008-01-12 23:55:15 +00:00
|
|
|
- (NSRange)sectionsInSelection
|
|
|
|
{
|
|
|
|
NSRange sections;
|
|
|
|
int firstSection;
|
|
|
|
int lastSection;
|
|
|
|
VLSong * song = [self song];
|
|
|
|
|
|
|
|
if (fSelEnd > -1) {
|
|
|
|
firstSection = song->fMeasures[fSelStart].fPropIdx;
|
|
|
|
lastSection = fSelEnd > fSelStart+1 ?
|
|
|
|
song->fMeasures[fSelEnd].fPropIdx : firstSection;
|
|
|
|
} else {
|
|
|
|
firstSection = 0;
|
|
|
|
lastSection = song->fMeasures.back().fPropIdx;
|
|
|
|
}
|
|
|
|
sections.location = firstSection;
|
|
|
|
sections.length = lastSection-firstSection+1;
|
|
|
|
|
|
|
|
return sections;
|
|
|
|
}
|
|
|
|
|
2007-01-21 11:34:56 +00:00
|
|
|
- (BOOL)validateMenuItem:(id) item
|
|
|
|
{
|
|
|
|
SEL action = [item action];
|
|
|
|
if (action == @selector(insertJumpToCoda:))
|
|
|
|
if (fSelStart == fSelEnd) {
|
|
|
|
[item setState:[self song]->fGoToCoda==fSelStart];
|
|
|
|
|
|
|
|
return YES;
|
|
|
|
} else
|
|
|
|
return NO;
|
|
|
|
else if (action == @selector(insertStartCoda:))
|
|
|
|
if (fSelStart == fSelEnd) {
|
|
|
|
[item setState:[self song]->fCoda==fSelStart];
|
|
|
|
|
2007-12-24 00:10:23 +00:00
|
|
|
return YES;
|
|
|
|
} else
|
|
|
|
return NO;
|
|
|
|
else if (action == @selector(insertBreak:))
|
|
|
|
if (fSelStart == fSelEnd && fSelStart > 0) {
|
2007-12-25 13:12:07 +00:00
|
|
|
VLSong * song = [self song];
|
|
|
|
bool checked = fSelStart < song->fMeasures.size();
|
|
|
|
if ([item tag] == 256)
|
|
|
|
checked = checked && song->DoesBeginSection(fSelStart);
|
|
|
|
else
|
|
|
|
checked = checked && song->fMeasures[fSelStart].fBreak == [item tag];
|
|
|
|
[item setState:checked];
|
2007-12-24 00:10:23 +00:00
|
|
|
|
2007-01-21 11:34:56 +00:00
|
|
|
return YES;
|
|
|
|
} else
|
|
|
|
return NO;
|
|
|
|
else
|
|
|
|
return [self validateUserInterfaceItem:item];
|
|
|
|
}
|
|
|
|
|
2006-12-30 09:57:40 +00:00
|
|
|
- (BOOL)validateUserInterfaceItem:(id) item
|
|
|
|
{
|
|
|
|
SEL action = [item action];
|
|
|
|
if (action == @selector(cut:)
|
|
|
|
|| action == @selector(copy:)
|
|
|
|
|| action == @selector(delete:)
|
|
|
|
)
|
|
|
|
return fSelStart < fSelEnd;
|
|
|
|
else if (action == @selector(editRepeat:))
|
|
|
|
return fSelEnd > fSelStart
|
|
|
|
&& [self song]->CanBeRepeat(fSelStart, fSelEnd);
|
|
|
|
else if (action == @selector(editRepeatEnding:))
|
|
|
|
return fSelEnd > fSelStart
|
|
|
|
&& [self song]->CanBeEnding(fSelStart, fSelEnd);
|
|
|
|
else if (action == @selector(paste:))
|
|
|
|
return fSelStart <= fSelEnd;
|
|
|
|
else
|
|
|
|
return YES;
|
|
|
|
}
|
|
|
|
|
|
|
|
- (IBAction)cut:(id)sender
|
|
|
|
{
|
2007-01-02 07:09:06 +00:00
|
|
|
[self copy:sender];
|
|
|
|
[self delete:sender];
|
2006-12-30 09:57:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
- (IBAction)copy:(id)sender
|
|
|
|
{
|
2007-01-02 07:09:06 +00:00
|
|
|
NSPasteboard * pb = [NSPasteboard generalPasteboard];
|
|
|
|
NSString * pbType = [[NSBundle mainBundle] bundleIdentifier];
|
|
|
|
|
|
|
|
[pb declareTypes:[NSArray arrayWithObject:pbType] owner:nil];
|
|
|
|
if ([pb setString:@"whatever" forType:pbType])
|
|
|
|
sPasteboard = [self song]->CopyMeasures(fSelStart, fSelEnd);
|
2006-12-30 09:57:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
- (IBAction)paste:(id)sender
|
|
|
|
{
|
2007-01-02 07:09:06 +00:00
|
|
|
NSPasteboard * pb = [NSPasteboard generalPasteboard];
|
|
|
|
NSString * pbType = [[NSBundle mainBundle] bundleIdentifier];
|
|
|
|
|
|
|
|
if ([pb availableTypeFromArray:[NSArray arrayWithObject:pbType]]) {
|
|
|
|
[[self document] willChangeSong];
|
|
|
|
if (![sender tag]) // Delete on paste, but not on overwrite
|
|
|
|
[self song]->DeleteMeasures(fSelStart, fSelEnd);
|
|
|
|
[self song]->PasteMeasures(fSelStart, sPasteboard, [sender tag]);
|
|
|
|
[[self document] didChangeSong];
|
|
|
|
[self setNeedsDisplay:YES];
|
|
|
|
}
|
2006-12-30 09:57:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
- (IBAction)delete:(id)sender
|
|
|
|
{
|
2007-01-02 07:09:06 +00:00
|
|
|
[[self document] willChangeSong];
|
2007-05-07 04:01:29 +00:00
|
|
|
[self song]->DeleteMeasures(fSelStart, fSelEnd, [sender tag]);
|
2007-01-02 07:09:06 +00:00
|
|
|
[[self document] didChangeSong];
|
|
|
|
[self setNeedsDisplay:YES];
|
2006-12-30 09:57:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
- (IBAction)editRepeat:(id)sender
|
|
|
|
{
|
|
|
|
int volta;
|
|
|
|
[self song]->CanBeRepeat(fSelStart, fSelEnd, &volta);
|
|
|
|
|
|
|
|
[fRepeatMsg setStringValue:
|
|
|
|
[NSString stringWithFormat:@"Repeat measures %d through %d",
|
|
|
|
fSelStart+1, fSelEnd]];
|
|
|
|
[NSApp beginSheet:fRepeatSheet modalForWindow:[self window]
|
|
|
|
modalDelegate:self
|
|
|
|
didEndSelector:@selector(didEndRepeatSheet:returnCode:contextInfo:)
|
|
|
|
contextInfo:nil];
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void)didEndRepeatSheet:(NSWindow *)sheet returnCode:(int)returnCode
|
|
|
|
contextInfo:(void *)ctx
|
|
|
|
{
|
|
|
|
switch (returnCode) {
|
|
|
|
case NSAlertFirstButtonReturn:
|
|
|
|
[[self document] willChangeSong];
|
|
|
|
[self song]->AddRepeat(fSelStart, fSelEnd, [[self document] repeatVolta]);
|
|
|
|
[self setNeedsDisplay:YES];
|
|
|
|
[[self document] didChangeSong];
|
|
|
|
break;
|
|
|
|
case NSAlertThirdButtonReturn:
|
|
|
|
[[self document] willChangeSong];
|
|
|
|
[self song]->DelRepeat(fSelStart, fSelEnd);
|
|
|
|
[[self document] didChangeSong];
|
|
|
|
[self setNeedsDisplay:YES];
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
[sheet orderOut:self];
|
|
|
|
}
|
|
|
|
|
|
|
|
- (IBAction)editRepeatEnding:(id)sender
|
|
|
|
{
|
|
|
|
[self song]->CanBeEnding(fSelStart, fSelEnd, &fVolta, &fVoltaOK);
|
|
|
|
|
|
|
|
[fEndingMsg setStringValue:
|
|
|
|
[NSString stringWithFormat:@"Ending in measures %d through %d applies to repeats:",
|
|
|
|
fSelStart+1, fSelEnd]];
|
|
|
|
|
|
|
|
[NSApp beginSheet:fEndingSheet modalForWindow:[self window]
|
|
|
|
modalDelegate:self
|
|
|
|
didEndSelector:@selector(didEndEndingSheet:returnCode:contextInfo:)
|
|
|
|
contextInfo:nil];
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void)didEndEndingSheet:(NSWindow *)sheet returnCode:(int)returnCode
|
|
|
|
contextInfo:(void *)ctx
|
|
|
|
{
|
|
|
|
switch (returnCode) {
|
|
|
|
case NSAlertFirstButtonReturn:
|
|
|
|
[[self document] willChangeSong];
|
|
|
|
[self song]->AddEnding(fSelStart, fSelEnd, fVolta);
|
|
|
|
[self setNeedsDisplay:YES];
|
|
|
|
[[self document] didChangeSong];
|
|
|
|
break;
|
|
|
|
case NSAlertThirdButtonReturn:
|
|
|
|
[[self document] willChangeSong];
|
|
|
|
[self song]->DelEnding(fSelStart, fSelEnd);
|
|
|
|
[[self document] didChangeSong];
|
|
|
|
[self setNeedsDisplay:YES];
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
[sheet orderOut:self];
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// Data source for endings
|
|
|
|
//
|
2007-04-24 18:32:32 +00:00
|
|
|
- (int)numberOfRowsInTableView:(NSTableView *)aTableView
|
2006-12-30 09:57:40 +00:00
|
|
|
{
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
- (id)tableView:(NSTableView*)tv objectValueForTableColumn:(NSTableColumn *)col
|
2007-04-24 18:32:32 +00:00
|
|
|
row:(int)rowIndex
|
2006-12-30 09:57:40 +00:00
|
|
|
{
|
|
|
|
int mask = [[col identifier] intValue];
|
|
|
|
return (fVoltaOK & mask) ? [NSNumber numberWithBool:(fVolta & mask)] : nil;
|
|
|
|
}
|
|
|
|
|
2007-04-24 18:32:32 +00:00
|
|
|
- (void)tableView:(NSTableView *)tv setObjectValue:(id)val forTableColumn:(NSTableColumn *)col row:(int)rowIndex
|
2006-12-30 09:57:40 +00:00
|
|
|
{
|
|
|
|
int mask = [[col identifier] intValue];
|
|
|
|
|
|
|
|
if ([val boolValue])
|
|
|
|
fVolta |= mask;
|
|
|
|
else
|
|
|
|
fVolta &= ~mask;
|
|
|
|
}
|
|
|
|
|
2007-01-21 11:34:56 +00:00
|
|
|
- (IBAction)insertJumpToCoda:(id)sender
|
|
|
|
{
|
|
|
|
[[self document] willChangeSong];
|
|
|
|
VLSong * song = [self song];
|
|
|
|
if (song->fGoToCoda == fSelStart)
|
|
|
|
song->fGoToCoda = -1;
|
|
|
|
else
|
|
|
|
song->fGoToCoda = fSelStart;
|
|
|
|
[self setNeedsDisplay:YES];
|
|
|
|
[[self document] didChangeSong];
|
|
|
|
}
|
|
|
|
|
|
|
|
- (IBAction)insertStartCoda:(id)sender
|
|
|
|
{
|
|
|
|
[[self document] willChangeSong];
|
|
|
|
VLSong * song = [self song];
|
|
|
|
if (song->fCoda == fSelStart)
|
|
|
|
song->fCoda = -1;
|
|
|
|
else
|
|
|
|
song->fCoda = fSelStart;
|
|
|
|
[self setNeedsDisplay:YES];
|
|
|
|
[[self document] didChangeSong];
|
|
|
|
}
|
|
|
|
|
2007-12-24 00:10:23 +00:00
|
|
|
- (IBAction)insertBreak:(id)sender
|
|
|
|
{
|
|
|
|
[[self document] willChangeSong];
|
|
|
|
VLSong * song = [self song];
|
2007-12-25 13:12:07 +00:00
|
|
|
if ([sender tag] == 256) {
|
|
|
|
if (song->DoesBeginSection(fSelStart))
|
|
|
|
song->DelSection(fSelStart);
|
|
|
|
else
|
|
|
|
song->AddSection(fSelStart);
|
|
|
|
} else {
|
|
|
|
VLMeasure & meas = song->fMeasures[fSelStart];
|
|
|
|
if (meas.fBreak == [sender tag])
|
|
|
|
meas.fBreak = 0;
|
|
|
|
else
|
|
|
|
meas.fBreak = [sender tag];
|
|
|
|
}
|
2007-12-24 00:10:23 +00:00
|
|
|
fNeedsRecalc = kRecalc;
|
|
|
|
[self setNeedsDisplay:YES];
|
|
|
|
[[self document] didChangeSong];
|
|
|
|
}
|
|
|
|
|
2008-01-16 13:04:01 +00:00
|
|
|
inline int KeyModeTag(const VLProperties & prop)
|
|
|
|
{
|
|
|
|
return (prop.fKey << 8) | (prop.fMode & 0xFF);
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void)updateKeyMenu
|
|
|
|
{
|
|
|
|
NSMenu *menu = [fKeyMenu menu];
|
|
|
|
NSRange sections = [self sectionsInSelection];
|
|
|
|
VLSong *song = [self song];
|
|
|
|
|
|
|
|
[[menu itemArray] makeObjectsPerformSelector:@selector(VLSetStateToOff)];
|
|
|
|
int firstTag = KeyModeTag(song->fProperties[sections.location]);
|
|
|
|
[fKeyMenu selectItemWithTag:firstTag];
|
|
|
|
int firstState = NSOnState;
|
|
|
|
while (--sections.length > 0) {
|
|
|
|
int thisTag = KeyModeTag(song->fProperties[++sections.location]);
|
|
|
|
if (thisTag != firstTag) {
|
|
|
|
firstState = NSMixedState;
|
|
|
|
[[menu itemWithTag:thisTag] setState:NSMixedState];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
[[menu itemWithTag:firstTag] setState:firstState];
|
|
|
|
}
|
|
|
|
|
|
|
|
inline int TimeTag(const VLProperties & prop)
|
|
|
|
{
|
|
|
|
return (prop.fTime.fNum << 8) | prop.fTime.fDenom;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
- (void)updateTimeMenu
|
|
|
|
{
|
|
|
|
NSMenu *menu = [fTimeMenu menu];
|
|
|
|
NSRange sections = [self sectionsInSelection];
|
|
|
|
VLSong *song = [self song];
|
|
|
|
|
|
|
|
[[menu itemArray] makeObjectsPerformSelector:@selector(VLSetStateToOff)];
|
|
|
|
int firstTag = TimeTag(song->fProperties[sections.location]);
|
|
|
|
[fTimeMenu selectItemWithTag:firstTag];
|
|
|
|
int firstState = NSOnState;
|
|
|
|
while (--sections.length > 0) {
|
|
|
|
int thisTag = TimeTag(song->fProperties[++sections.location]);
|
|
|
|
if (thisTag != firstTag) {
|
|
|
|
firstState = NSMixedState;
|
|
|
|
[[menu itemWithTag:thisTag] setState:NSMixedState];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
[[menu itemWithTag:firstTag] setState:firstState];
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void)updateDivisionMenu
|
|
|
|
{
|
|
|
|
NSMenu *menu = [fDivisionMenu menu];
|
|
|
|
NSRange sections = [self sectionsInSelection];
|
|
|
|
VLSong *song = [self song];
|
|
|
|
|
|
|
|
[[menu itemArray] makeObjectsPerformSelector:@selector(VLSetStateToOff)];
|
|
|
|
int firstTag = song->fProperties[sections.location].fDivisions;
|
|
|
|
[fDivisionMenu selectItemWithTag:firstTag];
|
|
|
|
int firstState = NSOnState;
|
|
|
|
while (--sections.length > 0) {
|
|
|
|
int thisTag = song->fProperties[++sections.location].fDivisions;
|
|
|
|
if (thisTag != firstTag) {
|
|
|
|
firstState = NSMixedState;
|
|
|
|
[[menu itemWithTag:thisTag] setState:NSMixedState];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
[[menu itemWithTag:firstTag] setState:firstState];
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void)updateMenus
|
|
|
|
{
|
|
|
|
[self updateKeyMenu];
|
|
|
|
[self updateTimeMenu];
|
|
|
|
[self updateDivisionMenu];
|
|
|
|
}
|
|
|
|
|
2006-12-30 09:57:40 +00:00
|
|
|
@end
|