%%
%% %CopyrightBegin%
%%
%% Copyright Ericsson AB 2008-2015. All Rights Reserved.
%%
%% Licensed under the Apache License, Version 2.0 (the "License");
%% you may not use this file except in compliance with the License.
%% You may obtain a copy of the License at
%%
%% http://www.apache.org/licenses/LICENSE-2.0
%%
%% Unless required by applicable law or agreed to in writing, software
%% distributed under the License is distributed on an "AS IS" BASIS,
%% WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
%% See the License for the specific language governing permissions and
%% limitations under the License.
%%
%% %CopyrightEnd%
%% This file is generated DO NOT EDIT
%% @doc See external documentation: wxAuiTabArt.
%% @type wxAuiTabArt(). 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.
-module(wxAuiTabArt).
-include("wxe.hrl").
-export([setActiveColour/2,setColour/2,setFlags/2,setMeasuringFont/2,setNormalFont/2,
setSelectedFont/2]).
%% inherited exports
-export([parent_class/1]).
-export_type([wxAuiTabArt/0]).
%% @hidden
parent_class(_Class) -> erlang:error({badtype, ?MODULE}).
-type wxAuiTabArt() :: wx:wx_object().
%% @doc See external documentation.
-spec setFlags(This, Flags) -> ok when
This::wxAuiTabArt(), Flags::integer().
setFlags(#wx_ref{type=ThisT,ref=ThisRef},Flags)
when is_integer(Flags) ->
?CLASS(ThisT,wxAuiTabArt),
wxe_util:cast(?wxAuiTabArt_SetFlags,
<>).
%% @doc See external documentation.
-spec setMeasuringFont(This, Font) -> ok when
This::wxAuiTabArt(), Font::wxFont:wxFont().
setMeasuringFont(#wx_ref{type=ThisT,ref=ThisRef},#wx_ref{type=FontT,ref=FontRef}) ->
?CLASS(ThisT,wxAuiTabArt),
?CLASS(FontT,wxFont),
wxe_util:cast(?wxAuiTabArt_SetMeasuringFont,
<>).
%% @doc See external documentation.
-spec setNormalFont(This, Font) -> ok when
This::wxAuiTabArt(), Font::wxFont:wxFont().
setNormalFont(#wx_ref{type=ThisT,ref=ThisRef},#wx_ref{type=FontT,ref=FontRef}) ->
?CLASS(ThisT,wxAuiTabArt),
?CLASS(FontT,wxFont),
wxe_util:cast(?wxAuiTabArt_SetNormalFont,
<>).
%% @doc See external documentation.
-spec setSelectedFont(This, Font) -> ok when
This::wxAuiTabArt(), Font::wxFont:wxFont().
setSelectedFont(#wx_ref{type=ThisT,ref=ThisRef},#wx_ref{type=FontT,ref=FontRef}) ->
?CLASS(ThisT,wxAuiTabArt),
?CLASS(FontT,wxFont),
wxe_util:cast(?wxAuiTabArt_SetSelectedFont,
<>).
%% @doc See external documentation.
-spec setColour(This, Colour) -> ok when
This::wxAuiTabArt(), Colour::wx:wx_colour().
setColour(#wx_ref{type=ThisT,ref=ThisRef},Colour)
when tuple_size(Colour) =:= 3; tuple_size(Colour) =:= 4 ->
?CLASS(ThisT,wxAuiTabArt),
wxe_util:cast(?wxAuiTabArt_SetColour,
<>).
%% @doc See external documentation.
-spec setActiveColour(This, Colour) -> ok when
This::wxAuiTabArt(), Colour::wx:wx_colour().
setActiveColour(#wx_ref{type=ThisT,ref=ThisRef},Colour)
when tuple_size(Colour) =:= 3; tuple_size(Colour) =:= 4 ->
?CLASS(ThisT,wxAuiTabArt),
wxe_util:cast(?wxAuiTabArt_SetActiveColour,
<>).