Added ScreenHideShow: action

This commit is contained in:
nigel 2002-05-23 12:48:38 +00:00
parent d7c4d7afbf
commit 8bcd6c180e
2 changed files with 9 additions and 1 deletions

View File

@ -61,6 +61,7 @@
- (IBAction) Suspend: (id)sender;
- (IBAction) PowerKey: (id)sender;
- (IBAction) Restart: (id)sender;
- (IBAction) ScreenHideShow:(NSButton *)sender;
- (IBAction) Snapshot: (id)sender;
- (IBAction) SpeedChange: (NSSlider *)sender;
- (IBAction) Resume: (id)sender;

View File

@ -204,6 +204,13 @@
[xPRAM resume];
}
- (IBAction) ScreenHideShow: (NSButton *)sender;
{
WarningSheet(@"Nigel doesn't know how to shrink or grow this window",
@"Maybe you can grab the source code and have a go yourself?",
nil, win);
}
- (IBAction) Snapshot: (id) sender
{
if ( screen == nil || uaeCreated == NO )
@ -427,4 +434,4 @@ uint8 lastXPRAM[XPRAM_SIZE]; // Copy of PRAM
}
}
@end
@end