rtgui_config.h 1003 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. /*
  2. * File : rtgui_config.h
  3. * This file is part of RT-Thread RTOS
  4. * COPYRIGHT (C) 2006 - 2009, RT-Thread Development Team
  5. *
  6. * The license and distribution terms for this file may be
  7. * found in the file LICENSE in this distribution or at
  8. * http://www.rt-thread.org/license/LICENSE
  9. *
  10. * Change Logs:
  11. * Date Author Notes
  12. * 2009-10-16 Bernard first version
  13. * 2010-02-08 Bernard move some RTGUI options to bsp
  14. */
  15. #ifndef __RTGUI_CONFIG_H__
  16. #define __RTGUI_CONFIG_H__
  17. /* RTGUI options */
  18. /* native running under RT-Thread */
  19. #ifndef RT_USING_DFS
  20. #undef RTGUI_USING_DFS_FILERW
  21. #undef RTGUI_USING_HZ_FILE
  22. #endif
  23. #define RTGUI_USING_WINMOVE
  24. //#define RTGUI_IMAGE_BMP
  25. #define RTGUI_DEFAULT_FONT_SIZE 16
  26. #define RTGUI_SVR_THREAD_PRIORITY 3
  27. #define RTGUI_SVR_THREAD_TIMESLICE 5
  28. #ifdef RTGUI_USING_SMALL_SIZE
  29. #define RTGUI_SVR_THREAD_STACK_SIZE 1024
  30. #else
  31. #define RTGUI_SVR_THREAD_STACK_SIZE 4096
  32. #endif
  33. #endif