1wxAuiDockArt(3) Erlang Module Definition wxAuiDockArt(3)
2
3
4
6 wxAuiDockArt - Functions for wxAuiDockArt class
7
9 wxAuiDockArt is part of the wxAUI class framework. See also over‐
10 view_aui.
11
12 wxAuiDockArt is the art provider: provides all drawing functionality to
13 the wxAui dock manager. This allows the dock manager to have a plug‐
14 gable look-and-feel.
15
16 By default, a wxAuiManager uses an instance of this class called wx‐
17 AuiDefaultDockArt (not implemented in wx) which provides bitmap art and
18 a colour scheme that is adapted to the major platforms' look. You can
19 either derive from that class to alter its behaviour or write a com‐
20 pletely new dock art class. Call wxAuiManager:setArtProvider/2 to force
21 wxAUI to use your new dock art provider.
22
23 See: wxAuiManager, wxAuiPaneInfo
24
25 wxWidgets docs: wxAuiDockArt
26
28 wxAuiDockArt() = wx:wx_object()
29
31 getColour(This, Id) -> wx:wx_colour4()
32
33 Types:
34
35 This = wxAuiDockArt()
36 Id = integer()
37
38 Get the colour of a certain setting.
39
40 id can be one of the colour values of wxAuiPaneDockArtSetting.
41
42 getFont(This, Id) -> wxFont:wxFont()
43
44 Types:
45
46 This = wxAuiDockArt()
47 Id = integer()
48
49 Get a font setting.
50
51 getMetric(This, Id) -> integer()
52
53 Types:
54
55 This = wxAuiDockArt()
56 Id = integer()
57
58 Get the value of a certain setting.
59
60 id can be one of the size values of wxAuiPaneDockArtSetting.
61
62 setColour(This, Id, Colour) -> ok
63
64 Types:
65
66 This = wxAuiDockArt()
67 Id = integer()
68 Colour = wx:wx_colour()
69
70 Set a certain setting with the value colour.
71
72 id can be one of the colour values of wxAuiPaneDockArtSetting.
73
74 setFont(This, Id, Font) -> ok
75
76 Types:
77
78 This = wxAuiDockArt()
79 Id = integer()
80 Font = wxFont:wxFont()
81
82 Set a font setting.
83
84 setMetric(This, Id, New_val) -> ok
85
86 Types:
87
88 This = wxAuiDockArt()
89 Id = New_val = integer()
90
91 Set a certain setting with the value new_val.
92
93 id can be one of the size values of wxAuiPaneDockArtSetting.
94
95
96
97wxWidgets team. wx 2.1 wxAuiDockArt(3)