summaryrefslogtreecommitdiffstats
path: root/src/citra_qt/util (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #291 from purpasmart96/licensebunnei2014-12-212-2/+2
|\ | | | | License change
| * License changepurpasmart962014-12-212-2/+2
| |
* | Clean up some warningsChin2014-12-201-1/+1
|/
* Convert old logging calls to new logging macrosYuri Kunde Schlesner2014-12-131-1/+1
|
* citra-qt: Add a utility spinbox class called CSpinBox.Tony Wasserka2014-12-092-0/+391
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.