mirror of
https://git.code.sf.net/p/fuse-emulator/fuse
synced 2026-01-28 14:20:54 +03:00
132 lines
4.0 KiB
C
132 lines
4.0 KiB
C
/* menu.h: general menu callbacks
|
|
Copyright (c) 2004 Philip Kendall
|
|
|
|
$Id$
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program; if not, write to the Free Software
|
|
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
Author contact information:
|
|
|
|
Philip Kendall <pak21-fuse@srcf.ucam.org>
|
|
Postal address: 15 Crescent Road, Wokingham, Berks, RG40 2DB, England
|
|
|
|
*/
|
|
|
|
#ifndef FUSE_MENU_H
|
|
#define FUSE_MENU_H
|
|
|
|
#include <libspectrum.h>
|
|
|
|
#include "ui/scaler/scaler.h"
|
|
|
|
#ifdef USE_WIDGET
|
|
|
|
#define MENU_CALLBACK( name ) void name( int action )
|
|
#define MENU_CALLBACK_WITH_ACTION( name ) void name( int action )
|
|
|
|
#else /* #ifdef USE_WIDGET */
|
|
|
|
#include <gtk/gtk.h>
|
|
|
|
#define MENU_CALLBACK( name ) void name( GtkWidget *widget, gpointer data )
|
|
#define MENU_CALLBACK_WITH_ACTION( name ) \
|
|
void name( gpointer data, guint action, GtkWidget *widget )
|
|
|
|
#endif /* #ifdef USE_WIDGET */
|
|
|
|
/*
|
|
* Things defined in menu.c
|
|
*/
|
|
|
|
MENU_CALLBACK( menu_file_open );
|
|
MENU_CALLBACK( menu_file_recording_play );
|
|
MENU_CALLBACK( menu_file_aylogging_stop );
|
|
MENU_CALLBACK( menu_file_openscrscreenshot );
|
|
|
|
MENU_CALLBACK_WITH_ACTION( menu_options_selectroms_select );
|
|
MENU_CALLBACK( menu_options_filter );
|
|
MENU_CALLBACK( menu_options_save );
|
|
|
|
MENU_CALLBACK( menu_machine_nmi );
|
|
|
|
MENU_CALLBACK( menu_media_tape_browse );
|
|
MENU_CALLBACK( menu_media_tape_open );
|
|
MENU_CALLBACK( menu_media_tape_play );
|
|
MENU_CALLBACK( menu_media_tape_rewind );
|
|
MENU_CALLBACK( menu_media_tape_clear );
|
|
MENU_CALLBACK( menu_media_tape_write );
|
|
|
|
MENU_CALLBACK_WITH_ACTION( menu_media_disk_insert );
|
|
MENU_CALLBACK_WITH_ACTION( menu_media_disk_eject );
|
|
|
|
MENU_CALLBACK( menu_media_cartridge_timexdock_insert );
|
|
MENU_CALLBACK( menu_media_cartridge_timexdock_eject );
|
|
MENU_CALLBACK( menu_media_cartridge_interfaceii_insert );
|
|
MENU_CALLBACK( menu_media_cartridge_interfaceii_eject );
|
|
|
|
MENU_CALLBACK_WITH_ACTION( menu_media_ide_insert );
|
|
MENU_CALLBACK_WITH_ACTION( menu_media_ide_commit );
|
|
MENU_CALLBACK_WITH_ACTION( menu_media_ide_eject );
|
|
|
|
MENU_CALLBACK( menu_media_ide_zxatasp_upload );
|
|
MENU_CALLBACK( menu_media_ide_zxatasp_writeprotect );
|
|
MENU_CALLBACK( menu_media_ide_zxcf_upload );
|
|
|
|
int menu_open_snap( void );
|
|
|
|
/*
|
|
* Things to be defined elsewhere
|
|
*/
|
|
|
|
/* Direct menu callbacks */
|
|
|
|
MENU_CALLBACK( menu_file_savesnapshot );
|
|
MENU_CALLBACK( menu_file_recording_record );
|
|
MENU_CALLBACK( menu_file_recording_recordfromsnapshot );
|
|
MENU_CALLBACK( menu_file_recording_stop );
|
|
MENU_CALLBACK( menu_file_loadbinarydata );
|
|
MENU_CALLBACK( menu_file_savebinarydata );
|
|
MENU_CALLBACK( menu_file_exit );
|
|
|
|
MENU_CALLBACK( menu_file_aylogging_record );
|
|
|
|
MENU_CALLBACK( menu_file_savescreenasscr );
|
|
MENU_CALLBACK( menu_file_savescreenaspng );
|
|
|
|
MENU_CALLBACK( menu_options_general );
|
|
MENU_CALLBACK( menu_options_sound );
|
|
MENU_CALLBACK( menu_options_peripherals );
|
|
MENU_CALLBACK( menu_options_rzx );
|
|
MENU_CALLBACK( menu_options_joysticks_select );
|
|
|
|
MENU_CALLBACK( menu_machine_pause );
|
|
MENU_CALLBACK( menu_machine_reset );
|
|
MENU_CALLBACK( menu_machine_select );
|
|
MENU_CALLBACK( menu_machine_debugger );
|
|
MENU_CALLBACK( menu_machine_pokefinder );
|
|
MENU_CALLBACK( menu_machine_memorybrowser );
|
|
|
|
MENU_CALLBACK( menu_help_keyboard );
|
|
|
|
/* Called from elsewhere (generally from one of the routines defined
|
|
in menu.c) */
|
|
|
|
int menu_select_roms( libspectrum_machine machine, size_t start,
|
|
size_t count );
|
|
char *menu_get_filename( const char *title );
|
|
scaler_type menu_get_scaler( scaler_available_fn selector );
|
|
|
|
#endif /* #ifndef FUSE_MENU_H */
|