2014-03-10 14:04:58 +08:00
|
|
|
|
|
|
|
--------------------------------
|
|
|
|
-- @module MenuItemFont
|
2014-03-20 10:21:28 +08:00
|
|
|
-- @extend MenuItemLabel
|
2014-06-25 17:36:50 +08:00
|
|
|
-- @parent_module cc
|
2014-03-18 15:55:30 +08:00
|
|
|
|
2014-03-10 14:04:58 +08:00
|
|
|
--------------------------------
|
2014-08-29 16:12:40 +08:00
|
|
|
-- get font size <br>
|
|
|
|
-- js getFontSize
|
2014-03-10 14:04:58 +08:00
|
|
|
-- @function [parent=#MenuItemFont] getFontSizeObj
|
|
|
|
-- @param self
|
|
|
|
-- @return int#int ret (return value: int)
|
|
|
|
|
|
|
|
--------------------------------
|
2014-08-29 16:12:40 +08:00
|
|
|
-- returns the name of the Font <br>
|
|
|
|
-- js getFontNameObj
|
2014-03-10 14:04:58 +08:00
|
|
|
-- @function [parent=#MenuItemFont] getFontNameObj
|
|
|
|
-- @param self
|
|
|
|
-- @return string#string ret (return value: string)
|
|
|
|
|
|
|
|
--------------------------------
|
2014-08-29 16:12:40 +08:00
|
|
|
-- set font size<br>
|
|
|
|
-- c++ can not overload static and non-static member functions with the same parameter types<br>
|
|
|
|
-- so change the name to setFontSizeObj<br>
|
|
|
|
-- js setFontSize
|
2014-03-10 14:04:58 +08:00
|
|
|
-- @function [parent=#MenuItemFont] setFontSizeObj
|
|
|
|
-- @param self
|
2014-08-29 16:12:40 +08:00
|
|
|
-- @param #int size
|
2014-03-10 14:04:58 +08:00
|
|
|
|
|
|
|
--------------------------------
|
2014-08-29 16:12:40 +08:00
|
|
|
-- set the font name <br>
|
|
|
|
-- c++ can not overload static and non-static member functions with the same parameter types<br>
|
|
|
|
-- so change the name to setFontNameObj<br>
|
|
|
|
-- js setFontName
|
2014-03-10 14:04:58 +08:00
|
|
|
-- @function [parent=#MenuItemFont] setFontNameObj
|
|
|
|
-- @param self
|
2014-08-29 16:12:40 +08:00
|
|
|
-- @param #string name
|
2014-03-10 14:04:58 +08:00
|
|
|
|
|
|
|
--------------------------------
|
2014-08-29 16:12:40 +08:00
|
|
|
-- set the default font name
|
2014-03-10 14:04:58 +08:00
|
|
|
-- @function [parent=#MenuItemFont] setFontName
|
|
|
|
-- @param self
|
2014-08-29 16:12:40 +08:00
|
|
|
-- @param #string name
|
2014-03-10 14:04:58 +08:00
|
|
|
|
|
|
|
--------------------------------
|
2014-08-29 16:12:40 +08:00
|
|
|
-- get default font size
|
2014-03-10 14:04:58 +08:00
|
|
|
-- @function [parent=#MenuItemFont] getFontSize
|
|
|
|
-- @param self
|
|
|
|
-- @return int#int ret (return value: int)
|
|
|
|
|
|
|
|
--------------------------------
|
2014-08-29 16:12:40 +08:00
|
|
|
-- get the default font name
|
2014-03-10 14:04:58 +08:00
|
|
|
-- @function [parent=#MenuItemFont] getFontName
|
|
|
|
-- @param self
|
|
|
|
-- @return string#string ret (return value: string)
|
|
|
|
|
|
|
|
--------------------------------
|
2014-08-29 16:12:40 +08:00
|
|
|
-- set default font size
|
2014-03-10 14:04:58 +08:00
|
|
|
-- @function [parent=#MenuItemFont] setFontSize
|
|
|
|
-- @param self
|
2014-08-29 16:12:40 +08:00
|
|
|
-- @param #int size
|
2014-03-10 14:04:58 +08:00
|
|
|
|
|
|
|
return nil
|