summaryrefslogtreecommitdiff
path: root/NxWidgets
Commit message (Collapse)AuthorAgeFilesLines
* Fix missing right parenthesis in conditional compilation; Also, should use ↵Gregory Nutt2014-07-231-16/+16
| | | | strcasecmp vs. strcmp when comparing for matches in extension
* Update ChangeLogsGregory Nutt2014-07-231-0/+4
|
* NxWM::CMediaPlayer: Add logic to read files from the media mountpoint, ↵Gregory Nutt2014-07-231-19/+80
| | | | filter them by extension, and display the file names in the listbox
* NxWM: Add configuration options to filter CMediaPlayer files based on extensionGregory Nutt2014-07-231-18/+80
|
* Update ChangeLogGregory Nutt2014-07-221-1/+13
|
* Make CNxTimer stop itself before destruction. Otherwise a call to an ↵Gregory Nutt2014-07-221-0/+1
| | | | invalid work queue entry may occur. From Petteri Aimonen
* Make CTabPanel raise action event when tab is changed. Also add a function ↵Gregory Nutt2014-07-222-4/+12
| | | | for getting the currently selected tab index. From Petteri Aimonen
* NxWidgets::CTabPanel: Modify behavior in showPage() method. Eliminate a ↵Gregory Nutt2014-07-221-7/+4
| | | | duplicate redraw that caused flickering; re-order some logic so that widgets are hidden before operated on. From Petteri Aimonen
* NxWidgets::CTaskbar: Fix type of return value fromopenRawWindow() method. ↵Gregory Nutt2014-07-221-2/+2
| | | | From Petteri Aimonen
* NxWidgets::CNxString: Make destructor virtual. From Petteri AimonenGregory Nutt2014-07-221-1/+1
|
* NxWidgets: Fix a typo in the Kconfig fileGregory Nutt2014-07-211-1/+1
|
* Cosmet updates to some commentsGregory Nutt2014-07-172-3/+3
|
* NxWM: Increase default priority of mouse and keyboard listener threads. Does ↵Gregory Nutt2014-07-174-14/+25
| | | | not seem to make any difference but still seems like a good idea
* Update ChangeLogsGregory Nutt2014-07-171-0/+3
|
* NxWM::CApplicationWindow: Created the custom font for the toolbar title, ↵Gregory Nutt2014-07-175-0/+10
| | | | but never used it.
* Update ChangeLogGregory Nutt2014-07-171-0/+6
|
* NxWM::CMediaPlayer: Now calculates the volume slider height from the grip ↵Gregory Nutt2014-07-171-7/+13
| | | | image height
* NxWidgets::CGlyphSliderHorizontal: No longer uses a hard-coded slider ↵Gregory Nutt2014-07-176-32/+88
| | | | height; the slider height is now provided as a parameter, replacing the widget height which is now calculated from the glip image height
* Update ChangeLogGregory Nutt2014-07-171-1/+3
|
* NxWM::CMediaPlayer: State variable was left in a bad state and caused some ↵Gregory Nutt2014-07-171-2/+10
| | | | problems down the road
* Update ChangeLogGregory Nutt2014-07-171-0/+4
|
* NxWidgets::CImage: Cannot use ↵Gregory Nutt2014-07-171-12/+29
| | | | NxWidgets::CGraphicsPort:drawBitmapGreyScale() because it does not respect transparent or background colors in its current form. The end result is that makes the image background grey as well as the image
* Update ChangeLogGregory Nutt2014-07-171-0/+8
|
* Cosmetic.. include cstdint instead of stdint.h, et alGregory Nutt2014-07-171-2/+2
|
* NxWM::CMediaPlayer: Fix some state-related bugs introduced yesterday. ↵Gregory Nutt2014-07-172-74/+136
| | | | Improved state-related button displayes. Now correctly catches and handles file selection events
* NxWidgets::CImage: Should not attempt to draw the empty regions at the top ↵Gregory Nutt2014-07-171-23/+7
| | | | and the bottom of the image box in greyscale
* NxWidgets::CGraphicsPort: Fix drawBitmapGreyScale method. Actually drew ↵Gregory Nutt2014-07-171-6/+12
| | | | nothing because of several errors in positioning and buffer usage
* MXT driver: Fix error in thread test... backward logicGregory Nutt2014-07-161-2/+0
|
* Misc changes related to MediaPlayer. Nothing really significantGregory Nutt2014-07-1610-80/+120
|
* Rename CONFIG_NX_MOUSE to CONFIG_NX_INPUT, then add CONFIG_NX_XYINPUT_MOUSE ↵Gregory Nutt2014-07-1610-14/+15
| | | | and CONFIG_XYINPUT_TOUCHSCREEN
* Use cstdint, etc. vs stdint.h, etc.Gregory Nutt2014-07-166-10/+11
|
* Update changelogGregory Nutt2014-07-161-1/+3
|
* NxWM::CMediaPlayer: Convert CLabel to a CListBoxGregory Nutt2014-07-168-58/+203
|
* update changelogGregory Nutt2014-07-161-0/+5
|
* NxWM::CMediaPlayer: Fix of state related bugs + Size if CLabel is increased ↵Gregory Nutt2014-07-1616-195/+328
| | | | (in preparation for becoming a CListBox)
* NxWM::CMediaPlayer: Fix of state related bugs + Size if CLabel is increased ↵Gregory Nutt2014-07-162-40/+64
| | | | (in preparation for becoming a CListBox)
* NxWM::CMediaPlayer: Fix memory leakGregory Nutt2014-07-162-59/+118
|
* NxWM::CMediaPlayer: Two places where use of play and pause buttons reversedGregory Nutt2014-07-151-30/+30
|
* Update ChangeLogGregory Nutt2014-07-151-2/+1
|
* NxWM::CMediaPlayer: Fix issues with state changes performed on the PreRelese ↵Gregory Nutt2014-07-152-8/+79
| | | | event handler
* NxWM: Cosmetic changes to naming and commentsGregory Nutt2014-07-156-90/+88
|
* Update ChangelogGregory Nutt2014-07-151-0/+3
|
* NxMW::CMediaPlayer now supports a pause buttonGregory Nutt2014-07-153-120/+279
|
* NxWM::CMediaPlayer: Some improved state managementGregory Nutt2014-07-152-73/+188
|
* NxWM::CMediaPlayer: Now uses CStickyImages for fast forward and rewindGregory Nutt2014-07-152-7/+30
|
* Update ChangeLogGregory Nutt2014-07-151-0/+2
|
* NxWidgets::CStickyImage: New image classGregory Nutt2014-07-155-9/+368
|
* NxWM::CMediaPlay: Now receives button eventsGregory Nutt2014-07-152-7/+109
|
* Update media player icons againGregory Nutt2014-07-1511-203/+254
|
* NwWM: Minor clean-up of media player iconGregory Nutt2014-07-142-44/+46
|