Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2016-12-11 | citra-qt: Make constructors explicit where applicable | Lioncash | 1 | -1/+1 | |
2016-09-18 | Sources: Run clang-format on everything. | Emmanuel Gil Peyrot | 1 | -2/+0 | |
2015-01-06 | citra-qt: Renamed all .hxx headers to .h | chrisvj | 1 | -0/+0 | |
2014-12-21 | License change | purpasmart96 | 1 | -1/+1 | |
2014-12-09 | citra-qt: Add a utility spinbox class called CSpinBox. | Tony Wasserka | 1 | -0/+88 | |
This class has a few advantages over the regular QSpinBox: - QSpinBox stores its as signed 32 bit integers, which for instance is unsuitable for representing memory addresses. CSpinBox uses 64 bit integers instead. - QSpinBox does not provide an easy way to handle number input from bases different than 10. - QSpinBox is quite inflexible in general and almost any sort of customization requires reimplementing it anyway. |