summaryrefslogtreecommitdiff
path: root/NxWidgets
Commit message (Collapse)AuthorAgeFilesLines
* Update ChangeLogsGregory Nutt2015-04-161-1/+3
|
* Reference to MAX_RAND should be RAND_MAXGregory Nutt2015-04-161-1/+1
|
* Update ChangeLogsGregory Nutt2015-04-161-0/+5
|
* Correct use of the BOARDIOC_GRAPHICS_SETUP boardctl() callGregory Nutt2015-04-161-6/+26
|
* When boardctl() fails, need to print errno not the returned value which will ↵Gregory Nutt2015-04-161-2/+2
| | | | always be -1.
* Prep for 7.9 releaseGregory Nutt2015-04-142-1/+25
|
* Fix several typos in commentsGregory Nutt2015-04-091-1/+1
|
* drawline/drawLine should not take a boolean to select non lines caps or ↵Gregory Nutt2015-04-0511-27/+35
| | | | capping at both ends. drawline/drawLine also needs to be able to put a line cap on one one end of a line
* Update ChangeLogsGregory Nutt2015-04-051-0/+4
|
* Add a 'capped' boolean parameter to all drawline/drawLine functions/methods. ↵Gregory Nutt2015-04-0511-36/+63
| | | | The idea is that this will produce better joining between lines
* Upate ChangeLogsGregory Nutt2015-04-041-2/+4
|
* More renaming: up_lcdinitialize->board_lcd_initialize, ↵Gregory Nutt2015-04-041-8/+11
| | | | up_lcdgetdev->board_lcd_getdev, up_lcduninitialize->board_lcd_uninitialize
* Kconfig files: If external graphics initialization is required, it depends ↵Gregory Nutt2015-03-311-0/+2
| | | | on CONFIG_LIB_BOARDCTL and should set CONFIG_BOARDCTL_GRAPHICS
* Rename up_nxdrvinit() to board_graphics_setup(). Add ↵Gregory Nutt2015-03-311-5/+6
| | | | CONFIG_BOARDCTL_GRAPHICS that will enabled calls to board_graphics_setup() from boardctrl(). In apps/ and NxWidgts/, replace all calls to up_nxdrvinit with calls to boardctl().
* rch_tcinitialize() and arch_tcunitinitialize() renamed to board_tsc_setup() ↵Gregory Nutt2015-03-313-7/+12
| | | | and board_tsc_teardown(). These are not long called directly by applications but only indirectly throught the crappy boardctl() OS interface.
* Preparing for NuttX-7.6 ReleaseGregory Nutt2014-11-262-3/+22
|
* Cosmetic update to commentsGregory Nutt2014-10-122-8/+7
|
* Update ChangeLogGregory Nutt2014-10-081-0/+5
|
* Fix files under NxWidgets to use the corrected syslog interfacesGregory Nutt2014-10-0842-368/+241
|
* Fix typos in release notesGregory Nutt2014-09-271-2/+2
|
* Update ReleaseNotes in preparation for the 7.5 releaseGregory Nutt2014-09-271-0/+17
|
* Update ChangeLogs in preparation for the 7.5 releaseGregory Nutt2014-09-271-1/+3
|
* Changes to get an NxWM configuration building correctly after all of the ↵Gregory Nutt2014-09-202-1/+2
| | | | naming changes
* More naming changes to get the stm3240g-eval/nxterm configuration building againGregory Nutt2014-09-204-49/+49
|
* Update ChangeLogGregory Nutt2014-09-2014-93/+96
|
* Change all references to NxConsole to NxTermGregory Nutt2014-09-2010-109/+109
|
* Rename CONFIG_EXAMPLES_NXCONSOLE to CONFIG_EXAMPLES_NXTERM; rename ↵Gregory Nutt2014-09-206-54/+54
| | | | CONFIG_NXWM_NXCONSOLE to CONFIG_NXWM_NXTERM
* Rename CONFIG_NXCONSOLE* to CONFIG_NXTERM*Gregory Nutt2014-09-2011-24/+24
|
* Remove final traces of the 8015 from the NuttX source treeGregory Nutt2014-09-012-2/+2
|
* Rename CONFIG_NUTTX_KERNEL to CONFIG_BUILD_PROTECTED; Partially integrate ↵Gregory Nutt2014-08-291-2/+2
| | | | new CONFIG_BUILD_KERNEL
* SAM4E-EK: Add an NxWM configurationGregory Nutt2014-08-201-1/+1
|
* Update ChangeLogs and ReleaseNotes for 7.4 release (not complete)Gregory Nutt2014-08-142-2/+73
|
* Update ChangeLogs and ReleaseNotes for 7.4 release (not complete)Gregory Nutt2014-08-141-1/+3
|
* NSH Networking: Software assigned MAC address is now configurable. From LazloGregory Nutt2014-08-061-0/+1
|
* Update ChangeLogGregory Nutt2014-07-301-0/+4
|
* dd support for a USB keyboard as the NxConsole and text widget input. Not ↵Gregory Nutt2014-07-304-46/+255
| | | | fully functional as of this initial check-in. Basic functionality is there, but there are conditions were the keyboard gets lost.
* Update TODO listGregory Nutt2014-07-301-14/+12
|
* Update TODO listi and READMEGregory Nutt2014-07-291-64/+39
|
* Update ChangeLogsGregory Nutt2014-07-281-0/+3
|
* NxWM::CMediaPlayer: Add a CLabel that show the current fast forward/rewind speedGregory Nutt2014-07-282-8/+126
|
* NXWidgets::CNxWidget: Remove an unused bit fieldGregory Nutt2014-07-283-32/+43
|
* Update ChangeLogsGregory Nutt2014-07-271-0/+2
|
* CNxWM::CMediaPlayer: Correct handling of increments to sub-sampling rateGregory Nutt2014-07-272-22/+23
|
* NxWM::CMediaPlayer: successive presses on fast forward or rewind button now ↵Gregory Nutt2014-07-272-17/+47
| | | | increase the subsampling, wrapping back to 2X when the maximum of 16x is reached.
* Updated ChangeLogGregory Nutt2014-07-271-0/+3
|
* NxWM::CMediaPlayer: Need to remember last text box selection or else each ↵Gregory Nutt2014-07-272-1/+12
| | | | new Value Change event from the volume slider is confused with a new file selection
* NxWM: Fix default ICON name. g_playBitmap24x24 does not exist, should be ↵Gregory Nutt2014-07-251-3/+3
| | | | g_playBitmap
* Update ChangeLogsGregory Nutt2014-07-251-0/+3
|
* NxWM::CMediaPlayer: Revise state logic. We need an additional state for the ↵Gregory Nutt2014-07-252-58/+98
| | | | case where a file is selected, but playing has not yet start. Several other state-related fixes
* NxWM:CMediaPlayer: Fix some string handling and memory allocation errorsGregory Nutt2014-07-241-7/+8
|