KLUISystemLeftPanelView.lua 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. ---@class KLUISystemLeftPanelView:UIKmlLuaViewBase
  2. ---@field foldBtn UIKmlLuaControl
  3. ---@field expandBtn UIKmlLuaControl
  4. ---@field bagBtn UIKmlLuaControl
  5. ---@field maxBagTips UIKmlLuaControl
  6. ---@field bg UIKmlLuaControl
  7. ---@field maxTipsCloseBtn UIKmlLuaControl
  8. ---@field notice UIKmlLuaControl
  9. ---@field notice1 UIKmlLuaControl
  10. ---@field equipRecycleBtn UIKmlLuaControl
  11. ---@field autoRecycleBtn UIKmlLuaControl
  12. ---@field notNoticeToggle UIKmlLuaControl
  13. ---@field notNoticeToggleText UIKmlLuaControl
  14. ---@field arrow UIKmlLuaControl
  15. ---@field hookRoot UIKmlLuaControl
  16. ---@field img1 UIKmlLuaControl
  17. ---@field hookBtn UIKmlLuaControl
  18. ---@field autoHookIconContainer UIKmlLuaControl
  19. ---@field autoMaxIcon UIKmlLuaControl
  20. ---@field autoMinIcon UIKmlLuaControl
  21. ---@field autoTxtIcon UIKmlLuaControl
  22. ---@field btn_hook_out UIKmlLuaControl
  23. ---@field img_new_hook UIKmlLuaControl
  24. ---@field autoHookIconContainer_2 UIKmlLuaControl
  25. ---@field img_auto_2_close UIKmlLuaControl
  26. ---@field autoMaxIcon_2 UIKmlLuaControl
  27. ---@field autoMinIcon_2 UIKmlLuaControl
  28. ---@field autoTxtIcon_2 UIKmlLuaControl
  29. ---@field btn_patrol UIKmlLuaControl
  30. ---@field btn_situ UIKmlLuaControl
  31. ---@field btn_offline UIKmlLuaControl
  32. ---@field btn_hook_in UIKmlLuaControl
  33. ---@field systemArea UIKmlLuaControl
  34. ---@field systemMenu UIKmlLuaControl
  35. ---@field shapeShiftRoot UIKmlLuaControl
  36. ---@field img_shift_bg UIKmlLuaControl
  37. ---@field layout_37 UIKmlLuaControl
  38. ---@field btn_shift_1 UIKmlLuaControl
  39. ---@field img_shift_icon_1 UIKmlLuaControl
  40. ---@field Img_cdTime_1 UIKmlLuaControl
  41. ---@field btn_shift_2 UIKmlLuaControl
  42. ---@field img_shift_icon_2 UIKmlLuaControl
  43. ---@field Img_cdTime_2 UIKmlLuaControl
  44. ---@field btn_shift_3 UIKmlLuaControl
  45. ---@field img_shift_icon_3 UIKmlLuaControl
  46. ---@field Img_cdTime_3 UIKmlLuaControl
  47. ---@field btn_shift UIKmlLuaControl
  48. ---@field btn_shift_cancel UIKmlLuaControl
  49. ---@field circlebar_cancel UIKmlLuaControl
  50. local KLUISystemLeftPanelView = {}
  51. setmetatable(KLUISystemLeftPanelView,UIKmlLuaViewBase)
  52. local kmlPath = 'dev/ui/MainUI/Panel/KLUISystemLeft/KLUISystemLeftPanelKml'
  53. KLUISystemLeftPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  54. ---@param parent UIKmlLuaControl
  55. function KLUISystemLeftPanelView:Init(parent)
  56. self:InitRoot(parent,kmlPath,KLUISystemLeftPanelView.content)
  57. end
  58. return KLUISystemLeftPanelView