1%%
2%% %CopyrightBegin%
3%%
4%% Copyright Ericsson AB 2008-2020. All Rights Reserved.
5%%
6%% Licensed under the Apache License, Version 2.0 (the "License");
7%% you may not use this file except in compliance with the License.
8%% You may obtain a copy of the License at
9%%
10%%     http://www.apache.org/licenses/LICENSE-2.0
11%%
12%% Unless required by applicable law or agreed to in writing, software
13%% distributed under the License is distributed on an "AS IS" BASIS,
14%% WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15%% See the License for the specific language governing permissions and
16%% limitations under the License.
17%%
18%% %CopyrightEnd%
19%% This file is generated DO NOT EDIT
20
21-module(wxTaskBarIconEvent).
22-include("wxe.hrl").
23-export([]).
24
25%% inherited exports
26-export([getId/1,getSkipped/1,getTimestamp/1,isCommandEvent/1,parent_class/1,
27  resumePropagation/2,shouldPropagate/1,skip/1,skip/2,stopPropagation/1]).
28
29-type wxTaskBarIconEvent() :: wx:wx_object().
30-include("wx.hrl").
31-type wxTaskBarIconEventType() :: 'taskbar_move' | 'taskbar_left_down' | 'taskbar_left_up' | 'taskbar_right_down' | 'taskbar_right_up' | 'taskbar_left_dclick' | 'taskbar_right_dclick'.
32-export_type([wxTaskBarIconEvent/0, wxTaskBarIcon/0, wxTaskBarIconEventType/0]).
33%% @hidden
34parent_class(wxEvent) -> true;
35parent_class(_Class) -> erlang:error({badtype, ?MODULE}).
36
37 %% From wxEvent
38%% @hidden
39stopPropagation(This) -> wxEvent:stopPropagation(This).
40%% @hidden
41skip(This, Options) -> wxEvent:skip(This, Options).
42%% @hidden
43skip(This) -> wxEvent:skip(This).
44%% @hidden
45shouldPropagate(This) -> wxEvent:shouldPropagate(This).
46%% @hidden
47resumePropagation(This,PropagationLevel) -> wxEvent:resumePropagation(This,PropagationLevel).
48%% @hidden
49isCommandEvent(This) -> wxEvent:isCommandEvent(This).
50%% @hidden
51getTimestamp(This) -> wxEvent:getTimestamp(This).
52%% @hidden
53getSkipped(This) -> wxEvent:getSkipped(This).
54%% @hidden
55getId(This) -> wxEvent:getId(This).
56