Current section
Files
Jump to
Current section
Files
src/silk@staticboxsizer.erl
-module(silk@staticboxsizer).
-compile([no_auto_import, nowarn_unused_vars, nowarn_unused_function, nowarn_nomatch]).
-export([destroy/1, new2/2, new3/3]).
-export_type([label/0]).
-type label() :: {label, binary()}.
-file("/home/reet/Code/silk/silk/src/silk/staticboxsizer.gleam", 18).
-spec destroy(
silk@types:wx_sizer(silk@types:wx_box_sizer(silk@types:wx_static_box_sizer()))
) -> silk@types:ok_t().
destroy(This) ->
'wxStaticBoxSizer':destroy(This).
-file("/home/reet/Code/silk/silk/src/silk/staticboxsizer.gleam", 26).
-spec new2(integer(), silk@types:wx_object(silk@types:wx_window(any()))) -> silk@types:wx_sizer(silk@types:wx_box_sizer(silk@types:wx_static_box_sizer())).
new2(Orient, Parent) ->
'wxStaticBoxSizer':new(Orient, Parent).
-file("/home/reet/Code/silk/silk/src/silk/staticboxsizer.gleam", 34).
-spec new3(
integer(),
silk@types:wx_object(silk@types:wx_window(any())),
list(label())
) -> silk@types:wx_sizer(silk@types:wx_box_sizer(silk@types:wx_static_box_sizer())).
new3(Orient, Parent, Option) ->
'wxStaticBoxSizer':new(Orient, Parent, Option).