Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Initial import of MEWUI to MAME [Dankan1890] | 2016-02-04 | 1 | -96/+107 | |
| | |||||
* | Do not read the load/save state filename while sequence is still pressed | 2016-02-02 | 1 | -0/+1 | |
| | | | | | | | Fixes the issue where, if the save state button was bound to something that was a legal save state input, it would occasionally immediately save the state onto the same button as "save state" input itself was bound. | ||||
* | removed auto_bitmap_ind*_alloc and auto_bitmap_rgb32_alloc and replaced with ↵ | 2015-12-17 | 1 | -1/+1 | |
| | | | | | | | std::unique_ptr (nw) auto_alloc_array to unique_ptr Added make_unique_clear | ||||
* | clang-modernize part 1 (nw) | 2015-12-03 | 1 | -1/+1 | |
| | |||||
* | lot more updated (nw) | 2015-05-11 | 1 | -5/+2 | |
| | |||||
* | Added dummy license headers for EMU section (nw) | 2015-05-07 | 1 | -0/+2 | |
| | |||||
* | moved all to std::string (nw) | 2015-04-22 | 1 | -4/+4 | |
| | |||||
* | string -> str rename due to future conflicts (nw) | 2015-04-12 | 1 | -1/+1 | |
| | |||||
* | string -> str part 1 (nw) | 2015-04-12 | 1 | -1/+1 | |
| | |||||
* | reverting to classic ui due to lot of issues, as much as I hate reverting ↵ | 2014-04-17 | 1 | -21/+1 | |
| | | | | some else code (nw) | ||||
* | ScrLock no longer is a menu key; it will now enable/disable keyboard menu ↵ | 2014-04-16 | 1 | -0/+3 | |
| | | | | shortcuts | ||||
* | Readding single step capability | 2014-04-15 | 1 | -0/+1 | |
| | |||||
* | Merge of new menubar code | 2014-04-12 | 1 | -1/+17 | |
| | |||||
* | Cleanups and version bumpmame0153 | 2014-04-07 | 1 | -16/+16 | |
| | |||||
* | rest of ATTR_PRINTF review (nw) | 2014-02-25 | 1 | -1/+1 | |
| | |||||
* | Factored out quit/confirmquit logic into ui_manager::request_quit() | 2014-02-23 | 1 | -0/+1 | |
| | |||||
* | Switched rgb_t to a class, replacing macros with methods. Mappings are | 2014-02-19 | 1 | -21/+21 | |
| | | | | | | | | | | | | | | | | | | | as follows: MAKE_RGB(r,g,b) == rgb_t(r,g,b) MAKE_ARGB(a,r,g,b) == rgb_t(a,r,g,b) RGB_ALPHA(data) == data.a() RGB_RED(data) == data.r() RGB_GREEN(data) == data.g() RGB_BLUE(data) == data.b() RGB_BLACK == rgb_t::black RGB_WHITE == rgb_t::white Implicit conversions to/from UINT32 are built in as well as simple addition, subtraction, and scaling (with clamping). As a result of being a class, some stricter typing was needed in a few places but overall not too much. | ||||
* | Minor refactorings | 2014-01-31 | 1 | -0/+4 | |
| | |||||
* | Miscellaneous cleanups to src/emu/ui/menu.?, also added some accessors | 2014-01-30 | 1 | -1/+1 | |
| | |||||
* | Const correctness | 2014-01-30 | 1 | -3/+3 | |
| | |||||
* | Made these handlers static methods | 2014-01-30 | 1 | -0/+8 | |
| | |||||
* | Moved src/emu/ui.? ==> src/emu/ui/ui.?, changed to follow MAME OOP ↵ | 2014-01-29 | 1 | -0/+195 | |
conventions; we now have a ui_manager class |