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

uCOS

开发平台:

C/C++

  1. /*
  2. *********************************************************************************************************
  3. *                                                uC/GUI
  4. *                        Universal graphic software for embedded applications
  5. *
  6. *                       (c) Copyright 2002, Micrium Inc., Weston, FL
  7. *                       (c) Copyright 2002, 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. ----------------------------------------------------------------------
  15. File        : RADIO.c
  16. Purpose     : Template for new emWin GSC widgets
  17. ---------------------------END-OF-HEADER------------------------------
  18. */
  19. #include <stdlib.h>
  20. #include <string.h>
  21. #include "GUI_Private.H"
  22. #include "RADIO.h"
  23. #include "Widget.h"
  24. #if GUI_WINSUPPORT
  25. /*********************************************************************
  26. *
  27. *       Private config defaults
  28. *
  29. **********************************************************************
  30. */
  31. /* Define colors */
  32. #ifndef RADIO_BKCOLOR0_DEFAULT
  33.   #define RADIO_BKCOLOR0_DEFAULT 0xc0c0c0           /* Inactive color */
  34. #endif
  35. #ifndef RADIO_BKCOLOR1_DEFAULT
  36.   #define RADIO_BKCOLOR1_DEFAULT GUI_WHITE          /* Active color */
  37. #endif
  38. /*********************************************************************
  39. *
  40. *       Object definition
  41. *
  42. **********************************************************************
  43. */
  44. typedef struct {
  45.   WIDGET Widget;
  46.   GUI_COLOR aBkColor[2];
  47.   I16 Sel;                   /* current selection */
  48.   I16 Spacing;
  49.   I16 Height;
  50.   I16 NumItems;
  51.   #if GUI_DEBUG_LEVEL >1
  52.     int DebugId;
  53.   #endif  
  54. } RADIO_Obj;
  55. /*********************************************************************
  56. *
  57. *       Static data
  58. *
  59. **********************************************************************
  60. */
  61. static GUI_COLOR _aColor[] = {
  62.      0xC0C0C0,0x808080,0x000000,0xFFFFFF
  63. };
  64. /*********************************************************************
  65. *
  66. *       Static const data
  67. *
  68. **********************************************************************
  69. */
  70. const GUI_LOGPALETTE PalRadio0 = {
  71.   4, /* number of entries */
  72.   0,  /* No transparency */
  73.   &_aColor[0]
  74. };
  75. const unsigned char acRadio0[] = {
  76.   0x00, 0x55, 0x00,
  77.   0x05, 0xAA, 0x50,
  78.   0x1A, 0xFF, 0xAC,
  79.   0x1B, 0xFF, 0xCC,
  80.   0x6F, 0xFF, 0xF3,
  81.   0x6F, 0xFF, 0xF3,
  82.   0x6F, 0xFF, 0xF3,
  83.   0x6F, 0xFF, 0xF3,
  84.   0x1B, 0xFF, 0xCC,
  85.   0x10, 0xFF, 0x0C,
  86.   0x0F, 0x00, 0xF0,
  87.   0x00, 0xFF, 0x00
  88. };
  89. const GUI_BITMAP _bmRadio0 = {
  90.  12, /* XSize */
  91.  12, /* YSize */
  92.  3, /* BytesPerLine */
  93.  2, /* BitsPerPixel */
  94.  acRadio0,  /* Pointer to picture data (indices) */
  95.  &PalRadio0  /* Pointer to palette */
  96. };
  97. const GUI_COLOR ColorsCheck1[] = {
  98.      0xFFFFFF,0x000000
  99. };
  100. const GUI_LOGPALETTE PalCheck1 = {
  101.   2, /* number of entries */
  102.   1,  /* No transparency */
  103.   &ColorsCheck1[0]
  104. };
  105. const unsigned char acCheck1[] = {
  106.   _XX_____,
  107.   XXXX____,
  108.   XXXX____,
  109.   _XX_____
  110. };
  111. const GUI_BITMAP _bmCheck1 = {
  112.  4, /* XSize */
  113.  4, /* YSize */
  114.  1, /* BytesPerLine */
  115.  1, /* BitsPerPixel */
  116.  acCheck1,  /* Pointer to picture data (indices) */
  117.  &PalCheck1  /* Pointer to palette */
  118. };
  119. /*********************************************************************
  120. *
  121. *       Macros for internal use
  122. *
  123. **********************************************************************
  124. */
  125. #define RADIO_ID 0x4544   /* Magic numer, should be unique if possible */
  126. #define RADIO_H2P(h) (RADIO_Obj*) WM_H2P(h)
  127. #ifdef _DEBUG
  128.   #define RADIO_ASSERT_IS_VALID_PTR(p) DEBUG_ERROROUT_IF(p->DebugId != RADIO_ID, "xxx.c: Wrong handle type or Object not init'ed")
  129.   #define RADIO_INIT_ID(p)   p->DebugId = RADIO_ID
  130.   #define RADIO_DEINIT_ID(p) p->DebugId = RADIO_ID+1
  131. #else
  132.   #define RADIO_ASSERT_IS_VALID_PTR(p)
  133.   #define RADIO_INIT_ID(p)
  134.   #define RADIO_DEINIT_ID(p)
  135. #endif
  136. /*********************************************************************
  137. *
  138. *       Static routines
  139. *
  140. **********************************************************************
  141. */
  142. /*********************************************************************
  143. *
  144. *       _Paint
  145. */
  146. static void _Paint(RADIO_Handle hObj, RADIO_Obj* pObj) {
  147.   int IsEnabled;
  148.   int i;
  149.   IsEnabled = WIDGET__IsEnabled(&pObj->Widget);
  150.   /* Clear inside  ... Just in case */
  151.   /* Fill with parents background color */
  152.   GUI_SetBkColor(WIDGET__GetBkColor(hObj));
  153.   GUI_Clear();
  154.   for (i = 0; i < pObj->NumItems; i++) {
  155.     int y = i* pObj->Spacing;
  156.     _aColor[3] = pObj->aBkColor[IsEnabled];
  157.     GUI_DrawBitmap(&_bmRadio0, 2, 2 + y);
  158.     if (pObj->Sel == i) {
  159.       GUI_DrawBitmap(&_bmCheck1, 6, 6 + y);
  160.     }
  161.   }
  162.   if (pObj->Widget.State & WIDGET_STATE_FOCUS) {
  163.     GUI_RECT r;
  164.     WIDGET__GetClientRect(&pObj->Widget, &r);
  165.     GUI_SetColor(GUI_BLACK);
  166.     WIDGET__DrawFocusRect(&pObj->Widget, &r, 0);
  167.   }
  168. }
  169. /*********************************************************************
  170. *
  171. *       _OnTouch
  172. */
  173. static void _OnTouch(RADIO_Handle hObj, RADIO_Obj* pObj, WM_MESSAGE*pMsg) {
  174.   int Notification;
  175.   int Hit = 0;
  176.   GUI_TOUCH_tState* pState = (GUI_TOUCH_tState*)pMsg->Data.p;
  177.   if (pMsg->Data.p) {  /* Something happened in our area (pressed or released) */
  178.     if (pState->Pressed) {
  179.       int y = pState->y;
  180.       int Sel = y / pObj->Spacing;
  181.       y -= Sel * pObj->Spacing;
  182.       if (pObj->Widget.State & WIDGET_STATE_ENABLED) {
  183.         if (y < pObj->Height) {
  184.           RADIO_SetValue(hObj, Sel);
  185.         }
  186.         WM_Invalidate(hObj);
  187.         Notification = WM_NOTIFICATION_CLICKED;
  188.         WM_SetFocus(hObj);
  189.       }
  190.     } else {
  191.       Hit =1;
  192.       Notification = WM_NOTIFICATION_RELEASED;
  193.     }
  194.   } else {
  195.     Notification = WM_NOTIFICATION_MOVED_OUT;
  196.   }
  197.   WM_NotifyParent(hObj, Notification);
  198.   if (Hit == 1) {
  199.     GUI_DEBUG_LOG("RADIO: Hitn");
  200.     GUI_StoreKey(pObj->Widget.Id);
  201.   }
  202. }
  203. /*********************************************************************
  204. *
  205. *       _OnKey
  206. */
  207. static void  _OnKey(RADIO_Handle hObj, WM_MESSAGE*pMsg) {
  208.   WM_KEY_INFO* pKeyInfo;
  209.   int Key;
  210.   pKeyInfo = (WM_KEY_INFO*)(pMsg->Data.p);
  211.   Key = pKeyInfo->Key;
  212.   if (pKeyInfo->PressedCnt > 0) {
  213.     switch (Key) {
  214.       case GUI_KEY_RIGHT:
  215.       case GUI_KEY_DOWN:
  216.         RADIO_Inc(hObj);
  217.         break;                    /* Send to parent by not doing anything */
  218.       case GUI_KEY_LEFT:
  219.       case GUI_KEY_UP:
  220.         RADIO_Dec(hObj);
  221.         break;                    /* Send to parent by not doing anything */
  222.       default:
  223.         return;
  224.     }
  225.   }
  226. }
  227. /*********************************************************************
  228. *
  229. *       _Callback
  230. */
  231. static void _RADIO_Callback (WM_MESSAGE *pMsg) {
  232.   RADIO_Handle hObj;
  233.   RADIO_Obj* pObj;
  234.   hObj = pMsg->hWin;
  235.   pObj = RADIO_H2P(hObj);
  236.   /* Let widget handle the standard messages */
  237.   if (WIDGET_HandleActive(hObj, pMsg) == 0) {
  238.     return;
  239.   }
  240.   switch (pMsg->MsgId) {
  241.   case WM_PAINT:
  242.     GUI_DEBUG_LOG("RADIO: _Callback(WM_PAINT)n");
  243.     _Paint(hObj, pObj);
  244.     return;
  245.   case WM_TOUCH:
  246.     _OnTouch(hObj, pObj, pMsg);
  247.     break;
  248.   case WM_KEY:
  249.     _OnKey(hObj, pMsg);
  250.     break;
  251.   }
  252.   WM_DefaultProc(pMsg);
  253. }
  254. /*********************************************************************
  255. *
  256. *       Exported routines:  Create
  257. *
  258. **********************************************************************
  259. */
  260. /* Note: the parameters to a create function may vary.
  261.          Some widgets may have multiple create functions */
  262. RADIO_Handle RADIO_Create (int x0, int y0, int xsize, int ysize, WM_HWIN hParent, int Id, int Flags, unsigned Para) {
  263.   RADIO_Handle hObj;
  264.   unsigned NumItems;
  265.   unsigned Spacing;
  266.   int Height = 15;
  267.   /* Create the window */
  268.   WM_LOCK();
  269.   /* Calculate helper variables */
  270.   Spacing = (Para >> 8) & 255;
  271.   if (Spacing == 0) {
  272.     Spacing = 20;
  273.   }
  274.   NumItems = Para  & 255;
  275.   if (NumItems == 0) {
  276.     NumItems = 2;
  277.   }
  278.   if (ysize == 0) {
  279.     ysize = Height + ((NumItems-1) * Spacing);
  280.   }
  281.   hObj = WM_CreateWindowAsChild(x0, y0, xsize, ysize, hParent,
  282.                                 Flags, _RADIO_Callback, sizeof(RADIO_Obj)-sizeof(WM_Obj));
  283.   if (hObj) {
  284.     RADIO_Obj* pObj = RADIO_H2P(hObj);
  285.     /* init widget specific variables */
  286.     WIDGET__Init(&pObj->Widget, WIDGET_STATE_FOCUSSABLE | WIDGET_STATE_ENABLED);
  287.     pObj->Widget.Id     = Id;
  288.     /* init member variables */
  289.     RADIO_INIT_ID(pObj);
  290.     pObj->aBkColor[0]   = RADIO_BKCOLOR0_DEFAULT;
  291.     pObj->aBkColor[1]   = RADIO_BKCOLOR1_DEFAULT;
  292.     pObj->NumItems   = NumItems;
  293.     pObj->Spacing       = Spacing;
  294.     pObj->Height = Height;
  295.   } else {
  296.     GUI_DEBUG_ERROROUT_IF(hObj==0, "RADIO_Create failed")
  297.   }
  298.   WM_UNLOCK();
  299.   return hObj;
  300. }
  301. RADIO_Handle RADIO_CreateIndirect(const GUI_WIDGET_CREATE_INFO* pCreateInfo, WM_HWIN hWinParent, int x0, int y0, WM_CALLBACK* cb) {
  302.   RADIO_Handle  hThis;
  303.   GUI_USE_PARA(cb);
  304.   hThis = RADIO_Create(pCreateInfo->x0 + x0, pCreateInfo->y0 + y0, 16, 0,
  305.                           hWinParent, pCreateInfo->Id, pCreateInfo->Flags, pCreateInfo->Para);
  306.   return hThis;
  307. }
  308. /*********************************************************************
  309. *
  310. *       Exported routines:  Various methods
  311. *
  312. **********************************************************************
  313. */
  314. void RADIO_AddValue(RADIO_Handle hObj, int Add) {
  315.   RADIO_Obj* pObj;
  316.   if (hObj) {
  317.     WM_LOCK();
  318.     pObj = RADIO_H2P(hObj);
  319.     RADIO_SetValue(hObj, pObj->Sel + Add);
  320.     WM_UNLOCK();
  321.   }
  322. }
  323. void RADIO_Dec(RADIO_Handle hObj) { RADIO_AddValue(hObj, -1); }
  324. void RADIO_Inc(RADIO_Handle hObj) { RADIO_AddValue(hObj,  1); }
  325. void RADIO_SetValue(RADIO_Handle hObj, int v) {
  326.   RADIO_Obj* pObj;
  327.   int Max;
  328.   if (hObj) {
  329.     WM_LOCK();
  330.     pObj = RADIO_H2P(hObj);
  331.     Max = pObj->NumItems - 1;
  332.     if (Max < 0)
  333.       Max =0;
  334.     /* Put in min/max range */
  335.     if (v < 0) {
  336.       v = 0;
  337.     }
  338.     if (v > Max) {
  339.       v = Max;
  340.     }
  341.     if (pObj->Sel != v) {
  342.       pObj->Sel = v;
  343.       WM_InvalidateWindow(hObj);
  344.       WM_NotifyParent(hObj, WM_NOTIFICATION_VALUE_CHANGED);
  345.     }
  346.     WM_UNLOCK();
  347.   }
  348. }
  349. /*********************************************************************
  350. *
  351. *       Exported routines:  Query state
  352. *
  353. **********************************************************************
  354. */
  355. int RADIO_GetValue(RADIO_Handle hObj) {
  356.   int r = 0;
  357.   RADIO_Obj* pObj;
  358.   if (hObj) {
  359.     WM_LOCK();
  360.     pObj = RADIO_H2P(hObj);
  361.     r = pObj->Sel;
  362.     WM_UNLOCK();
  363.   }
  364.   return r;
  365. }
  366. #endif  /* #if GUI_WINSUPPORT */