summaryrefslogtreecommitdiff
path: root/src/citra_qt/util (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Massive removal of unused modulesGravatar James Rowe2018-01-124-404/+0
|
* Fix some warnings (#2399)Gravatar Jonathan Hao2017-01-041-7/+0
|
* citra-qt: Make constructors explicit where applicableGravatar Lioncash2016-12-111-1/+1
|
* Use negative priorities to avoid special-casing the self-includeGravatar Yuri Kunde Schlesner2016-09-212-2/+2
|
* Remove empty newlines in #include blocks.Gravatar 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.Gravatar Emmanuel Gil Peyrot2016-09-183-46/+29
|
* fixup simple type conversions where possibleGravatar Alexander Laties2016-05-071-1/+1
|
* Add helper function for creating a readable byte size string.Gravatar archshift2015-10-012-0/+16
|
* citra_qt: Reorganize headersGravatar Lioncash2015-09-112-2/+2
|
* citra-qt: Add a missing header guard to util.hGravatar Lioncash2015-08-251-0/+2
|
* citra-qt: Add helper function to get a monospace QFontGravatar Yuri Kunde Schlesner2015-08-242-0/+21
|
* citra-qt: Use std::abs() to get the right absolute function for s64.Gravatar Emmanuel Gil Peyrot2015-04-141-1/+2
|
* Asserts: break/crash program, fit to style guide; log.h->assert.hGravatar archshift2015-02-101-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.Gravatar Rohit Nirmal2015-01-301-1/+1
|
* citra-qt: Renamed all .hxx headers to .hGravatar chrisvj2015-01-062-1/+1
|
* Merge pull request #291 from purpasmart96/licenseGravatar bunnei2014-12-212-2/+2
|\ | | | | License change
| * License changeGravatar purpasmart962014-12-202-2/+2
| |
* | Clean up some warningsGravatar Chin2014-12-201-1/+1
|/
* Convert old logging calls to new logging macrosGravatar Yuri Kunde Schlesner2014-12-131-1/+1
|
* citra-qt: Add a utility spinbox class called CSpinBox.Gravatar 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.