summaryrefslogtreecommitdiff
path: root/meta/3rd/Cocos4.0/library/ccui/ImageView.lua
blob: 0297e1ae25a80a2edf27b5be98bb6c1f05e9194e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
---@meta

---@class ccui.ImageView :ccui.Widget@all parent class: Widget,BlendProtocol
local ImageView={ }
ccui.ImageView=ImageView




---* Returns the blending function that is currently being used.<br>
---* return A BlendFunc structure with source and destination factor which specified pixel arithmetic.<br>
---* js NA<br>
---* lua NA
---@return cc.BlendFunc
function ImageView:getBlendFunc () end
---* Load texture for imageview.<br>
---* param fileName   file name of texture.<br>
---* param texType    @see `Widget::TextureResType`
---@param fileName string
---@param texType int
---@return self
function ImageView:loadTexture (fileName,texType) end
---* Sets the source blending function.<br>
---* param blendFunc A structure with source and destination factor to specify pixel arithmetic. e.g. {BlendFactor::ONE, BlendFactor::ONE}, {BlendFactor::SRC_ALPHA, BlendFactor::ONE_MINUS_SRC_ALPHA}.<br>
---* js NA<br>
---* lua NA
---@param blendFunc cc.BlendFunc
---@return self
function ImageView:setBlendFunc (blendFunc) end
---* 
---@param imageFileName string
---@param texType int
---@return boolean
function ImageView:init (imageFileName,texType) end
---* Enable scale9 renderer.<br>
---* param enabled Set to true will use scale9 renderer, false otherwise.
---@param enabled boolean
---@return self
function ImageView:setScale9Enabled (enabled) end
---* Updates the texture rect of the ImageView in points.<br>
---* It will call setTextureRect:rotated:untrimmedSize with rotated = NO, and utrimmedSize = rect.size.
---@param rect rect_table
---@return self
function ImageView:setTextureRect (rect) end
---* Sets capInsets for imageview.<br>
---* The capInsets affects the ImageView's renderer only if `setScale9Enabled(true)` is called.<br>
---* param capInsets    capinsets for imageview
---@param capInsets rect_table
---@return self
function ImageView:setCapInsets (capInsets) end
---* 
---@return cc.ResourceData
function ImageView:getRenderFile () end
---* Get ImageView's capInsets size.<br>
---* return Query capInsets size in Rect<br>
---* see `setCapInsets(const Rect&)`
---@return rect_table
function ImageView:getCapInsets () end
---* Query whether button is using scale9 renderer or not.<br>
---* return whether button use scale9 renderer or not.
---@return boolean
function ImageView:isScale9Enabled () end
---@overload fun(string:string,int:int):self
---@overload fun():self
---@param imageFileName string
---@param texType int
---@return self
function ImageView:create (imageFileName,texType) end
---* 
---@return cc.Ref
function ImageView:createInstance () end
---* 
---@return cc.Node
function ImageView:getVirtualRenderer () end
---* 
---@return boolean
function ImageView:init () end
---* 
---@return string
function ImageView:getDescription () end
---* 
---@return size_table
function ImageView:getVirtualRendererSize () end
---* 
---@param ignore boolean
---@return self
function ImageView:ignoreContentAdaptWithSize (ignore) end
---* Default constructor<br>
---* js ctor<br>
---* lua new
---@return self
function ImageView:ImageView () end