### Copyright (C) 1995 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. ### ### [Thu Jun 5 1997] ### Some messages (label, help,..) were Japanized by MOTOYAMA,mashio ### . If you want to use original messages try this URL. ### Dotfile Generator's Page proc paths {} { # 検索パス Desc "検索パス設定" ShortDesc "検索パス設定" Entry iconPath -text "アイコン検索パス" \ -help "コンパイル時に組み込まれたアイコンの検索パスを無効化し、" \ "新たに設定し直します。尚、コロン(:)で分割することで、"\ "複数のディレクトリを記述できます" Entry pixmapPath -text "ピックスマップ検索パス(カラーアイコン)" \ -help "コンパイル時に組み込まれたピックスマップの検索パスを無効化し、" \ "新たに設定し直します。尚、コロン(:)で分割することで、"\ "複数のディレクトリを記述できます" Entry modulePath -text "エクストラモジュール検索パス" \ -help "コンパイル時に組み込まれたモジュールの検索パスを無効化し、" \ "新たに設定し直します。尚、コロン(:)で分割することで、"\ "複数のディレクトリを記述できます" Save { if {$iconPath != {}} {print "IconPath\t$iconPath"} if {$pixmapPath != {}} {print "PixmapPath\t$pixmapPath"} if {$modulePath != {}} {print "ModulePath\t$modulePath"} } }