blob: 21deb79aa93a54b0bd986a037c18ada56c674940 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
// license:BSD-3-Clause
// copyright-holders:Vas Crabb
//============================================================
//
// pointsviewer.h - MacOS X Cocoa debug window handling
//
//============================================================
#import "debugosx.h"
#import "debugwindowhandler.h"
#import <Cocoa/Cocoa.h>
@class MAMEDebugConsole;
@interface MAMEPointsViewer : MAMEAuxiliaryDebugWindowHandler
{
NSTabView *tabs;
NSPopUpButton *subviewButton;
}
- (id)initWithMachine:(running_machine &)m console:(MAMEDebugConsole *)c;
- (IBAction)changeSubview:(id)sender;
- (void)saveConfigurationToNode:(util::xml::data_node *)node;
- (void)restoreConfigurationFromNode:(util::xml::data_node const *)node;
@end
|