summaryrefslogtreecommitdiffstats
path: root/src/citra_qt/util (unfollow)
Commit message (Collapse)AuthorFilesLines
2018-01-13Massive removal of unused modulesJames Rowe4-404/+0
2017-01-04Fix some warnings (#2399)Jonathan Hao1-7/+0
2016-12-11citra-qt: Make constructors explicit where applicableLioncash1-1/+1
2016-09-21Use negative priorities to avoid special-casing the self-includeYuri Kunde Schlesner2-2/+2
2016-09-21Remove empty newlines in #include blocks.Emmanuel Gil Peyrot2-5/+3
This makes clang-format useful on those. Also add a bunch of forgotten transitive includes, which otherwise prevented compilation.
2016-09-18Sources: Run clang-format on everything.Emmanuel Gil Peyrot3-46/+29
2016-05-07fixup simple type conversions where possibleAlexander Laties1-1/+1
2015-10-02Add helper function for creating a readable byte size string.archshift2-0/+16
2015-09-11citra_qt: Reorganize headersLioncash2-2/+2
2015-08-26citra-qt: Add a missing header guard to util.hLioncash1-0/+2
2015-08-25citra-qt: Add helper function to get a monospace QFontYuri Kunde Schlesner2-0/+21
2015-04-14citra-qt: Use std::abs() to get the right absolute function for s64.Emmanuel Gil Peyrot1-1/+2
2015-02-11Asserts: break/crash program, fit to style guide; log.h->assert.harchshift1-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.
2015-01-30Silence a few warnings.Rohit Nirmal1-1/+1
2015-01-06citra-qt: Renamed all .hxx headers to .hchrisvj2-1/+1
2014-12-21License changepurpasmart962-2/+2
2014-12-20Clean up some warningsChin1-1/+1
2014-12-13Convert old logging calls to new logging macrosYuri Kunde Schlesner1-1/+1
2014-12-09citra-qt: Add a utility spinbox class called CSpinBox.Tony Wasserka2-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.