~ubuntu-branches/debian/wheezy/mame/wheezy

« back to all changes in this revision

Viewing changes to src/osd/sdl/debugosx.h

  • Committer: Bazaar Package Importer
  • Author(s): Jordi Mallach, Emmanuel Kasper, Félix Arreola Rodríguez, Jordi Mallach
  • Date: 2011-05-11 21:06:50 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20110511210650-jizvh8a6x117y9hr
Tags: 0.142-1
[ Emmanuel Kasper ]
* New upstream release
* Set NOWERROR=1 to allow compiling with gcc-4.6
* Remove fix_powerpc_build.patch, as upstream has taken it in this release
* Add gnome-video-arcade front end as a suggested package

[ Félix Arreola Rodríguez ]
* Add kfreebsd-build.patch to quilt series, to fix build on kfreebsd

[ Jordi Mallach ]
* Remove unneeded and bogus addition of --with-quilt to the dh invocation.
* Add Cesare Falco (long time Ubuntu maintainer) to Uploaders, and wrap
  them into multiple lines.

Show diffs side-by-side

added added

removed removed

Lines of Context:
117
117
 
118
118
+ (NSFont *)defaultFont;
119
119
 
120
 
- (id)initWithFrame:(NSRect)f type:(debug_view_type)t machine:(running_machine *)m;
 
120
- (id)initWithFrame:(NSRect)f type:(debug_view_type)t machine:(running_machine &)m;
121
121
 
122
122
- (void)update;
123
123
 
136
136
{
137
137
}
138
138
 
139
 
- (id)initWithFrame:(NSRect)f machine:(running_machine *)m;
 
139
- (id)initWithFrame:(NSRect)f machine:(running_machine &)m;
140
140
 
141
141
- (NSSize)maximumFrameSize;
142
142
 
164
164
        BOOL    useConsole;
165
165
}
166
166
 
167
 
- (id)initWithFrame:(NSRect)f machine:(running_machine *)m useConsole:(BOOL)uc;
 
167
- (id)initWithFrame:(NSRect)f machine:(running_machine &)m useConsole:(BOOL)uc;
168
168
 
169
169
- (NSSize)maximumFrameSize;
170
170
 
192
192
{
193
193
}
194
194
 
195
 
- (id)initWithFrame:(NSRect)f machine:(running_machine *)m;
 
195
- (id)initWithFrame:(NSRect)f machine:(running_machine &)m;
196
196
 
197
197
- (NSSize)maximumFrameSize;
198
198
 
208
208
{
209
209
}
210
210
 
211
 
- (id)initWithFrame:(NSRect)f machine:(running_machine *)m;
 
211
- (id)initWithFrame:(NSRect)f machine:(running_machine &)m;
212
212
 
213
213
@end
214
214
 
217
217
{
218
218
}
219
219
 
220
 
- (id)initWithFrame:(NSRect)f machine:(running_machine *)m;
 
220
- (id)initWithFrame:(NSRect)f machine:(running_machine &)m;
221
221
 
222
222
@end
223
223
 
231
231
+ (void)addCommonActionItems:(NSMenu *)menu;
232
232
+ (NSPopUpButton *)newActionButtonWithFrame:(NSRect)frame;
233
233
 
234
 
- (id)initWithMachine:(running_machine *)m title:(NSString *)t;
 
234
- (id)initWithMachine:(running_machine &)m title:(NSString *)t;
235
235
 
236
236
- (void)activate;
237
237
 
267
267
        NSTextField                             *commandField;
268
268
}
269
269
 
270
 
- (id)initWithMachine:(running_machine *)m;
 
270
- (id)initWithMachine:(running_machine &)m;
271
271
 
272
272
- (void)setCPU:(device_t *)device;
273
273
 
299
299
 
300
300
+ (void)cascadeWindow:(NSWindow *)window;
301
301
 
302
 
- (id)initWithMachine:(running_machine *)m title:(NSString *)t console:(MAMEDebugConsole *)c;
 
302
- (id)initWithMachine:(running_machine &)m title:(NSString *)t console:(MAMEDebugConsole *)c;
303
303
 
304
304
- (IBAction)debugNewMemoryWindow:(id)sender;
305
305
- (IBAction)debugNewDisassemblyWindow:(id)sender;
318
318
        NSTextField                             *expressionField;
319
319
}
320
320
 
321
 
- (id)initWithMachine:(running_machine *)m title:(NSString *)t console:(MAMEDebugConsole *)c;
 
321
- (id)initWithMachine:(running_machine &)m title:(NSString *)t console:(MAMEDebugConsole *)c;
322
322
 
323
323
- (id <MAMEDebugViewExpressionSupport>)documentView;
324
324
 
334
334
        MAMEMemoryView  *memoryView;
335
335
}
336
336
 
337
 
- (id)initWithMachine:(running_machine *)m console:(MAMEDebugConsole *)c;
 
337
- (id)initWithMachine:(running_machine &)m console:(MAMEDebugConsole *)c;
338
338
 
339
339
- (IBAction)changeSubview:(id)sender;
340
340
 
346
346
        MAMEDisassemblyView     *dasmView;
347
347
}
348
348
 
349
 
- (id)initWithMachine:(running_machine *)m console:(MAMEDebugConsole *)c;
 
349
- (id)initWithMachine:(running_machine &)m console:(MAMEDebugConsole *)c;
350
350
 
351
351
- (IBAction)changeSubview:(id)sender;
352
352
 
358
358
        MAMEErrorLogView        *logView;
359
359
}
360
360
 
361
 
- (id)initWithMachine:(running_machine *)m console:(MAMEDebugConsole *)c;
 
361
- (id)initWithMachine:(running_machine &)m console:(MAMEDebugConsole *)c;
362
362
 
363
363
@end
364
364
 
370
370
//  PROTOTYPES
371
371
//============================================================
372
372
 
373
 
void debugwin_update_during_game(running_machine *machine);
 
373
void debugwin_update_during_game(running_machine &machine);
374
374
 
375
375
 
376
376
#endif // __SDL_DEBUGOSX__