summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/ui/devctrl.h
Commit message (Collapse)AuthorAgeFilesLines
* Split UI and frontend part from core [Miodrag Milanovic] Miodrag Milanovic2016-04-231-153/+0
|
* Replace strformat, strprintf and strcatprintf with type-safe steam_format ↵ Vas Crabb2016-02-281-5/+1
| | | | | | | | | and string_format Update MAME to use new function Instantiate ODR-used static constant members Make some of the UI code more localisable Remove use of retired functions in tools
* clang-modernize part 1 (nw) Miodrag Milanovic2015-12-031-2/+2
|
* lot more updated (nw) Miodrag Milanovic2015-05-111-5/+2
|
* Added dummy license headers for EMU section (nw) Miodrag Milanovic2015-05-071-0/+2
|
* moved all to std::string (nw) Miodrag Milanovic2015-04-221-7/+7
|
* Cleanups and version bumpmame0158 Miodrag Milanovic2015-01-281-3/+3
|
* (MESS) ui: fixed a small problem with tape control menu with etabeta782015-01-081-1/+22
| | | | systems with multiple cassette drives attached. nw.
* (MESS) ui: minor improvement to Tape Control menu, so that when etabeta782015-01-081-1/+31
| | | | | | | multiple cassettes are available it is clear which drive controls are displayed (see e.g. sol20 or pet2001 with "-tape2 c2n" slot). also cleaned up some function names and better described the usage of the devctrl.h base class. nw.
* Added serial printer, renamed centronics printer to match. Standardised the ↵ smf-2014-04-161-1/+1
| | | | configuration of rs232 devices. All serial devices are now connected using an rs232 port. [smf]
* Cleanups and version bumpmame0153 Miodrag Milanovic2014-04-071-3/+3
|
* Fix listsamples and one other potential problematic place, and fixed better ↵ Miodrag Milanovic2014-04-031-2/+1
| | | | devctrl (nw)
* you can't count on same iterator you use and no need to cast iterator ↵ Miodrag Milanovic2014-03-131-4/+5
| | | | elements (nw)
* Fix for tape control and bitbanger control in UI (nw) Miodrag Milanovic2014-03-091-5/+5
|
* Switched rgb_t to a class, replacing macros with methods. Mappings are Aaron Giles2014-02-191-4/+4
| | | | | | | | | | | | | | | | | | | 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.
* Refactoring and cleanup of tapectrl.? and bbcontrl.?, created base class Nathan Woods2014-01-231-0/+107