aboutsummaryrefslogtreecommitdiffstats
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
* Make all include paths in ugfx relative.inmarket2015-11-2196-154/+155
| | | | The only include path now needed is for drivers (in particular GDISP drivers)
* Update and then move compiler specific code into its own fileinmarket2015-11-191-0/+905
|
* Merge branch 'master' of https://bitbucket.org/Tectu/ugfxJoel Bodenmann2015-11-184-18/+14
|\
| * Fix endian macro'sinmarket2015-11-182-13/+13
| |
| * More compiler specific stuffinmarket2015-11-182-5/+1
| |
* | Fixing commentJoel Bodenmann2015-11-181-1/+1
|/
* Fixing conflicting type qualifiers for ‘VirtualKeyboard_English1’Joel Bodenmann2015-11-151-1/+1
|
* Removing superfluous paranthesisJoel Bodenmann2015-11-151-1/+1
|
* Fix virtual keyboardWoody Hawthorne2015-11-152-3/+3
|
* Fix (potential) compiler warnings about redefining PIWoody Hawthorne2015-11-151-0/+2
|
* Fixing typo in macrosJoel Bodenmann2015-11-142-3/+3
|
* Fixing vertical center alignment issue when word-wrap is turned onJoel Bodenmann2015-11-141-4/+23
|
* Fix compiler detection for Keil uVision V5inmarket2015-11-122-3/+3
|
* More endian updates. Images should now work for any endian machine even ↵inmarket2015-11-122-12/+85
| | | | strange ones.
* Clean up endian support for images based on new system definesinmarket2015-11-118-207/+150
| | | | Remove deprecated image functions
* Fix grammer errorinmarket2015-11-111-1/+1
|
* More compiler define fixesinmarket2015-11-111-1/+1
|
* Add missing defines and move some config variablesinmarket2015-11-111-46/+40
|
* Revert the use of the new compiler defines as they are not autodetected ↵inmarket2015-11-111-2/+2
| | | | correctly yet
* Fixing compiler errors for non-GCC compilersJoel Bodenmann2015-11-081-4/+12
|
* Adding missing defines for GFX_COMPILER_ARMCC and GFX_COMPILER_KEIL in ↵Joel Bodenmann2015-11-081-1/+2
| | | | gos_options.h
* DoxygenJoel Bodenmann2015-11-071-1/+1
|
* Adding GFX_COMPILER_ARMCC and GFX_COMPILER_KEILJoel Bodenmann2015-11-072-3/+3
|
* DoxygenJoel Bodenmann2015-11-0728-24/+75
|
* Fixing compiler errors for non-GCC compilersJoel Bodenmann2015-11-071-7/+6
|
* Adding rendering functions to label widget to control text justificationJoel Bodenmann2015-11-072-14/+53
|
* Revert "Adding justification parameter to gwinLabelCreate()"Joel Bodenmann2015-11-072-15/+9
| | | | This reverts commit e8a769c3823eef72a9e064d3bf992152ed261ad2.
* Revert "Adding gwinLabelSetJustification() as it costs basically nothing"Joel Bodenmann2015-11-072-19/+0
| | | | This reverts commit 98f360947014dd3ba562190cd654919034f9f176.
* Comment fixJoel Bodenmann2015-11-061-1/+1
|
* Adding gwinLabelSetJustification() as it costs basically nothingJoel Bodenmann2015-11-062-0/+19
|
* Adding justification parameter to gwinLabelCreate()Joel Bodenmann2015-11-062-9/+15
|
* Adding missing GDISP_NEED_CLIP around clipping call in list widget rendererJoel Bodenmann2015-11-061-1/+3
|
* Move the stub font include files so that user projects with custom fonts in ↵inmarket2015-11-063-45/+0
| | | | the old format will work.
* GTimer fix for fast tick rate systemsinmarket2015-11-051-1/+3
|
* Add support for a PreInit Routine to allow early hardware initialisationinmarket2015-11-051-0/+6
|
* Adding missing default value for GFX_NO_INLINEJoel Bodenmann2015-11-041-0/+9
|
* Merged in woodyhawthorne/ugfx (pull request #19)Joel Bodenmann2015-11-041-1/+1
|\ | | | | | | Fixing bug created by commit [86aef59]
| * Fixing bug created by commit [86aef59]Woody Hawthorne2015-11-041-1/+1
| |
* | Fix compiler errors for non-gcc compilers.inmarket2015-11-041-2/+4
| |
* | Handle antialiased font drawing when using word-wrapinmarket2015-11-041-3/+11
|/
* More doxygen improvementsJoel Bodenmann2015-11-0312-158/+200
|
* Doxygen (documenting each built-in rendering function for widgets)Joel Bodenmann2015-11-0315-215/+562
|
* Adding support for ChibiOS/RT 3.x to console widget streamsJoel Bodenmann2015-11-021-0/+11
|
* Fixing previously introduced bug in gdispDrawStringBox()Joel Bodenmann2015-11-021-1/+1
|
* Fixing compiler warningsJoel Bodenmann2015-11-021-2/+10
|
* Fixing bug in mouse/touch calibration codeJoel Bodenmann2015-11-021-2/+5
| | | | Thanks to AndreR
* Fixing word-wrapJoel Bodenmann2015-11-022-4/+3
|
* Fixing compiler warningsJoel Bodenmann2015-10-301-3/+2
| | | | pull-request sent to upstream
* DoxygenJoel Bodenmann2015-10-301-0/+1
|
* Adding word-wrap support for gdispDrawStringBox() and gdispFillStringBox()Joel Bodenmann2015-10-303-5/+65
| | | | Thanks to Koryagin Dmitry for this contribution