diff options
author | Erlang/OTP <[email protected]> | 2009-11-20 14:54:40 +0000 |
---|---|---|
committer | Erlang/OTP <[email protected]> | 2009-11-20 14:54:40 +0000 |
commit | 84adefa331c4159d432d22840663c38f155cd4c1 (patch) | |
tree | bff9a9c66adda4df2106dfd0e5c053ab182a12bd /lib/wx/src/gen/wxClipboard.erl | |
download | otp-84adefa331c4159d432d22840663c38f155cd4c1.tar.gz otp-84adefa331c4159d432d22840663c38f155cd4c1.tar.bz2 otp-84adefa331c4159d432d22840663c38f155cd4c1.zip |
The R13B03 release.OTP_R13B03
Diffstat (limited to 'lib/wx/src/gen/wxClipboard.erl')
-rw-r--r-- | lib/wx/src/gen/wxClipboard.erl | 138 |
1 files changed, 138 insertions, 0 deletions
diff --git a/lib/wx/src/gen/wxClipboard.erl b/lib/wx/src/gen/wxClipboard.erl new file mode 100644 index 0000000000..c92f7b9af4 --- /dev/null +++ b/lib/wx/src/gen/wxClipboard.erl @@ -0,0 +1,138 @@ +%% +%% %CopyrightBegin% +%% +%% Copyright Ericsson AB 2008-2009. All Rights Reserved. +%% +%% The contents of this file are subject to the Erlang Public License, +%% Version 1.1, (the "License"); you may not use this file except in +%% compliance with the License. You should have received a copy of the +%% Erlang Public License along with this software. If not, it can be +%% retrieved online at http://www.erlang.org/. +%% +%% Software distributed under the License is distributed on an "AS IS" +%% basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See +%% the License for the specific language governing rights and limitations +%% under the License. +%% +%% %CopyrightEnd% +%% This file is generated DO NOT EDIT + +%% @doc See external documentation: <a href="http://www.wxwidgets.org/manuals/stable/wx_wxclipboard.html">wxClipboard</a>. +%% @type wxClipboard(). 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(wxClipboard). +-include("wxe.hrl"). +-export([addData/2,clear/1,close/1,destroy/1,flush/1,get/0,getData/2,isOpened/1, + isSupported/2,new/0,open/1,setData/2,usePrimarySelection/1,usePrimarySelection/2]). + +%% inherited exports +-export([parent_class/1]). + +%% @hidden +parent_class(_Class) -> erlang:error({badtype, ?MODULE}). + +%% @spec () -> wxClipboard() +%% @doc See <a href="http://www.wxwidgets.org/manuals/stable/wx_wxclipboard.html#wxclipboardwxclipboard">external documentation</a>. +new() -> + wxe_util:construct(?wxClipboard_new, + <<>>). + +%% @spec (This::wxClipboard(), Data::wxDataObject:wxDataObject()) -> bool() +%% @doc See <a href="http://www.wxwidgets.org/manuals/stable/wx_wxclipboard.html#wxclipboardadddata">external documentation</a>. +addData(#wx_ref{type=ThisT,ref=ThisRef},#wx_ref{type=DataT,ref=DataRef}) -> + ?CLASS(ThisT,wxClipboard), + ?CLASS(DataT,wxDataObject), + wxe_util:call(?wxClipboard_AddData, + <<ThisRef:32/?UI,DataRef:32/?UI>>). + +%% @spec (This::wxClipboard()) -> ok +%% @doc See <a href="http://www.wxwidgets.org/manuals/stable/wx_wxclipboard.html#wxclipboardclear">external documentation</a>. +clear(#wx_ref{type=ThisT,ref=ThisRef}) -> + ?CLASS(ThisT,wxClipboard), + wxe_util:cast(?wxClipboard_Clear, + <<ThisRef:32/?UI>>). + +%% @spec (This::wxClipboard()) -> ok +%% @doc See <a href="http://www.wxwidgets.org/manuals/stable/wx_wxclipboard.html#wxclipboardclose">external documentation</a>. +close(#wx_ref{type=ThisT,ref=ThisRef}) -> + ?CLASS(ThisT,wxClipboard), + wxe_util:cast(?wxClipboard_Close, + <<ThisRef:32/?UI>>). + +%% @spec (This::wxClipboard()) -> bool() +%% @doc See <a href="http://www.wxwidgets.org/manuals/stable/wx_wxclipboard.html#wxclipboardflush">external documentation</a>. +flush(#wx_ref{type=ThisT,ref=ThisRef}) -> + ?CLASS(ThisT,wxClipboard), + wxe_util:call(?wxClipboard_Flush, + <<ThisRef:32/?UI>>). + +%% @spec (This::wxClipboard(), Data::wxDataObject:wxDataObject()) -> bool() +%% @doc See <a href="http://www.wxwidgets.org/manuals/stable/wx_wxclipboard.html#wxclipboardgetdata">external documentation</a>. +getData(#wx_ref{type=ThisT,ref=ThisRef},#wx_ref{type=DataT,ref=DataRef}) -> + ?CLASS(ThisT,wxClipboard), + ?CLASS(DataT,wxDataObject), + wxe_util:call(?wxClipboard_GetData, + <<ThisRef:32/?UI,DataRef:32/?UI>>). + +%% @spec (This::wxClipboard()) -> bool() +%% @doc See <a href="http://www.wxwidgets.org/manuals/stable/wx_wxclipboard.html#wxclipboardisopened">external documentation</a>. +isOpened(#wx_ref{type=ThisT,ref=ThisRef}) -> + ?CLASS(ThisT,wxClipboard), + wxe_util:call(?wxClipboard_IsOpened, + <<ThisRef:32/?UI>>). + +%% @spec (This::wxClipboard()) -> bool() +%% @doc See <a href="http://www.wxwidgets.org/manuals/stable/wx_wxclipboard.html#wxclipboardopen">external documentation</a>. +open(#wx_ref{type=ThisT,ref=ThisRef}) -> + ?CLASS(ThisT,wxClipboard), + wxe_util:call(?wxClipboard_Open, + <<ThisRef:32/?UI>>). + +%% @spec (This::wxClipboard(), Data::wxDataObject:wxDataObject()) -> bool() +%% @doc See <a href="http://www.wxwidgets.org/manuals/stable/wx_wxclipboard.html#wxclipboardsetdata">external documentation</a>. +setData(#wx_ref{type=ThisT,ref=ThisRef},#wx_ref{type=DataT,ref=DataRef}) -> + ?CLASS(ThisT,wxClipboard), + ?CLASS(DataT,wxDataObject), + wxe_util:call(?wxClipboard_SetData, + <<ThisRef:32/?UI,DataRef:32/?UI>>). + +%% @spec (This::wxClipboard()) -> ok +%% @equiv usePrimarySelection(This, []) +usePrimarySelection(This) + when is_record(This, wx_ref) -> + usePrimarySelection(This, []). + +%% @spec (This::wxClipboard(), [Option]) -> ok +%% Option = {primary, bool()} +%% @doc See <a href="http://www.wxwidgets.org/manuals/stable/wx_wxclipboard.html#wxclipboarduseprimaryselection">external documentation</a>. +usePrimarySelection(#wx_ref{type=ThisT,ref=ThisRef}, Options) + when is_list(Options) -> + ?CLASS(ThisT,wxClipboard), + MOpts = fun({primary, Primary}, Acc) -> [<<1:32/?UI,(wxe_util:from_bool(Primary)):32/?UI>>|Acc]; + (BadOpt, _) -> erlang:error({badoption, BadOpt}) end, + BinOpt = list_to_binary(lists:foldl(MOpts, [<<0:32>>], Options)), + wxe_util:cast(?wxClipboard_UsePrimarySelection, + <<ThisRef:32/?UI, 0:32,BinOpt/binary>>). + +%% @spec (This::wxClipboard(), Format::integer()) -> bool() +%% @doc See <a href="http://www.wxwidgets.org/manuals/stable/wx_wxclipboard.html#wxclipboardissupported">external documentation</a>. +isSupported(#wx_ref{type=ThisT,ref=ThisRef},Format) + when is_integer(Format) -> + ?CLASS(ThisT,wxClipboard), + wxe_util:call(?wxClipboard_IsSupported, + <<ThisRef:32/?UI,Format:32/?UI>>). + +%% @spec () -> wxClipboard() +%% @doc See <a href="http://www.wxwidgets.org/manuals/stable/wx_wxclipboard.html#wxclipboardget">external documentation</a>. +get() -> + wxe_util:call(?wxClipboard_Get, + <<>>). + +%% @spec (This::wxClipboard()) -> ok +%% @doc Destroys this object, do not use object again +destroy(Obj=#wx_ref{type=Type}) -> + ?CLASS(Type,wxClipboard), + wxe_util:destroy(?DESTROY_OBJECT,Obj), + ok. |