### Copyright (C) 1995, 1996, 1997 Jeppe Buk (buk@imada.ou.dk) ### This program is free software; you can redistribute it and/or modify ### it under the terms of the GNU General Public License as published by ### the Free Software Foundation; either version 2 of the License, or ### (at your option) any later version. ### ### This program is distributed in the hope that it will be useful, ### but WITHOUT ANY WARRANTY; without even the implied warranty of ### MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ### GNU General Public License for more details. ### ### You should have received a copy of the GNU General Public License ### along with this program; if not, write to the Free Software ### Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. ### ### Mar. 12 1998 Japanized by Mashio Motoyama ### proc FvwmTalk {} { # モジュール / FvwmTalk Desc "FvwmTalkモジュールの設定" ShortDesc "FvwmTalk" Header h -text "FvwmTalk" -frame:relief flat \ -help "このページでは FvwmTalk モジュールの設定を行います。このモジュールは FVWM2 へコマンドを転送する際に使われます。マニュアルが設定項目の全てについて言及していないため、このページはただのおまけです。"\ "\n\n訳注: FVWM モジュールに関して、Jeppe Buk 氏は勢いで一気に作ったふしがあり、無意味な設定や怪しげな項目がたまに見られます。" Line l CheckBox spawn\ -text "起動時から利用する" \ -help "これを選択すると、このモジュールは起動時、つまり"\ "'InitFunction' と 'RestartFunction' からその動作を開始します。"\ "\n\n訳注: FVWM モジュールに関して、Jeppe Buk 氏は勢いで一気に作ったふしがあり、無意味な設定や怪しげな項目がたまに見られます。" Save { if {$spawn == 1} { print "AddToFunc InitFunction \"I\" Module FvwmTalk" print "AddToFunc RestartFunction \"I\" Module FvwmTalk" } } }