~ubuntu-branches/debian/sid/mame/sid

« back to all changes in this revision

Viewing changes to src/emu/uimain.h

  • Committer: Package Import Robot
  • Author(s): Jordi Mallach, Emmanuel Kasper, Jordi Mallach
  • Date: 2012-06-05 20:02:23 UTC
  • mfrom: (0.3.1) (0.1.4)
  • Revision ID: package-import@ubuntu.com-20120605200223-gnlpogjrg6oqe9md
Tags: 0.146-1
[ Emmanuel Kasper ]
* New upstream release
* Drop patch to fix man pages section and patches to link with flac 
  and jpeg system lib: all this has been pushed upstream by Cesare Falco
* Add DM-Upload-Allowed: yes field.

[ Jordi Mallach ]
* Create a "gnu" TARGETOS stanza that defines NO_AFFINITY_NP.
* Stop setting TARGETOS to "unix" in d/rules. It should be autodetected,
  and set to the appropriate value.
* mame_manpage_section.patch: Change mame's manpage section to 6 (games),
  in the TH declaration.

Show diffs side-by-side

added added

removed removed

Lines of Context:
15
15
#define __UIMAIN_H__
16
16
 
17
17
#include "crsshair.h"
 
18
#include "drivenum.h"
18
19
 
19
20
class ui_menu_main : public ui_menu {
20
21
public:
46
47
                CHEAT,
47
48
                MEMORY_CARD,
48
49
                SELECT_GAME,
 
50
                BIOS_SELECTION,
49
51
        };
50
52
};
51
53
 
119
121
        void populate_and_sort(struct input_item_data *itemlist);
120
122
        virtual void update_input(struct input_item_data *seqchangeditem) = 0;
121
123
        void toggle_none_default(input_seq &selected_seq, input_seq &original_seq, const input_seq &selected_defseq);
122
 
        const input_seq &get_field_default_seq(input_field_config *field, input_seq_type seqtype);
123
124
 
124
125
protected:
125
126
        const void *            pollingref;
210
211
 
211
212
        /* internal analog menu item data */
212
213
        struct analog_item_data {
213
 
                input_field_config *field;
 
214
                ioport_field *field;
214
215
                int                                     type;
215
216
                int                                     min, max;
216
217
                int                                     cur;
363
364
        void build_driver_list();
364
365
};
365
366
 
 
367
class ui_menu_bios_selection : public ui_menu {
 
368
public:
 
369
        ui_menu_bios_selection(running_machine &machine, render_container *container);
 
370
        virtual ~ui_menu_bios_selection();
 
371
        virtual void populate();
 
372
        virtual void handle();
 
373
 
 
374
private:
 
375
};
366
376
/* force game select menu */
367
377
void ui_menu_force_game_select(running_machine &machine, render_container *container);
368
378