RT1050 GUI demo using emWin library

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers CHOOSEFILE.h Source File

CHOOSEFILE.h

00001 /*********************************************************************
00002 *                SEGGER Microcontroller GmbH & Co. KG                *
00003 *        Solutions for real time microcontroller applications        *
00004 **********************************************************************
00005 *                                                                    *
00006 *        (c) 1996 - 2016  SEGGER Microcontroller GmbH & Co. KG       *
00007 *                                                                    *
00008 *        Internet: www.segger.com    Support:  support@segger.com    *
00009 *                                                                    *
00010 **********************************************************************
00011 
00012 ** emWin V5.38 - Graphical user interface for embedded applications **
00013 All  Intellectual Property rights  in the Software belongs to  SEGGER.
00014 emWin is protected by  international copyright laws.  Knowledge of the
00015 source code may not be used to write a similar product.  This file may
00016 only be used in accordance with the following terms:
00017 
00018 The software has been licensed to  NXP Semiconductors USA, Inc.  whose
00019 registered  office  is  situated  at 411 E. Plumeria Drive, San  Jose,
00020 CA 95134, USA  solely for  the  purposes  of  creating  libraries  for
00021 NXPs M0, M3/M4 and  ARM7/9 processor-based  devices,  sublicensed  and
00022 distributed under the terms and conditions of the NXP End User License
00023 Agreement.
00024 Full source code is available at: www.segger.com
00025 
00026 We appreciate your understanding and fairness.
00027 ----------------------------------------------------------------------
00028 Licensing information
00029 
00030 Licensor:                 SEGGER Microcontroller Systems LLC
00031 Licensed to:              NXP Semiconductors, 1109 McKay Dr, M/S 76, San Jose, CA 95131, USA
00032 Licensed SEGGER software: emWin
00033 License number:           GUI-00186
00034 License model:            emWin License Agreement, dated August 20th 2011
00035 Licensed product:         -
00036 Licensed platform:        NXP's ARM 7/9, Cortex-M0,M3,M4
00037 Licensed number of seats: -
00038 ----------------------------------------------------------------------
00039 File        : CHOOSEFILE.h
00040 Purpose     : File dialog interface
00041 --------------------END-OF-HEADER-------------------------------------
00042 */
00043 
00044 #ifndef CHOOSEFILE_H
00045 #define CHOOSEFILE_H
00046 
00047 #include "WM.h"
00048 
00049 #if GUI_WINSUPPORT
00050 
00051 #if defined(__cplusplus)
00052 extern "C" {     /* Make sure we have C-declarations in C++ programs */
00053 #endif
00054 
00055 /*********************************************************************
00056 *
00057 *       Defines
00058 *
00059 **********************************************************************
00060 */
00061 #define CHOOSEFILE_FINDFIRST 0
00062 #define CHOOSEFILE_FINDNEXT  1
00063 
00064 #define CHOOSEFILE_FLAG_DIRECTORY (1 << 0)
00065 
00066 #ifndef   CHOOSEFILE_MAXLEN
00067   #define CHOOSEFILE_MAXLEN 256
00068 #endif
00069 
00070 #define CHOOSEFILE_BI_CANCEL 0
00071 #define CHOOSEFILE_BI_OK     1
00072 #define CHOOSEFILE_BI_UP     2
00073 
00074 /*********************************************************************
00075 *
00076 *       Types
00077 *
00078 **********************************************************************
00079 */
00080 /*********************************************************************
00081 *
00082 *       CHOOSEFILE_INFO
00083 */
00084 typedef struct CHOOSEFILE_INFO CHOOSEFILE_INFO;
00085 
00086 struct CHOOSEFILE_INFO {
00087   int               Cmd;                                 // Command for GetData() function
00088   int               Id;                                  // Id of pressed button (for internal use only)
00089   const char      * pMask;                               // Mask to be used for searching files
00090   char            * pName;                               // (for internal use only)
00091   char            * pExt;                                // (for internal use only)
00092   char            * pAttrib;                             // (for internal use only)
00093   WM_TOOLTIP_HANDLE hToolTip;                            // (for internal use only)
00094   U32               SizeL;                               // FileSize low word
00095   U32               SizeH;                               // FileSize high word
00096   U32               Flags;                               // File flags
00097   char              pRoot[CHOOSEFILE_MAXLEN];            // Buffer used internally and for passing result
00098   int            (* pfGetData)(CHOOSEFILE_INFO * pInfo); // Pointer to GetData() function
00099 };
00100 
00101 /*********************************************************************
00102 *
00103 *       Functions
00104 *
00105 **********************************************************************
00106 */
00107 WM_HWIN CHOOSEFILE_Create(WM_HWIN           hParent,  // Parent window
00108                           int               xPos,     // xPosition in window coordinates
00109                           int               yPos,     // yPosition in window coordinates
00110                           int               xSize,    // xSize in pixels
00111                           int               ySize,    // ySize in pixels
00112                           const char      * apRoot[], // Pointers to root strings
00113                           int               NumRoot,  // Number of roots
00114                           int               SelRoot,  // Root to be selected at first
00115                           const char      * sCaption, // Shown in title bar
00116                           int               Flags,    // Flags for FRAMEWINDOW
00117                           CHOOSEFILE_INFO * pInfo     // Pointer to CHOOSEFILE_INFO structure
00118                           );
00119 
00120 void    CHOOSEFILE_Callback            (WM_MESSAGE * pMsg);
00121 void    CHOOSEFILE_EnableToolTips      (void);
00122 void    CHOOSEFILE_SetButtonText       (WM_HWIN hWin, unsigned ButtonIndex, const char * pText);
00123 void    CHOOSEFILE_SetDefaultButtonText(unsigned ButtonIndex, const char * pText);
00124 void    CHOOSEFILE_SetDelim            (char Delim);
00125 void    CHOOSEFILE_SetToolTips         (const TOOLTIP_INFO * pInfo, int NumItems);
00126 void    CHOOSEFILE_SetTopMode          (unsigned OnOff);
00127 
00128 #if defined(__cplusplus)
00129   }
00130 #endif
00131 
00132 #endif /* GUI_WINSUPPORT */
00133 
00134 #endif /* CHOOSEFILE_H */