/lib/titanium/mobile/ui/iphone/IPhoneSystemIcon.hx

http://github.com/visup/haxe-titanium-api · Haxe · 64 lines · 19 code · 2 blank · 43 comment · 0 complexity · f3226492aa243131fc873ccbb1b7f130 MD5 · raw file

  1. package titanium.mobile.ui.iphone;
  2. /**
  3. IPhoneSystemIcon class
  4. Documentation available at:
  5. http://developer.appcelerator.com/apidoc/mobile/latest/Titanium.UI.iPhone.SystemIcon-object
  6. - namespace
  7. Titanium.UI.iPhone.SystemIcon
  8. - type
  9. proxy
  10. - description
  11. A set of constants for the system icon styles that can be used on a tab group tab.
  12. - since
  13. 0.8
  14. - platforms
  15. iphone, ipad
  16. - properties
  17. BOOKMARKS[int]: Bookmark style icon
  18. CONTACTS[int]: Contacts style icon
  19. DOWNLOADS[int]: Downloads style icon
  20. FAVORITES[int]: Favorites style icon
  21. FEATURED[int]: Featured style icon
  22. HISTORY[int]: History style icon
  23. MORE[int]: More style icon
  24. MOST_RECENT[int]: Most recent style icon
  25. MOST_VIEWED[int]: Most viewed style icon
  26. RECENTS[int]: Recents style icon
  27. SEARCH[int]: Search style icon
  28. TOP_RATED[int]: Top rated style icon
  29. **/
  30. #if iphoneos
  31. @:native("Titanium.UI.iPhone.SystemIcon")
  32. extern class IPhoneSystemIcon
  33. {
  34. // constants
  35. public static var BOOKMARKS:Int;
  36. public static var CONTACTS:Int;
  37. public static var DOWNLOADS:Int;
  38. public static var FAVORITES:Int;
  39. public static var FEATURED:Int;
  40. public static var HISTORY:Int;
  41. public static var MORE:Int;
  42. public static var MOST_RECENT:Int;
  43. public static var MOST_VIEWED:Int;
  44. public static var RECENTS:Int;
  45. public static var SEARCH:Int;
  46. public static var TOP_RATED:Int;
  47. }
  48. #end