rtgui_theme.h 1001 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. /*
  2. * File : rtgui_theme.h
  3. * This file is part of RTGUI in 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-04 Bernard first version
  13. */
  14. #ifndef __RTGUI_THEME_H__
  15. #define __RTGUI_THEME_H__
  16. #include <rtgui/rtgui.h>
  17. #include <rtgui/widgets/label.h>
  18. #include <rtgui/widgets/button.h>
  19. #include <rtgui/widgets/textbox.h>
  20. #include <rtgui/widgets/iconbox.h>
  21. #ifdef __cplusplus
  22. extern "C" {
  23. #endif
  24. void rtgui_theme_draw_win(struct rtgui_topwin* win);
  25. void rtgui_theme_draw_button(rtgui_button_t* btn);
  26. void rtgui_theme_draw_label(rtgui_label_t* label);
  27. void rtgui_theme_draw_textbox(rtgui_textbox_t* box);
  28. void rtgui_theme_draw_iconbox(rtgui_iconbox_t* iconbox);
  29. #ifdef __cplusplus
  30. }
  31. #endif
  32. #endif