/src/ftk_list_model_default.h

http://ftk.googlecode.com/ · C Header · 67 lines · 28 code · 10 blank · 29 comment · 0 complexity · b9af40ce43825b023d5e0ca28243a2b9 MD5 · raw file

  1. /*
  2. * File: ftk_list_model_default.h
  3. * Author: Li XianJing <xianjimli@hotmail.com>
  4. * Brief: default list model
  5. *
  6. * Copyright (c) 2009 - 2010 Li XianJing <xianjimli@hotmail.com>
  7. *
  8. * Licensed under the Academic Free License version 2.1
  9. *
  10. * This program is free software; you can redistribute it and/or modify
  11. * it under the terms of the GNU General Public License as published by
  12. * the Free Software Foundation; either version 2 of the License, or
  13. * (at your option) any later version.
  14. *
  15. * This program is distributed in the hope that it will be useful,
  16. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  18. * GNU General Public License for more details.
  19. *
  20. * You should have received a copy of the GNU General Public License
  21. * along with this program; if not, write to the Free Software
  22. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  23. */
  24. /*
  25. * History:
  26. * ================================================================
  27. * 2009-11-28 Li XianJing <xianjimli@hotmail.com> created
  28. *
  29. */
  30. #ifndef FTK_LIST_MODEL_DEFAULT_H
  31. #define FTK_LIST_MODEL_DEFAULT_H
  32. #include "ftk_bitmap.h"
  33. #include "ftk_list_model.h"
  34. FTK_BEGIN_DECLS
  35. typedef enum _FtkListItemType
  36. {
  37. FTK_LIST_ITEM_NORMAL = 0,
  38. FTK_LIST_ITEM_RADIO, /*draw radio button icon at right side.*/
  39. FTK_LIST_ITEM_CHECK, /*draw check button icon at right side.*/
  40. FTK_LIST_ITEM_MORE /*draw MORE icon at right side, which means click this item will lead to more UI. */
  41. }FtkListItemType;
  42. #define FTK_LIST_TEXT_LENGTH 31
  43. typedef struct _FtkListItemInfo
  44. {
  45. char* text;
  46. int disable;
  47. int value; /*to store other info.*/
  48. int state; /*used for FTK_LIST_ITEM_RADIO and FTK_LIST_ITEM_CHECK*/
  49. FtkListItemType type;
  50. FtkBitmap* left_icon;
  51. FtkBitmap* right_icon;
  52. void* user_data;
  53. void* extra_user_data;
  54. }FtkListItemInfo;
  55. FtkListModel* ftk_list_model_default_create(size_t init_nr);
  56. FTK_END_DECLS
  57. #endif/*FTK_LIST_MODEL_DEFAULT_H*/