Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

wxicon(3erl) [linux man page]

wxIcon(3erl)						     Erlang Module Definition						      wxIcon(3erl)

NAME
wxIcon - See external documentation: wxIcon. DESCRIPTION
See external documentation: wxIcon . This class is derived (and can use functions) from: wxBitmap DATA TYPES
wxIcon() : An object reference, The representation is internal and can be changed without notice. It can't be used for comparsion stored on disc or distributed for use on other nodes. EXPORTS
new() -> wxIcon() See external documentation . new(X::string() | term()) -> wxIcon() See external documentation . Alternatives: new(Filename::string()) -> new(Filename, []) new(Loc::wx:wx()) -> wxIcon() new(Filename::string(), Options::[Option]) -> wxIcon() Types Option = {type, WxBitmapType} | {desiredWidth, integer()} | {desiredHeight, integer()} WxBitmapType = integer() See external documentation . WxBitmapType is one of ?wxBITMAP_TYPE_INVALID | ?wxBITMAP_TYPE_BMP | ?wxBITMAP_TYPE_BMP_RESOURCE | ?wxBITMAP_TYPE_RESOURCE | ?wxBITMAP_TYPE_ICO | ?wxBITMAP_TYPE_ICO_RESOURCE | ?wxBITMAP_TYPE_CUR | ?wxBITMAP_TYPE_CUR_RESOURCE | ?wxBITMAP_TYPE_XBM | ?wxBITMAP_TYPE_XBM_DATA | ?wxBITMAP_TYPE_XPM | ?wxBITMAP_TYPE_XPM_DATA | ?wxBITMAP_TYPE_TIF | ?wxBITMAP_TYPE_TIF_RESOURCE | ?wxBITMAP_TYPE_GIF | ?wxBITMAP_TYPE_GIF_RESOURCE | ?wxBITMAP_TYPE_PNG | ?wxBITMAP_TYPE_PNG_RESOURCE | ?wxBITMAP_TYPE_JPEG | ?wxBITMAP_TYPE_JPEG_RESOURCE | ?wxBITMAP_TYPE_PNM | ?wxBITMAP_TYPE_PNM_RESOURCE | ?wxBITMAP_TYPE_PCX | ?wxBITMAP_TYPE_PCX_RESOURCE | ?wxBITMAP_TYPE_PICT | ?wxBITMAP_TYPE_PICT_RESOURCE | ?wxBITMAP_TYPE_ICON | ?wxBITMAP_TYPE_ICON_RESOURCE | ?wxBITMAP_TYPE_ANI | ?wxBITMAP_TYPE_IFF | ?wxBITMAP_TYPE_TGA | ?wxBITMAP_TYPE_MACCURSOR | ?wxBITMAP_TYPE_MACCURSOR_RESOURCE | ?wxBITMAP_TYPE_ANY copyFromBitmap(This::wxIcon(), Bmp::wxBitmap() (see module wxBitmap)) -> ok See external documentation . destroy(This::wxIcon()) -> ok Destroys this object, do not use object again AUTHORS
<> wxErlang 0.98.9 wxIcon(3erl)

Check Out this Related Man Page

wxXmlResource(3erl)					     Erlang Module Definition					       wxXmlResource(3erl)

