GUIConf.h
上传用户:zbk8730
上传日期:2017-08-10
资源大小:12168k
文件大小:2k
源码类别:

uCOS

开发平台:

C/C++

  1. /*
  2. *********************************************************************************************************
  3. *                                                礐/GUI
  4. *                        Universal graphic software for embedded applications
  5. *
  6. *                       (c) Copyright 2002, Micrium Inc., Weston, FL
  7. *                       (c) Copyright 2000, SEGGER Microcontroller Systeme GmbH          
  8. *
  9. *              礐/GUI is protected by international copyright laws. Knowledge of the
  10. *              source code may not be used to write a similar product. This file may
  11. *              only be used in accordance with a license and should not be redistributed 
  12. *              in any way. We appreciate your understanding and fairness.
  13. *
  14. * File    : GUICONF.H
  15. * Purpose : Configures 礐/GUI abilities, fonts etc.
  16. *
  17. * Version-Date---Author-Explanation
  18. *
  19. * 0.00.00 YYMMDD RS     Initial release
  20. *********************************************************************************************************
  21. */
  22. #ifndef GUICONF_H
  23. #define GUICONF_H
  24. /*********************************************************************
  25. *
  26. *         Configuration of desired functionality
  27. *                                      
  28. **********************************************************************
  29. */
  30. #define GUI_OS                    (1)  /* Compile with multitasking support */
  31. #define GUI_WINSUPPORT            (1)  /* Use window manager if true (1)  */
  32. #define GUI_SUPPORT_MEMDEV        (0)  /* Support memory devices */
  33. #define GUI_SUPPORT_TOUCH         (1)  /* Support a touch screen (req. win-manager) */
  34. /*********************************************************************
  35. *
  36. *         Configuration of dynamic memory
  37. *                                      
  38. **********************************************************************
  39. Dynamic memory is used for memory devices and window manager.
  40. If you do not use these features, there is no need for dynamic memory
  41. and it may be switched off completely. (This section can be erased)
  42. */
  43. #define GUI_ALLOC_SIZE          125000  /* Size of dynamic memory */
  44. /*
  45.         ****************************************
  46.         *                                      *
  47.         * Configuration of available fonts     *
  48.         *                                      *
  49.         ****************************************
  50. */
  51. #define GUI_DEFAULT_FONT    &GUI_FontHZ12
  52. #endif /* GUICONF_H */