gstk_widgets.erl
来自「OTP是开放电信平台的简称」· ERL 代码 · 共 91 行
ERL
91 行
%% ``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 via the world wide web 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.%% %% The Initial Developer of the Original Code is Ericsson Utvecklings AB.%% Portions created by Ericsson are Copyright 1999, Ericsson Utvecklings%% AB. All Rights Reserved.''%% %% $Id$%%%% ------------------------------------------------------------%% Widget specific data%% ------------------------------------------------------------%%-module(gstk_widgets).-export([type2mod/1, objmod/1, suffix/1]).-include("gstk.hrl").%%%% Map primitive types to modules or false (false should not be a module!)%%%% ordered for efficiencytype2mod(window) -> gstk_window;type2mod(frame) -> gstk_frame;type2mod(button) -> gstk_button;type2mod(canvas) -> gstk_canvas;type2mod(checkbutton) -> gstk_checkbutton;type2mod(rectangle) -> gstk_rectangle;type2mod(gs) -> gstk_gs;type2mod(grid) -> gstk_grid;type2mod(gridline) -> gstk_gridline;type2mod(text) -> gstk_text;type2mod(image) -> gstk_image;type2mod(label) -> gstk_label;type2mod(line) -> gstk_line;type2mod(entry) -> gstk_entry;type2mod(listbox) -> gstk_listbox;type2mod(editor) -> gstk_editor;type2mod(menu) -> gstk_menu;type2mod(menubar) -> gstk_menubar;type2mod(menubutton) -> gstk_menubutton;type2mod(menuitem) -> gstk_menuitem;type2mod(message) -> gstk_message;type2mod(oval) -> gstk_oval;type2mod(polygon) -> gstk_polygon;type2mod(prompter) -> gstk_prompter;type2mod(radiobutton) -> gstk_radiobutton;type2mod(scale) -> gstk_scale;type2mod(scrollbar) -> gstk_scrollbar;type2mod(arc) -> gstk_arc;type2mod(Type) -> {error,{unknown_type, Type}}.objmod(#gstkid{objtype=OT}) -> type2mod(OT).%%%% The suffix to add to the parent tk widget%%suffix(button) -> ".b";suffix(canvas) -> ".c";suffix(checkbutton) -> ".cb";suffix(editor) -> ".ed";suffix(entry) -> ".e";suffix(frame) -> ".f";suffix(label) -> ".l";suffix(listbox) -> ".lb";suffix(menu) -> ".m";suffix(menubar) -> ".bar";suffix(menubutton) -> ".mb";suffix(message) -> ".ms";suffix(prompter) -> ".p";suffix(radiobutton) -> ".rb";suffix(scale) -> ".sc";suffix(window) -> ".w";suffix(Objtype) -> apply(type2mod(Objtype), suffix, []).
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?