NAME
wxXmlResource - See external documentation: wxXmlResource. DESCRIPTION
See external documentation: wxXmlResource . DATA TYPES
wxXmlResource() : An object reference, The representation is internal and can be changed without notice. It can't be used for comparsion stored on disc or distributed for use on other nodes. EXPORTS
new() -> wxXmlResource() Equivalent to new([]) . new(Options::[Option]) -> wxXmlResource() Types Option = {flags, integer()} | {domain, string()} See external documentation . new(Filemask::string(), Options::[Option]) -> wxXmlResource() Types Option = {flags, integer()} | {domain, string()} See external documentation . attachUnknownControl(This::wxXmlResource(), Name::string(), Control::wxWindow() (see module wxWindow)) -> bool() Equivalent to attachUnknownControl(This, Name, Control, []) . attachUnknownControl(This::wxXmlResource(), Name::string(), Control::wxWindow() (see module wxWindow), Options::[Option]) -> bool() Types Option = {parent, wxWindow() (see module wxWindow)} See external documentation . clearHandlers(This::wxXmlResource()) -> ok See external documentation . compareVersion(This::wxXmlResource(), Major::integer(), Minor::integer(), Release::integer(), Revision::integer()) -> integer() See external documentation . get() -> wxXmlResource() See external documentation . getFlags(This::wxXmlResource()) -> integer() See external documentation . getVersion(This::wxXmlResource()) -> integer() See external documentation . getXRCID(Str_id::[string()]) -> integer() Equivalent to getXRCID(Str_id, []) . getXRCID(Str_id::[string()], Options::[Option]) -> integer() Types Option = {value_if_not_found, integer()} See external documentation . initAllHandlers(This::wxXmlResource()) -> ok See external documentation . load(This::wxXmlResource(), Filemask::string()) -> bool() See external documentation . loadBitmap(This::wxXmlResource(), Name::string()) -> wxBitmap() (see module wxBitmap) See external documentation . loadDialog(This::wxXmlResource(), Parent::wxWindow() (see module wxWindow), Name::string()) -> wxDialog() (see module wxDialog) See external documentation . loadDialog(This::wxXmlResource(), Dlg::wxDialog() (see module wxDialog), Parent::wxWindow() (see module wxWindow), Name::string()) -> bool() See external documentation . loadFrame(This::wxXmlResource(), Parent::wxWindow() (see module wxWindow), Name::string()) -> wxFrame() (see module wxFrame) See external documentation . loadFrame(This::wxXmlResource(), Frame::wxFrame() (see module wxFrame), Parent::wxWindow() (see module wxWindow), Name::string()) -> bool() See external documentation . loadIcon(This::wxXmlResource(), Name::string()) -> wxIcon() (see module wxIcon) See external documentation . loadMenu(This::wxXmlResource(), Name::string()) -> wxMenu() (see module wxMenu) See external documentation . loadMenuBar(This::wxXmlResource(), Name::string()) -> wxMenuBar() (see module wxMenuBar) See external documentation . loadMenuBar(This::wxXmlResource(), Parent::wxWindow() (see module wxWindow), Name::string()) -> wxMenuBar() (see module wxMenuBar) See external documentation . loadPanel(This::wxXmlResource(), Parent::wxWindow() (see module wxWindow), Name::string()) -> wxPanel() (see module wxPanel) See external documentation . loadPanel(This::wxXmlResource(), Panel::wxPanel() (see module wxPanel), Parent::wxWindow() (see module wxWindow), Name::string()) -> bool() See external documentation . loadToolBar(This::wxXmlResource(), Parent::wxWindow() (see module wxWindow), Name::string()) -> wxToolBar() (see module wxToolBar) See external documentation . set(Res::wxXmlResource()) -> wxXmlResource() See external documentation . setFlags(This::wxXmlResource(), Flags::integer()) -> ok See external documentation . unload(This::wxXmlResource(), Filename::string()) -> bool() See external documentation . xrcctrl(Window::wxWindow() (see module wxWindow), Name::string(), Type::atom()) -> wxObject() (see module wx) Looks up a control with Name in a window created with XML resources. You can use it to set/get values from controls. The object is type casted to Type . Example: Xrc = wxXmlResource:get(), Dlg = wxDialog:new(), true = wxXmlResource:loadDialog(Xrc, Dlg, Frame, "controls_dialog"), LCtrl = xrcctrl(Dlg, "controls_listctrl", wxListCtrl), wxListCtrl:insertColumn(LCtrl, 0, "Name", [{width, 200}]), destroy(This::wxXmlResource()) -> ok Destroys this object, do not use object again AUTHORS
<> wxErlang 0.98.9 wxXmlResource(3erl)
Man Page