apps/ build now supports an 'external' directory
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@4021 42af7a65-404d-4744-a932-0658087f49c3
This commit is contained in:
parent
94a87532e2
commit
cc461fc171
@ -103,7 +103,8 @@ struct nx_callback_s
|
|||||||
* rect - The rectangle that needs to be re-drawn (in window relative
|
* rect - The rectangle that needs to be re-drawn (in window relative
|
||||||
* coordinates)
|
* coordinates)
|
||||||
* more - true: More re-draw requests will follow
|
* more - true: More re-draw requests will follow
|
||||||
* arg - User provided argument (see nx_openwindow, nx_constructwindow)
|
* arg - User provided argument (see nx_openwindow, nx_requestbkgd,
|
||||||
|
* nxtk_openwindow, or nxtk_opentoolbar)
|
||||||
*
|
*
|
||||||
* Returned Value:
|
* Returned Value:
|
||||||
* None
|
* None
|
||||||
@ -127,7 +128,8 @@ struct nx_callback_s
|
|||||||
* the overall display
|
* the overall display
|
||||||
* bounds - The bounding rectangle that the describes the entire
|
* bounds - The bounding rectangle that the describes the entire
|
||||||
* display
|
* display
|
||||||
* arg - User provided argument (see nx_openwindow, nx_constructwindow)
|
* arg - User provided argument (see nx_openwindow, nx_requestbkgd,
|
||||||
|
* nxtk_openwindow, or nxtk_opentoolbar)
|
||||||
*
|
*
|
||||||
* Returned Value:
|
* Returned Value:
|
||||||
* None
|
* None
|
||||||
@ -149,7 +151,8 @@ struct nx_callback_s
|
|||||||
* hwnd - Window handle
|
* hwnd - Window handle
|
||||||
* pos - The (x,y) position of the mouse
|
* pos - The (x,y) position of the mouse
|
||||||
* buttons - See NX_MOUSE_* definitions
|
* buttons - See NX_MOUSE_* definitions
|
||||||
* arg - User provided argument (see nx_openwindow, nx_constructwindow)
|
* arg - User provided argument (see nx_openwindow, nx_requestbkgd,
|
||||||
|
* nxtk_openwindow, or nxtk_opentoolbar)
|
||||||
*
|
*
|
||||||
* Returned Value:
|
* Returned Value:
|
||||||
* None
|
* None
|
||||||
@ -171,7 +174,8 @@ struct nx_callback_s
|
|||||||
* hwnd - Window handle
|
* hwnd - Window handle
|
||||||
* nch - The number of characters that are available in ch[]
|
* nch - The number of characters that are available in ch[]
|
||||||
* ch - The array of characters
|
* ch - The array of characters
|
||||||
* arg - User provided argument (see nx_openwindow, nx_constructwindow)
|
* arg - User provided argument (see nx_openwindow, nx_requestbkgd,
|
||||||
|
* nxtk_openwindow, or nxtk_opentoolbar)
|
||||||
*
|
*
|
||||||
* Returned Value:
|
* Returned Value:
|
||||||
* None
|
* None
|
||||||
@ -458,7 +462,7 @@ EXTERN int nx_closewindow(NXWINDOW hwnd);
|
|||||||
* Input Parameters:
|
* Input Parameters:
|
||||||
* handle - The handle returned by nx_connect
|
* handle - The handle returned by nx_connect
|
||||||
* cb - Callbacks to use for processing background window events
|
* cb - Callbacks to use for processing background window events
|
||||||
* arg - User provided argument (see nx_openwindow, nx_constructwindow)
|
* arg - User provided value that will be returned with NX callbacks.
|
||||||
*
|
*
|
||||||
* Return:
|
* Return:
|
||||||
* OK on success; ERROR on failure with errno set appropriately
|
* OK on success; ERROR on failure with errno set appropriately
|
||||||
@ -703,7 +707,8 @@ int nx_setbgcolor(NXHANDLE handle,
|
|||||||
* Input Parameters:
|
* Input Parameters:
|
||||||
* hwnd - The window within which the move is to be done
|
* hwnd - The window within which the move is to be done
|
||||||
* rect - Describes the rectangular region to move
|
* rect - Describes the rectangular region to move
|
||||||
* offset - The offset to move the region
|
* offset - The offset to move the region. The rectangular region will be
|
||||||
|
* moved so that the origin is translated by this amount.
|
||||||
*
|
*
|
||||||
* Return:
|
* Return:
|
||||||
* OK on success; ERROR on failure with errno set appropriately
|
* OK on success; ERROR on failure with errno set appropriately
|
||||||
|
@ -320,7 +320,8 @@ EXTERN int nxtk_fillcirclewindow(NXWINDOW hfwnd,
|
|||||||
* This must have been previously created by nxtk_openwindow().
|
* This must have been previously created by nxtk_openwindow().
|
||||||
* rect - Describes the rectangular region relative to the client
|
* rect - Describes the rectangular region relative to the client
|
||||||
* sub-window to move
|
* sub-window to move
|
||||||
* offset - The offset to move the region
|
* offset - The offset to move the region. The rectangular region will be
|
||||||
|
* moved so that the origin is translated by this amount.
|
||||||
*
|
*
|
||||||
* Return:
|
* Return:
|
||||||
* OK on success; ERROR on failure with errno set appropriately
|
* OK on success; ERROR on failure with errno set appropriately
|
||||||
@ -516,7 +517,8 @@ EXTERN int nxtk_fillcircletoolbar(NXWINDOW hfwnd,
|
|||||||
* nxtk_openwindow().
|
* nxtk_openwindow().
|
||||||
* rect - Describes the rectangular region relative to the toolbar
|
* rect - Describes the rectangular region relative to the toolbar
|
||||||
* sub-window to move
|
* sub-window to move
|
||||||
* offset - The offset to move the region
|
* offset - The offset to move the region. The rectangular region will be
|
||||||
|
* moved so that the origin is translated by this amount.
|
||||||
*
|
*
|
||||||
* Return:
|
* Return:
|
||||||
* OK on success; ERROR on failure with errno set appropriately
|
* OK on success; ERROR on failure with errno set appropriately
|
||||||
|
Loading…
Reference in New Issue
Block a user