summaryrefslogtreecommitdiffstats
path: root/src/citra_qt/util (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Use negative priorities to avoid special-casing the self-includeYuri Kunde Schlesner2016-09-212-2/+2
|
* Remove empty newlines in #include blocks.Emmanuel Gil Peyrot2016-09-212-5/+3
| | | | | | | This makes clang-format useful on those. Also add a bunch of forgotten transitive includes, which otherwise prevented compilation.
* Sources: Run clang-format on everything.Emmanuel Gil Peyrot2016-09-183-46/+29
|
* fixup simple type conversions where possibleAlexander Laties2016-05-071-1/+1
|
* Add helper function for creating a readable byte size string.archshift2015-10-022-0/+16
|
* citra_qt: Reorganize headersLioncash2015-09-112-2/+2
|
* citra-qt: Add a missing header guard to util.hLioncash2015-08-261-0/+2
|
* citra-qt: Add helper function to get a monospace QFontYuri Kunde Schlesner2015-08-252-0/+21
|
* citra-qt: Use std::abs() to get the right absolute function for s64.Emmanuel Gil Peyrot2015-04-141-1/+2
|
* Asserts: break/crash program, fit to style guide; log.h->assert.harchshift2015-02-111-3/+2
| | | | | | | Involves making asserts use printf instead of the log functions (log functions are asynchronous and, as such, the log won't be printed in time) As such, the log type argument was removed (printf obviously can't use it, and it's made obsolete by the file and line printing) Also removed some GEKKO cruft.
* Silence a few warnings.Rohit Nirmal2015-01-301-1/+1
|
* citra-qt: Renamed all .hxx headers to .hchrisvj2015-01-062-1/+1
|
* 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.