OSDN Git Service

100レス表示で、先頭表示レス数を設定できるように変更。
[gikonavigoeson/gikonavi.git] / Setting.pas
1 unit Setting;
2
3
4 interface
5
6 uses
7         SysUtils, Classes, Graphics, Forms, {Math, IniFiles, UCryptAuto, UBase64,}
8         ComCtrls, GestureModel, IniFiles;
9
10 const
11         MAIN_COOLBAND_COUNT = 4;                //\83\81\83C\83\93CoolBand\82Ì\90\94
12         LIST_COOLBAND_COUNT = 2;                //\94ÂCoolBand\82Ì\90\94
13         BROWSER_COOLBAND_COUNT = 3;     //\83u\83\89\83E\83UCoolBand\82Ì\90\94
14
15
16 type
17         TGikoTabPosition = (gtpTop, gtpBottom);                                                         // \83^\83u\88Ê\92u
18         TGikoTabAppend = (gtaFirst, gtpLast);                                                                   // \83^\83u\92Ç\89Á\88Ê\92u
19         TGikoTabStyle = (gtsTab, gtsButton, gtsFlat);                                   // \83^\83u\83X\83^\83C\83\8b
20         TGikoListOrientation = (gloHorizontal, gloVertical);    // \83\8a\83X\83g\90\82\92¼\81E\90\85\95½
21         TGikoListState = (glsMax, glsNormal, glsMin);                                   // \83\8a\83X\83g\83T\83C\83Y\8fó\91Ô
22                                                                                                                                                                                                                                 // \83|\83b\83v\83A\83b\83v\95\\8e¦\88Ê\92u
23         TGikoPopupPosition = (gppRightTop, gppTop, gppLeftTop,
24                                                                                                 gppRight, gppCenter, gppLeft,
25                                                                                                 gppRightBottom, gppBottom, gppLeftBottom);
26                                                                                                                                                                                                                                 //\83v\83\8c\83r\83\85\81[\83T\83C\83Y
27         TGikoPreviewSize = (gpsXLarge, gpsLarge, gpsMedium, gpsSmall, gpsXSmall);
28         TGikoBrowserAutoMaximize        = (gbmNone, gbmClick, gbmDoubleClick);
29                                                                                                                                                                                                                                 // \83u\83\89\83E\83U\82ð\8e©\93®\93I\82É\8dÅ\91å\89»\82·\82é\8fð\8c\8f
30         /// \83\8c\83X\95\\8e¦\94Í\88Í\81B10 \81` 65535 \82Í\8dÅ\90V n \83\8c\83X\88µ\82¢\81B
31         /// \8f«\97\88 201-300 \82Ì\82æ\82¤\82È\94Í\88Í\82ð\8e\9d\82½\82¹\82é\89Â\94\\90«\82à\8dl\82¦\82Ä\8fã\88Ê 2 byte \82Í\97\\96ñ\81B
32         TGikoResRange = (grrAll, grrSelect, grrKoko, grrNew);
33
34         /// \83X\83\8c\83b\83h\88ê\97\97\95\\8e¦\94Í\88Í
35         TGikoThreadRange = (gtrAll, gtrSelect, gtrLog, gtrNew, gtrLive, gtrArch);
36
37         //! \83X\83p\83\80\83t\83B\83\8b\83^\81[\83A\83\8b\83S\83\8a\83Y\83\80
38         TGikoSpamFilterAlgorithm = (
39                 gsfaNone, gsfaPaulGraham, gsfaGaryRobinson, gsfaGaryRobinsonFisher);
40
41
42         /// \83J\83e\83S\83\8a\83\8a\83X\83g\82Ì\83J\83\89\83\80 ID
43         type    TGikoBBSColumnID = (gbbscTitle);
44         /// \83J\83e\83S\83\8a\83\8a\83X\83g\82Ì\83J\83\89\83\80\96¼
45         const   GikoBBSColumnCaption : array[0..0] of string =
46                 ( '\83J\83e\83S\83\8a\96¼' );
47         /// \83J\83e\83S\83\8a\83\8a\83X\83g\83J\83\89\83\80\94z\97ñ
48         type    TGikoBBSColumnList = class( TList )
49         private
50                 function GetItem( index : integer ) : TGikoBBSColumnID;
51                 procedure SetItem( index : integer; value : TGikoBBSColumnID);
52         public
53                 constructor Create;
54                 destructor Destroy;     override;
55                 function Add( value : TGikoBBSColumnID ) : Integer;
56                 property Items[index : integer]: TGikoBBSColumnID read GetItem write SetItem; default;
57         end;
58         /// \94Â\83\8a\83X\83g\82Ì\83J\83\89\83\80 ID
59         type    TGikoCategoryColumnID = (gccTitle, gccRoundName, gccLastModified);
60         /// \94Â\83\8a\83X\83g\82Ì\83J\83\89\83\80\96¼
61         const GikoCategoryColumnCaption : array[0..2] of string =
62                 ( '\94Â\96¼', '\8f\84\89ñ\97\\96ñ', '\8eæ\93¾\93ú\8e\9e' );
63         /// \94Â\83\8a\83X\83g\83J\83\89\83\80\94z\97ñ
64         type    TGikoCategoryColumnList = class( TList )
65         private
66                 function GetItem( index : integer ) : TGikoCategoryColumnID;
67                 procedure SetItem( index : integer; value : TGikoCategoryColumnID);
68         public
69                 constructor Create;
70                 destructor Destroy;     override;
71                 function Add( value : TGikoCategoryColumnID ) : Integer;
72                 property Items[index : integer]: TGikoCategoryColumnID read GetItem write SetItem; default;
73         end;
74         /// \83X\83\8c\83\8a\83X\83g\82Ì\83J\83\89\83\80 ID
75         type    TGikoBoardColumnID = (gbcTitle, gbcAllCount, gbcLocalCount, gbcNonAcqCount,
76                 gbcNewCount, gbcUnReadCount, gbcRoundName, gbcRoundDate, gbcCreated, gbcLastModified, gbcVigor );{gbcLastModified,}
77         /// \83X\83\8c\83\8a\83X\83g\82Ì\83J\83\89\83\80\96¼
78         const   GikoBoardColumnCaption : array[0..10] of string =
79                 ( '\83X\83\8c\83b\83h\96¼', '\83J\83E\83\93\83g', '\8eæ\93¾', '\96¢\8eæ\93¾', '\90V\92\85',
80                 '\96¢\93Ç', '\8f\84\89ñ\97\\96ñ', '\8eæ\93¾\93ú\8e\9e', '\83X\83\8c\8dì\90¬\93ú\8e\9e', '\8dÅ\8fI\8dX\90V\93ú\8e\9e', '\90¨\82¢' );
81         const GikoBoardColumnAlignment : array[0..10] of TAlignment = (
82                 taLeftJustify, taRightJustify, taRightJustify, taRightJustify,
83                 taRightJustify, taRightJustify, taLeftJustify, taLeftJustify,
84                 taLeftJustify, taLeftJustify, taRightJustify);
85         /// \83X\83\8c\83\8a\83X\83g\83J\83\89\83\80\94z\97ñ
86         type    TGikoBoardColumnList = class( TList )
87         private
88                 function GetItem( index : integer ) : TGikoBoardColumnID;
89                 procedure SetItem( index : integer; value : TGikoBoardColumnID);
90         public
91                 constructor Create;
92                 destructor Destroy;     override;
93                 function Add( value : TGikoBoardColumnID ) : Integer;
94                 property Items[index : integer]: TGikoBoardColumnID read GetItem write SetItem; default;
95         end;
96
97 type
98         //CoolBar\90Ý\92è\83\8c\83R\81[\83h
99         TCoolSet = record
100                 FCoolID: Integer;
101                 FCoolWidth: Integer;
102                 FCoolBreak: Boolean;
103         end;
104
105         TSetting = class(TObject)
106         private
107                 //\8eó\90M\83o\83b\83t\83@\83T\83C\83Y
108                 FRecvBufferSize: Integer;
109                 //HTTP1.1\8eg\97p
110                 FProtocol: Boolean;
111                 //\83v\83\8d\83L\83V\90Ú\91±HTTP1.1\8eg\97p
112                 FProxyProtocol: Boolean;
113
114                 //\83v\83\8d\83L\83V\81i\93Ç\8d\9e\97p\81j
115                 FReadProxy: Boolean;
116                 FReadProxyAddress: string;
117                 FReadProxyPort: Integer;
118                 FReadProxyUserID: string;
119                 FReadProxyPassword: string;
120
121                 //\83v\83\8d\83L\83V\81i\8f\91\8d\9e\97p\81j
122                 FWriteProxy: Boolean;
123                 FWriteProxyAddress: string;
124                 FWriteProxyPort: Integer;
125                 FWriteProxyUserID: string;
126                 FWriteProxyPassword: string;
127
128                 //\83L\83\83\83r\83l\83b\83g
129                 FCabinetFontName: string;
130                 FCabinetFontSize: Integer;
131                 FCabinetFontBold: Boolean;
132                 FCabinetFontItalic: Boolean;
133                 FCabinetFontColor: TColor;
134                 FCabinetBackColor: TColor;
135
136                 //\83\8a\83X\83g
137                 FListFontName: string;
138                 FListFontSize: Integer;
139                 FListFontBold: Boolean;
140                 FListFontItalic: Boolean;
141                 FListFontColor: TColor;
142                 FListBackColor: TColor;
143
144                 //\83u\83\89\83E\83U
145                 FBrowserFontName: string;                       // ''...default
146                 FBrowserFontSize: Integer;              // 0...default
147                 FBrowserFontBold: Integer;              // 0...default, -1...False, 1...True
148                 FBrowserFontItalic: Integer;    // \8fã\82É\93¯\82
149                 FBrowserFontColor: Integer;             // -1...default
150                 FBrowserBackColor: Integer;             // \8fã\82É\93¯\82
151
152                 //\83G\83f\83B\83^
153                 FEditorFontName: string;
154                 FEditorFontSize: Integer;
155                 FEditorFontBold: Boolean;
156                 FEditorFontItalic: Boolean;
157                 FEditorFontColor: TColor;
158                 FEditorBackColor: TColor;
159
160                 //\83^\83u\83t\83H\83\93\83g
161                 FBrowserTabFontName: string;
162                 FBrowserTabFontSize: Integer;
163                 FBrowserTabFontBold: Boolean;
164                 FBrowserTabFontItalic: Boolean;
165
166                 //\83q\83\93\83g\83E\83B\83\93\83h\83E
167                 FHintFontName: string;
168                 FHintFontSize: Integer;
169                 //FHintFontBold: Boolean;
170                 //FHintFontItalic: Boolean;
171                 FHintFontColor: TColor;
172                 FHintBackColor: TColor;
173
174                 //\83E\83B\83\93\83h\83E\83T\83C\83Y
175                 FWindowTop: Integer;
176                 FWindowLeft: Integer;
177                 FWindowHeight: Integer;
178                 FWindowWidth: Integer;
179                 FWindowMax: Boolean;
180                 //\83\8a\83X\83g\83r\83\85\81[\83X\83^\83C\83\8b
181                 FListStyle: TViewStyle;
182
183                 //\83c\81[\83\8b\83o\81[\95\\8e¦
184                 FStdToolBarVisible: Boolean;
185                 FAddressBarVisible: Boolean;
186                 FLinkBarVisible: Boolean;
187                 FListToolBarVisible: Boolean;
188                 FListNameBarVisible: Boolean;
189                 FBrowserToolBarVisible: Boolean;
190                 FBrowserNameBarVisible: Boolean;
191
192                 //\83u\83\89\83E\83U\83^\83u
193                 FBrowserTabVisible: Boolean;
194                 FBrowserTabPosition: TGikoTabPosition;
195                 FBrowserTabAppend: TGikoTabAppend;
196                 FBrowserTabStyle: TGikoTabStyle;
197
198                 //\83\81\83b\83Z\81[\83W\83o\81[
199                 FMessageBarVisible: Boolean;
200                 FMessegeBarHeight: Integer;
201
202                 //\83X\83e\81[\83^\83X\83o\81[
203                 FStatusBarVisible: Boolean;
204
205                 //\83L\83\83\83r\83l\83b\83g\89Â\8e\8b\81E\83T\83C\83Y
206                 FCabinetVisible: Boolean;
207                 FCabinetWidth: Integer;
208
209                 //\83\8a\83X\83g\81E\83u\83\89\83E\83U\83T\83C\83Y
210                 FListOrientation: TGikoListOrientation;
211                 FListHeight: Integer;
212                 FListHeightState: TGikoListState;
213                 FListWidth: Integer;
214                 FListWidthState: TGikoListState;
215 //              FListHeightMax: Boolean;
216 //              FListWidthMax: Boolean;
217
218                 //\91\97\90M\97p\96¼\91O\81E\83\81\81[\83\8b
219                 FNameList: TStringList;
220                 FMailList: TStringList;
221
222                 //\83G\83f\83B\83^\81[\83E\83B\83\93\83h\83E\83T\83C\83Y
223                 FEditWindowTop: Integer;
224                 FEditWindowLeft: Integer;
225                 FEditWindowHeight: Integer;
226                 FEditWindowWidth: Integer;
227                 FEditWindowMax: Boolean;
228                 FEditWindowStay: Boolean;
229                 FEditWindowTranslucent: Boolean;
230
231                 //\83\8a\83X\83g\94Ô\8d\86\95\\8e¦
232                 FListViewNo: Boolean;
233                 //CSS\95\\8e¦
234                 FUseCSS: Boolean;
235                 //CSS\83t\83@\83C\83\8b\96¼
236                 FCSSFileName: string;
237                 // \83X\83L\83\93\95\\8e¦(\88ê\8e\9e\93I\82È\82à\82Ì\82Å ini \82É\95Û\91\82Í\82³\82ê\82È\82¢)
238                 FUseSkin: Boolean;
239                 //\82©\82¿\82ã\81`\82µ\82á\97p\82ÌSkin\82ð\97\98\97p\82·\82é\82©
240                 FUseKatjushaType : Boolean;
241                 //mail\97\93\95\\8e¦
242                 FShowMail: Boolean;
243                 /// \83\8c\83X\95\\8e¦\94Í\88Í
244                 FResRange                       : Longint;
245                 /// \8bN\93®\8e\9e\83\8c\83X\95\\8e¦\94Í\88Í\82Ì\8cÅ\92è
246                 FResRangeHold   : Boolean;
247                 /// \83X\83\8c\83b\83h\88ê\97\97\95\\8e¦\94Í\88Í
248                 FThreadRange    : TGikoThreadRange;
249                 //\94ñ\83A\83N\83e\83B\83u\8e\9e\83\8c\83X\83|\83b\83v\83A\83b\83v\95\\8e¦
250                 FUnActivePopup: Boolean;
251                 //\83\8c\83X\83|\83b\83v\83A\83b\83v\83w\83b\83_\81[\83{\81[\83\8b\83h
252                 FResPopupHeaderBold: Boolean;
253
254                 //\83\8d\83O\83t\83H\83\8b\83_
255                 FLogFolder: string;
256         FLogFolderP: string; //\83p\83X\96¼\82ª\83p\83X\8bæ\90Ø\82è\8bL\8d\86\82Å\8fI\82í\82Á\82Ä\82¢\82é\81B
257                 FNewLogFolder: string;
258
259                 //\83\8a\83X\83g\83J\83\89\83\80\83w\83b\83_\81[\83T\83C\83Y
260                 FBBSColumnWidth: array[0..0] of Integer;
261                 FCategoryColumnWidth: array[0..2] of Integer;
262                 FBoardColumnWidth: array[0..10] of Integer;
263
264                 /// \83J\83e\83S\83\8a\83\8a\83X\83g\83J\83\89\83\80\8f\87\8f\98
265                 FBBSColumnOrder : TGikoBBSColumnList;
266                 /// \94Â\83\8a\83X\83g\83J\83\89\83\80\8f\87\8f\98
267                 FCategoryColumnOrder : TGikoCategoryColumnList;
268                 /// \83X\83\8c\83\8a\83X\83g\83J\83\89\83\80\8f\87\8f\98
269                 FBoardColumnOrder : TGikoBoardColumnList;
270
271                 //\83\\81[\83g\8f\87
272                 FBBSSortIndex: Integer;
273                 FBBSSortOrder: Boolean;
274                 FCategorySortIndex: Integer;
275                 FCategorySortOrder: Boolean;
276                 FBoardSortIndex: Integer;
277                 FBoardSortOrder: Boolean;
278
279                 //Dat\97\8e\82¿\83X\83\8c\83\\81[\83g\8f\87
280                 FDatOchiSortIndex: Integer;
281                 FDatOchiSortOrder: Boolean;
282
283                 //\8di\8d\9e\82Ý\95\8e\9a\97ñ
284                 FSelectTextList: TStringList;
285
286                 //\94Â\88ê\97\97URL
287                 //FBoardURL2ch: string;
288                 FBoardURLs: TStringList;
289                 FBoardURLSelected: Integer;
290
291                 //\83\86\81[\83UID\81E\83p\83X\83\8f\81[\83h
292                 FUserID: string;
293                 FPassword: string;
294                 FAutoLogin: Boolean;
295                 FForcedLogin: Boolean;
296                 FDolibURL: string;
297
298                 //URL\83N\83\8a\83b\83N\8e\9e\8bN\93®\83A\83v\83\8a
299                 FURLApp: Boolean;
300                 FURLAppFile: string;
301
302                 //mailto\83N\83\8a\83b\83N\8e\9e\93®\8dì
303                 FOpenMailer: Boolean;
304
305                 //\8dí\8f\9c\8am\94F
306                 FDeleteMsg: Boolean;
307
308                 //CoolBar\81i\83\81\83C\83\93\81E\94Â\81E\83u\83\89\83E\83U\81j
309                 FMainCoolBar: array[0..MAIN_COOLBAND_COUNT - 1] of TCoolSet;
310                 FListCoolBar: array[0..LIST_COOLBAND_COUNT - 1] of TCoolSet;
311                 FBrowserCoolBar: array[0..BROWSER_COOLBAND_COUNT - 1] of TCoolSet;
312
313                 //ToolBar Wrapable
314                 FListToolBarWrapable: Boolean;
315                 FBrowserToolBarWrapable: Boolean;
316
317                 //\83|\83b\83v\83A\83b\83v\88Ê\92u
318                 FPopupPosition: TGikoPopupPosition;
319
320                 //\83A\83h\83\8c\83X\83o\81[
321                 FURLDisplay: Boolean;
322                 FAddressBarTabStop: Boolean;
323                 FLinkAddAddressBar: Boolean;
324                 FAddressHistoryCount: Integer;
325
326                 //\89æ\91\9c\83v\83\8c\83r\83\85\81[
327                 FPreviewVisible: Boolean;
328                 FPreviewSize: TGikoPreviewSize;
329                 FPreviewWait: Integer;
330
331                 // \83u\83\89\83E\83U
332                 FBrowserAutoMaximize: TGikoBrowserAutoMaximize;
333
334                 //\83X\83\8c\83b\83h\88ê\97\97\8dX\90V\83A\83C\83R\83\93\95\\8e¦
335                 FListIconVisible: Boolean;
336
337                 //\83X\83\8c\83b\83h\88ê\97\97\82ÅLog\82Ì\82 \82é\83X\83\8c\83b\83h\82Ì\82Ý\83X\83\8c\8dì\90¬\93ú\82ð\95\\8e¦\82·\82é\82©
338                 FCreationTimeLogs: Boolean;
339                 //\83X\83\8c\83b\83h\88ê\97\97\82Ì\83X\83\8c\90\90¬\93ú\82Å\96¢\97\88\82Ì\83X\83\8c\82Ì\90\90¬\93ú\82ð\95\\8e¦\82µ\82È\82¢
340                 FFutureThread: Boolean;
341
342                 //\8f\91\82«\8d\9e\82Ý\8e\9e\83}\83V\83\93\8e\9e\8aÔ\8eg\97p\90Ý\92è
343                 FUseMachineTime: Boolean;
344                 FTimeAdjustSec: Integer;
345                 FTimeAdjust: Boolean;
346
347                 //\82 \82Ú\81`\82ñ
348                 FAbonDeleterlo : Boolean; //&rlo;\82ð\8dí\82é\82©
349                 FAbonReplaceul : Boolean; //<ul>\83^\83O\82ð<br>\83^\83O\82É\92u\8a·\82·\82é\82©
350                 FPopUpAbon               : Boolean; //\83\8c\83X\83|\83b\83v\83A\83b\83v\8e\9e\82Ì\82 \82Ú\81`\82ñ\97L\8cø
351                 FShowNGLinesNum : Boolean; //\8aY\93\96\82µ\82½\82m\82f\83\8f\81[\83h\83t\83@\83C\83\8b\82Ì\8ds\90\94\82ð\95\\8e¦
352                 FAddResAnchor : Boolean; //NG\83\8c\83X\82Ö\82Ì\83\8c\83X\83A\83\93\83J\81[\82ð\92Ç\89Á\82·\82é
353                 FDeleteSyria : Boolean; //\83V\83\8a\83A\8cê\83u\83\89\83N\83\89\91Î\8dô
354                 FIgnoreKana     : Boolean;      //\91S\94¼\8ap\82Ð\82ç\83J\83i\82Ì\88á\82¢\82ð\96³\8e\8b\82·\82é\82©
355
356                 // \83X\83\8c\83b\83h\8di\8d\9e\83t\83B\81[\83\8b\83h\82Ì\95\9d
357                 FSelectComboBoxWidth : Integer;
358
359                 // \8dÅ\8cã\82É\91I\91ð\82³\82ê\82½\83I\83v\83V\83\87\83\93\83_\83C\83A\83\8d\83O\82Ì\83^\83u
360                 FOptionDialogTabIndex: Integer;
361
362                 // \8dÅ\8cã\82É\91I\91ð\82³\82ê\82½\83L\83\83\83r\83l\83b\83g
363                 FCabinetIndex: Integer;
364
365                 //\8fI\97¹\8e\9e\82É\8am\94F\83_\83C\83A\83\8d\83O\82ð\95\\8e¦\82·\82é\82©
366                 FShowDialogForEnd : Boolean;
367                 //\91S\82Ä\82Ì\83^\83u\95Â\82\82é\82Ì\82Æ\82«\82É\8am\94F\83_\83C\83A\83\8d\83O\82ð\95\\8e¦\82·\82é
368                 FShowDialogForAllTabClose: Boolean;
369                 //\8eæ\93¾\83\8c\83X\90\94\82Æ\83X\83\8c\83b\83h\82Ì\83\8c\83X\90\94\82ª\88Ù\82È\82Á\82½\82Æ\82«\82É\92Ê\8fí\94w\8ci\90F\82Æ\88á\82Á\82½\90F\82Ì\94w\8ci\90F\82ð\8eg\97p\82·\82é\82©
370                 FUseOddColorOddResNum: Boolean;
371                 FOddColor: TColor;
372                 //\83\8c\83X\90\94\91\9d\8c¸\8b­\92²\8e\9e\82É\81A\91I\91ð\83A\83C\83e\83\80\82É\83t\83H\81[\83J\83X\82ª\96³\82¢\82Æ\82«\82É\91¾\8e\9a\82É\82·\82é\82©
373                 FUnFocusedBold : Boolean;
374
375                 //Samba24\91Î\8dô\8b@\94\\82ð\8eg\82¤\82©
376                 FUseSamba: Boolean;
377
378                 //\83\8c\83X\83A\83\93\83J\81[\82ð\83N\83\8a\83b\83N\82µ\82Ä\83W\83\83\83\93\83v\82·\82é\82©
379                 FResAnchorJamp: Boolean;
380
381                 //Tab\8e©\93®\95Û\91
382                 FTabAutoLoadSave : Boolean;
383
384                 //\82É\82¿\82á\82ñ\8cê\88Ä\93à\83T\83|\81[\83g\8b@\94\
385                 F2chSupport : Boolean;
386
387                 // \83G\83f\83B\83^
388                 FSpaceToNBSP    : Boolean;      ///< \94¼\8ap\83X\83y\81[\83X\81ATab \82ð &nbsp; \82É\92u\8a·
389                 FAmpToCharRef   : Boolean;      ///< '&' \82ð &amp; \82É\92u\8a·
390
391                 //\83u\83\89\83E\83U\83^\83u\94ñ\95\\8e¦\82Ì\8e\9e\82Ì\83X\83\8c\88ê\97\97\82Å\82Ì\83J\81[\83\\83\8b\83L\81[\88Ú\93®\82Ì\96³\94½\89\9e\8e\9e\8aÔ
392                 FSelectInterval : Integer;
393
394                 //KuroutSettingTab \8fÚ\8d×\90Ý\92è\83^\83u\82ÌActiveTab
395                 FKuroutSettingTabIndex: Integer;
396
397                 //! \83}\83E\83X\83W\83F\83X\83`\83\83\81[
398                 FGestures       : TGestureModel;
399                 //! \83}\83E\83X\83W\83F\83X\83`\83\83\81[\82ð\8eg\97p\82·\82é\82©\82Ç\82¤\82©
400                 FGestureEnabled : Boolean;
401
402                 //\83t\83V\83A\83i\83g\83\89\83b\83v\90Ý\92è
403                 FLocalTrapAtt : Boolean;
404                 FRemoteTrapAtt : Boolean;
405                 FReadTimeOut: Integer;
406
407                 //! \8eg\97p\82·\82é\83X\83p\83\80\83t\83B\83\8b\83^\81[
408                 FSpamFilterAlgorithm : TGikoSpamFilterAlgorithm;
409                 //\83~\83\85\81[\83g\82µ\82Ä\82é\82©
410                 FMute: Boolean;
411                 //\83X\83\8c\8di\8d\9e\82Ý\82Å\96¢\8am\92è\95\8e\9a\82à\97L\8cø\82É\82·\82é\82©
412                 FUseUndecided: Boolean;
413
414                                 //Be2ch
415                 //\94F\8fØ\97p\83\86\81[\83UID\81E\83p\83X\83\8f\81[\83h
416                 FBeUserID: String;
417                 FBeCode: String;
418                 FBeAutoLogin: Boolean;
419                 FBeLogin: Boolean;
420                 //\97\9a\97ð\82Ì\8dÅ\91å\95Û\91\8c\8f\90\94
421                 FMaxRecordCount : Integer;
422
423                 //\83X\83\8c\83b\83h\88ê\97\97\82ð\83_\83E\83\93\83\8d\81[\83h\8cã\82É\83\\81[\83g\82·\82é\82©
424                 FAutoSortThreadList : Boolean;
425
426                 //InputAssist\83t\83H\81[\83\80\82Ì\88Ê\92u
427                 FInputAssistFormLeft :Integer;
428                 FInputAssistFormTop :Integer;
429                 //InputAssist\83t\83H\81[\83\80\82Ì\83T\83C\83Y
430                 FInputAssistFormWidth: Integer;
431                 FInputAssistFormHeight: Integer;
432
433                 //! Cookie\82É\95t\89Á\82·\82é\8cÅ\92è\83R\81[\83h
434                 FFixedCookie: String;
435         //! \83\8a\83\93\83N\88Ú\93®\97\9a\97ð\82Ì\95Û\8e\9d\90\94
436         FMoveHistorySize : Integer;
437         //! \8dÅ\8f¬\89»\82µ\82½\82Æ\82«\82É\83^\83X\83N\83g\83\8c\83C\82É\8ai\94[\82·\82é\82©
438         FStoredTaskTray : Boolean;
439         //! \83^\83u\82Ì\88Ú\93®\82Å\83\8b\81[\83v\82ð\8b\96\89Â\82·\82é
440         FLoopBrowserTabs : Boolean;
441         //! 100\83\8c\83X\95\\8e¦\82Ì\90æ\93ª\95\\8e¦\83\8c\83X\90\94
442         FHeadResCount : Integer;
443                 function GetMainCoolSet(Index: Integer): TCoolSet;
444                 function GetBoardCoolSet(Index: Integer): TCoolSet;
445                 function GetBrowserCoolSet(Index: Integer): TCoolSet;
446                 procedure SetMainCoolSet(Index: Integer; CoolSet: TCoolSet);
447                 procedure SetBoardCoolSet(Index: Integer; CoolSet: TCoolSet);
448                 procedure SetBrowserCoolSet(Index: Integer; CoolSet: TCoolSet);
449
450                 function GetBBSColumnWidth(index: Integer): Integer;
451                 function GetCategoryColumnWidth(index: Integer): Integer;
452                 function GetBoardColumnWidth(index: Integer): Integer;
453                 procedure SetBBSColumnWidth(index: Integer; value: Integer);
454                 procedure SetCategoryColumnWidth(index: Integer; value: Integer);
455                 procedure SetBoardColumnWidth(index: Integer; value: Integer);
456
457                 function GetSoundName(Index: Integer): string;
458                 function GetSoundViewName(Index: Integer): string;
459                 function GetSoundFileName(Index: Integer): string;
460                 procedure SetSoundFileName(Index: Integer; value: string);
461                 function Encrypt(s: string): string;
462                 function Decrypt(s: string): string;
463
464                 procedure MakeURLIniFile();
465
466                 procedure SetUseCSS( value: Boolean );
467                 procedure SetCSSFileName( fileName: string );
468         //! \83v\83\8d\83L\83V\90Ý\92è\93Ç\82Ý\8d\9e\82Ý
469         procedure ReadProxySettings(memIni: TMemIniFile);
470         //! \8ae\8eí\83E\83B\83\93\83h\83E\90Ý\92è\93Ç\82Ý\8d\9e\82Ý
471         procedure ReadWindowSettings(memIni: TMemIniFile);
472         //! \93ü\97Í\97\9a\97ð\93Ç\82Ý\8d\9e\82Ý\81i\8c\9f\8dõ\81{\83\81\81[\83\8b\97\93\81{\96¼\91O\81j
473         procedure ReadInputHisotrys(memIni: TMemIniFile);
474         //! \83\8a\83X\83g\83J\83\89\83\80\95\9d\93Ç\82Ý\8d\9e\82Ý
475         procedure ReadListColumnWidth(memIni: TMemIniFile);
476         //! \83J\83e\83S\83\8a\83\8a\83X\83g\83J\83\89\83\80\8f\87\8f\98\93Ç\82Ý\8d\9e\82Ý
477         procedure ReadOrdColumn(memIni: TMemIniFile);
478         protected
479
480         public
481                 constructor Create;
482                 destructor Destroy; override;
483                 function GetFileName: string;
484                 function GetBoardURLFileName: string;
485                 procedure ReadSettingFile;
486                 procedure ReadBoardURLsFile;
487                 procedure WriteSystemSettingFile;
488                 procedure WriteWindowSettingFile;
489                 procedure WriteNameMailSettingFile;
490                 procedure WriteFolderSettingFile();
491                 procedure WriteBoardURLSettingFile;
492                 function GetSoundCount: Integer;
493                 function FindSoundFileName(Name: string): string;
494
495                 function GetBoardFileName: string;
496                 function GetCustomBoardFileName: string;
497                 function GetBoardDir: string;
498                 function GetHtmlTempFileName: string;
499                 function GetAppDir: string;
500                 function GetTempFolder: string;
501                 function GetSentFileName: string;
502                 function GetConfigDir: string;
503                 function GetSkinDir: string;
504                 function GetSkinHeaderFileName: string;
505                 function GetSkinFooterFileName: string;
506                 function GetSkinResFileName: string;
507                 function GetSkinNewResFileName: string;
508                 function GetSkinBookmarkFileName: string;
509                 function GetSkinNewmarkFileName: string;
510                 function GetStyleSheetDir: string;
511                 function GetOutBoxFileName: string;
512                 function GetNGWordsDir: string;
513                 function GetBoardPlugInDir: string;
514                 function GetSambaFileName: string;
515                 function GetIgnoreFileName: string;
516                 function GetGestureFileName : string;
517                 function GetSpamFilterFileName : string;
518                 function GetLanguageFileName: string;
519                 function GetMainKeyFileName: String;
520                 function GetEditorKeyFileName: String;
521                 procedure WriteLogFolder(AVal : String);
522                 function GetInputAssistFileName : String;
523         {
524         \brief  \83\8a\83\93\83N\97\9a\97ð\82Ì\95Û\8e\9d\83T\83C\83Y\82Ìsetter
525         \param  AVal    \90Ý\92è\82·\82é\83T\83C\83Y( >0) 
526         }
527         procedure SetMoveHistorySize(AVal : Integer);
528                 //\8eó\90M\83o\83b\83t\83@\83T\83C\83Y
529                 property RecvBufferSize: Integer read FRecvBufferSize write FRecvBufferSize;
530                 //HTTP1.1\8eg\97p
531                 property Protocol: Boolean read FProtocol write FProtocol;
532                 //\83v\83\8d\83L\83V\90Ú\91±HTTP1.1\8eg\97p
533                 property ProxyProtocol: Boolean read FProxyProtocol write FProxyProtocol;
534
535                 property ReadProxy: Boolean read FReadProxy write FReadProxy;
536                 property ReadProxyAddress: string read FReadProxyAddress write FReadProxyAddress;
537                 property ReadProxyPort: Integer read FReadProxyPort write FReadProxyPort;
538                 property ReadProxyUserID: string read FReadProxyUserID write FReadProxyUserID;
539                 property ReadProxyPassword: string read FReadProxyPassword write FReadProxyPassword;
540
541                 property WriteProxy: Boolean read FWriteProxy write FWriteProxy;
542                 property WriteProxyAddress: string read FWriteProxyAddress write FWriteProxyAddress;
543                 property WriteProxyPort: Integer read FWriteProxyPort write FWriteProxyPort;
544                 property WriteProxyUserID: string read FWriteProxyUserID write FWriteProxyUserID;
545                 property WriteProxyPassword: string read FWriteProxyPassword write FWriteProxyPassword;
546
547                 property CabinetFontName: string read FCabinetFontName write FCabinetFontName;
548                 property CabinetFontSize: Integer read FCabinetFontSize write FCabinetFontSize;
549                 property CabinetFontBold: Boolean read FCabinetFontBold write FCabinetFontBold;
550                 property CabinetFontItalic: Boolean read FCabinetFontItalic write FCabinetFontItalic;
551                 property CabinetFontColor: TColor read FCabinetFontColor write FCabinetFontColor;
552                 property CabinetBackColor: TColor read FCabinetBackColor write FCabinetBackColor;
553
554                 property ListFontName: string read FListFontName write FListFontName;
555                 property ListFontSize: Integer read FListFontSize write FListFontSize;
556                 property ListFontBold: Boolean read FListFontBold write FListFontBold;
557                 property ListFontItalic: Boolean read FListFontItalic write FListFontItalic;
558                 property ListFontColor: TColor read FListFontColor write FListFontColor;
559                 property ListBackColor: TColor read FListBackColor write FListBackColor;
560
561                 property BrowserFontName: string read FBrowserFontName write FBrowserFontName;
562                 property BrowserFontSize: Integer read FBrowserFontSize write FBrowserFontSize;
563                 property BrowserFontBold: Integer read FBrowserFontBold write FBrowserFontBold;
564                 property BrowserFontItalic: Integer read FBrowserFontItalic write FBrowserFontItalic;
565                 property BrowserFontColor: Integer read FBrowserFontColor write FBrowserFontColor;
566                 property BrowserBackColor: Integer read FBrowserBackColor write FBrowserBackColor;
567
568                 property EditorFontName: string read FEditorFontName write FEditorFontName;
569                 property EditorFontSize: Integer read FEditorFontSize write FEditorFontSize;
570                 property EditorFontBold: Boolean read FEditorFontBold write FEditorFontBold;
571                 property EditorFontItalic: Boolean read FEditorFontItalic write FEditorFontItalic;
572                 property EditorFontColor: TColor read FEditorFontColor write FEditorFontColor;
573                 property EditorBackColor: TColor read FEditorBackColor write FEditorBackColor;
574
575                 property BrowserTabFontName: string read FBrowserTabFontName write FBrowserTabFontName;
576                 property BrowserTabFontSize: Integer read FBrowserTabFontSize write FBrowserTabFontSize;
577                 property BrowserTabFontBold: Boolean read FBrowserTabFontBold write FBrowserTabFontBold;
578                 property BrowserTabFontItalic: Boolean read FBrowserTabFontItalic write FBrowserTabFontItalic;
579
580                 property HintFontName: string read FHintFontName write FHintFontName;
581                 property HintFontSize: Integer read FHintFontSize write FHintFontSize;
582                 //property HintFontBold: Boolean read FHintFontBold write FHintFontBold;
583                 //property HintFontItalic: Boolean read FHintFontItalic write FHintFontItalic;
584                 property HintFontColor: TColor read FHintFontColor write FHintFontColor;
585                 property HintBackColor: TColor read FHintBackColor write FHintBackColor;
586
587                 property WindowTop: Integer read FWindowTop write FWindowTop;
588                 property WindowLeft: Integer read FWindowLeft write FWindowLeft;
589                 property WindowHeight: Integer read FWindowHeight write FWindowHeight;
590                 property WindowWidth: Integer read FWindowWidth write FWindowWidth;
591                 property WindowMax: Boolean read FWindowMax write FWindowMax;
592                 property ListStyle: TViewStyle read FListStyle write FListStyle;
593
594                 property StdToolBarVisible: Boolean read FStdToolBarVisible write FStdToolBarVisible;
595                 property AddressBarVisible: Boolean read FAddressBarVisible write FAddressBarVisible;
596                 property LinkBarVisible: Boolean read FLinkBarVisible write FLinkBarVisible;
597                 property ListToolBarVisible: Boolean read FListToolBarVisible write FListToolBarVisible;
598                 property ListNameBarVisible: Boolean read FListNameBarVisible write FListNameBarVisible;
599                 property BrowserToolBarVisible: Boolean read FBrowserToolBarVisible write FBrowserToolBarVisible;
600                 property BrowserNameBarVisible: Boolean read FBrowserNameBarVisible write FBrowserNameBarVisible;
601
602                 property BrowserTabVisible: Boolean read FBrowserTabVisible write FBrowserTabVisible;
603                 property BrowserTabPosition: TGikoTabPosition read FBrowserTabPosition write FBrowserTabPosition;
604                 property BrowserTabAppend: TGikoTabAppend read FBrowserTabAppend write FBrowserTabAppend;
605                 property BrowserTabStyle: TGikoTabStyle read FBrowserTabStyle write FBrowserTabStyle;
606
607                 property MessageBarVisible: Boolean read FMessageBarVisible write FMessageBarVisible;
608                 property MessegeBarHeight: Integer read FMessegeBarHeight write FMessegeBarHeight;
609
610                 property StatusBarVisible: Boolean read FStatusBarVisible write FStatusBarVisible;
611
612                 property CabinetVisible: Boolean read FCabinetVisible write FCabinetVisible;
613                 property CabinetWidth: Integer read FCabinetWidth write FCabinetWidth;
614
615                 property ListOrientation: TGikoListOrientation read FListOrientation write FListOrientation;
616                 property ListHeight: Integer read FListHeight write FListHeight;
617                 property ListHeightState: TGikoListState read FListHeightState write FListHeightState;
618                 property ListWidth: Integer read FListWidth write FListWidth;
619                 property ListWidthState: TGikoListState read FListWidthState write FListWidthState;
620 //              property ListHeightMax: Boolean read FListHeightMax write FListHeightMax;
621 //              property ListWidthMax: Boolean read FListWidthMax write FListWidthMax;
622
623                 property NameList: TStringList read FNameList write FNameList;
624                 property MailList: TStringList read FMailList write FMailList;
625                 property SelectTextList: TStringList read FSelectTextList write FSelectTextList;
626
627                 property EditWindowTop: Integer read FEditWindowTop write FEditWindowTop;
628                 property EditWindowLeft: Integer read FEditWindowLeft write FEditWindowLeft;
629                 property EditWindowHeight: Integer read FEditWindowHeight write FEditWindowHeight;
630                 property EditWindowWidth: Integer read FEditWindowWidth write FEditWindowWidth;
631                 property EditWindowMax: Boolean read FEditWindowMax write FEditWindowMax;
632                 property EditWindowStay: Boolean read FEditWindowStay write FEditWindowStay;
633                 property EditWindowTranslucent: Boolean read FEditWindowTranslucent write FEditWindowTranslucent;
634
635                 property ListViewNo: Boolean read FListViewNo write FListViewNo;
636                 property UseCSS: Boolean read FUseCSS write SetUseCSS;
637                 property CSSFileName: string read FCSSFileName write SetCSSFileName;
638                 property UseKatjushaType : Boolean read FUseKatjushaType write FUseKatjushaType;
639                 property UseSkin: Boolean read FUseSkin;
640
641                 property ShowMail: Boolean read FShowMail write FShowMail;
642                 property ResRange : Longint read FResRange write FResRange;
643                 property ResRangeHold : Boolean read FResRangeHold write FResRangeHold;
644                 property ThreadRange    : TGikoThreadRange read FThreadRange write FThreadRange;
645                 property UnActivePopup: Boolean read FUnActivePopup write FUnActivePopup;
646                 property ResPopupHeaderBold: Boolean read FResPopupHeaderBold write FResPopupHeaderBold;
647
648                 property LogFolder: string read FLogFolder write WriteLogFolder;
649         property LogFolderP: string read FLogFolderP;
650                 property NewLogFolder: string read FNewLogFolder write FNewLogFolder;
651
652                 property BBSColumnWidth[index: Integer]: Integer read GetBBSColumnWidth write SetBBSColumnWidth;
653                 property CategoryColumnWidth[index: Integer]: Integer read GetCategoryColumnWidth write SetCategoryColumnWidth;
654                 property BoardColumnWidth[index: Integer]: Integer read GetBoardColumnWidth write SetBoardColumnWidth;
655
656                 property BBSColumnOrder : TGikoBBSColumnList read FBBSColumnOrder write FBBSColumnOrder;
657                 property CategoryColumnOrder : TGikoCategoryColumnList read FCategoryColumnOrder write FCategoryColumnOrder;
658                 property BoardColumnOrder : TGikoBoardColumnList read FBoardColumnOrder write FBoardColumnOrder;
659
660                 property SoundName[index: Integer]: string read GetSoundName;
661                 property SoundViewName[index: Integer]: string read GetSoundViewName;
662                 property SoundFileName[index: Integer]: string read GetSoundFileName write SetSoundFileName;
663
664                 property BBSSortIndex: Integer read FBBSSortIndex write FBBSSortIndex;
665                 property BBSSortOrder: Boolean read FBBSSortOrder write FBBSSortOrder;
666                 property CategorySortIndex: Integer read FCategorySortIndex write FCategorySortIndex;
667                 property CategorySortOrder: Boolean read FCategorySortOrder write FCategorySortOrder;
668                 property BoardSortIndex: Integer read FBoardSortIndex write FBoardSortIndex;
669                 property BoardSortOrder: Boolean read FBoardSortOrder write FBoardSortOrder;
670
671                 property DatOchiSortIndex: Integer read FDatOchiSortIndex write FDatOchiSortIndex;
672                 property DatOchiSortOrder: Boolean read FDatOchiSortOrder write FDatOchiSortOrder;
673
674                 //property BoardURL2ch: string read FBoardURL2ch write FBoardURL2ch;
675                 property BoardURLs: TStringList read FBoardURLs write FBoardURLs;
676                 property BoardURLSelected: Integer read FBoardURLSelected write FBoardURLSelected;
677                 property UserID: string read FUserID write FUserID;
678                 property Password: string read FPassword write FPassword;
679                 property AutoLogin: Boolean read FAutoLogin write FAutoLogin;
680                 property ForcedLogin: Boolean read FForcedLogin write FForcedLogin;
681                 property DolibURL: string read FDolibURL write FDolibURL;
682
683                 property URLApp: Boolean read FURLApp write FURLApp;
684                 property URLAppFile: string read FURLAppFile write FURLAppFile;
685
686                 property OpenMailer: Boolean read FOpenMailer write FOpenMailer;
687
688                 property DeleteMsg: Boolean read FDeleteMsg write FDeleteMsg;
689
690                 property MainCoolSet[Index: Integer]: TCoolSet read GetMainCoolSet write SetMainCoolSet;
691                 property ListCoolSet[Index: Integer]: TCoolSet read GetBoardCoolSet write SetBoardCoolSet;
692                 property BrowserCoolSet[Index: Integer]: TCoolSet read GetBrowserCoolSet write SetBrowserCoolSet;
693
694                 property ListToolBarWrapable: Boolean read FListToolBarWrapable write FListToolBarWrapable;
695                 property BrowserToolBarWrapable: Boolean read FBrowserToolBarWrapable write FBrowserToolBarWrapable;
696
697                 property PopupPosition: TGikoPopupPosition read FPopupPosition write FPopupPosition;
698
699                 property URLDisplay: Boolean read FURLDisplay write FURLDisplay;
700                 property AddressBarTabStop: Boolean read FAddressBarTabStop write FAddressBarTabStop;
701                 property LinkAddAddressBar: Boolean read FLinkAddAddressBar write FLinkAddAddressBar;
702                 property AddressHistoryCount: Integer read FAddressHistoryCount write FAddressHistoryCount;
703
704                 property PreviewVisible: Boolean read FPreviewVisible write FPreviewVisible;
705                 property PreviewSize: TGikoPreviewSize read FPreviewSize write FPreviewSize;
706                 property PreviewWait: Integer read FPreviewWait write FPreviewWait;
707                 property BrowserAutoMaximize: TGikoBrowserAutoMaximize read FBrowserAutoMaximize write FBrowserAutoMaximize;
708
709                 property ListIconVisible: Boolean read FListIconVisible write FListIconVisible;
710                 property CreationTimeLogs: Boolean read FCreationTimeLogs write FCreationTimeLogs;
711                 property FutureThread: Boolean read FFutureThread write FFutureThread;
712
713                 property UseMachineTime: Boolean read FUseMachineTime write FUseMachineTime;
714                 property TimeAdjustSec: Integer read FTimeAdjustSec write FTimeAdjustSec;
715                 property TimeAdjust: Boolean read FTimeAdjust write FTimeAdjust;
716
717                 //\82 \82Ú\81`\82ñ
718                 property AbonDeleterlo : Boolean read FAbonDeleterlo write FAbonDeleterlo;
719                 property AbonReplaceul : Boolean read FAbonReplaceul write FAbonReplaceul;
720                 property PopUpAbon               : Boolean read FPopUpAbon write FPopUpAbon;
721                 property ShowNGLinesNum : Boolean read FShowNGLinesNum write FShowNGLinesNum;
722                 property AddResAnchor : Boolean read FAddResAnchor write FAddResAnchor;
723                 property DeleteSyria : Boolean read FDeleteSyria write FDeleteSyria;
724                 property IgnoreKana : Boolean read FIgnoreKana write FIgnoreKana;
725                 // \83X\83\8c\83b\83h\8di\8d\9e\83t\83B\81[\83\8b\83h\82Ì\95\9d
726                 property SelectComboBoxWidth : Integer read FSelectComboBoxWidth write FSelectComboBoxWidth;
727
728                 // \8dÅ\8cã\82É\91I\91ð\82³\82ê\82½\83I\83v\83V\83\87\83\93\83_\83C\83A\83\8d\83O\82Ì\83^\83u
729                 property OptionDialogTabIndex : Integer read FOptionDialogTabIndex write FOptionDialogTabIndex;
730
731                 // \8dÅ\8cã\82É\91I\91ð\82³\82ê\82½\83L\83\83\83r\83l\83b\83g
732                 property CabinetIndex : Integer read FCabinetIndex write FCabinetIndex;
733
734                 //\8fI\97¹\8e\9e\82É\8am\94F\83_\83C\83A\83\8d\83O\82ð\95\\8e¦\82·\82é\82©
735                 property ShowDialogForEnd : Boolean read FShowDialogForEnd write FShowDialogForEnd;
736                 property ShowDialogForAllTabClose: Boolean read FShowDialogForAllTabClose write FShowDialogForAllTabClose;
737                 //\8eæ\93¾\83\8c\83X\90\94\82Æ\83X\83\8c\83b\83h\82Ì\83\8c\83X\90\94\82ª\88Ù\82È\82Á\82½\82Æ\82«\82É\92Ê\8fí\94w\8ci\90F\82Æ\88á\82Á\82½\90F\82Ì\94w\8ci\90F\82ð\8eg\97p\82·\82é\82©
738                 property UseOddColorOddResNum: Boolean read FUseOddColorOddResNum write FUseOddColorOddResNum;
739                 property OddColor: TColor read FOddColor write FOddColor;
740                 property UnFocusedBold : Boolean read FUnFocusedBold write FUnFocusedBold;
741                 property UseSamba: Boolean read FUseSamba write FUseSamba;
742                                 property ResAnchorJamp: Boolean read FResAnchorJamp write FResAnchorJamp;
743
744                 // \83G\83f\83B\83^
745                 property SpaceToNBSP    : Boolean       read FSpaceToNBSP               write FSpaceToNBSP;
746                 property AmpToCharRef   : Boolean       read FAmpToCharRef      write FAmpToCharRef;
747
748                 property SelectInterval : Integer       read FSelectInterval    write FSelectInterval;
749                 //Tab\95Û\91
750                 property TabAutoLoadSave: Boolean           read FTabAutoLoadSave      write FTabAutoLoadSave;
751                                 //property Gengo: TStringList read F2chLanguage write F2chLanguage;
752                                 property GengoSupport : Boolean read F2chSupport write F2chSupport;
753                 property KuroutSettingTabIndex: Integer read FKuroutSettingTabIndex write FKuroutSettingTabIndex;
754                 //! \83}\83E\83X\83W\83F\83X\83`\83\83\81[
755                 property Gestures : TGestureModel read FGestures write FGestures;
756                 //! \83}\83E\83X\83W\83F\83X\83`\83\83\81[\82ð\8eg\97p\82·\82é\82©\82Ç\82¤\82©
757                 property GestureEnabled : Boolean read FGestureEnabled write FGestureEnabled;
758                 //\83t\83V\83A\83i\83g\83\89\83b\83v\90Ý\92è
759                 property LocalTrapAtt : Boolean read FLocalTrapAtt write FLocalTrapAtt;
760                 property RemoteTrapAtt : Boolean read FRemoteTrapAtt write FRemoteTrapAtt;
761                 property ReadTimeOut: Integer read FReadTimeOut write FReadTimeOut;
762                 //! \8eg\97p\82·\82é\83X\83p\83\80\83t\83B\83\8b\83^
763                 property SpamFilterAlgorithm : TGikoSpamFilterAlgorithm
764                         read FSpamFilterAlgorithm write FSpamFilterAlgorithm;
765                 property Mute: Boolean read FMute write FMute;
766                 property UseUndecided: Boolean read FUseUndecided write FUseUndecided;
767
768                 property BeUserID: string read FBeUserID write FBeUserID;
769                 property BeCode: string read FBeCode write FBeCode;
770                 property BeAutoLogin: Boolean read FBeAutoLogin write FBeAutoLogin;
771                 property BeLogin: Boolean read FBeLogin write FBeLogin;
772                 property MaxRecordCount : Integer read FMaxRecordCount write FMaxRecordCount;
773                 //! \83X\83\8c\83b\83h\88ê\97\97\83_\83E\83\93\83\8d\81[\83h\8cã\82É\83X\83\8c\83b\83h\96¼\82Å\8f¸\8f\87\83\\81[\83g\82·\82é\82©
774                 property AutoSortThreadList : Boolean read FAutoSortThreadList write FAutoSortThreadList;
775                 //! InputAssist\83t\83H\81[\83\80\82Ì\88Ê\92u
776                 property InputAssistFormLeft :Integer read FInputAssistFormLeft write FInputAssistFormLeft;
777                 property InputAssistFormTop :Integer read FInputAssistFormTop write FInputAssistFormTop;
778                 //! InputAssist\83t\83H\81[\83\80\82Ì\83T\83C\83Y
779                 property InputAssistFormWidth: Integer read FInputAssistFormWidth write FInputAssistFormWidth;
780                 property InputAssistFormHeight: Integer read FInputAssistFormHeight write FInputAssistFormHeight;
781                 //! Cookie\82É\95t\89Á\82·\82é\8cÅ\92è\83R\81[\83h
782                 property FixedCookie: String read FFixedCookie write FFixedCookie;
783         //! \83\8a\83\93\83N\88Ú\93®\97\9a\97ð\82Ì\95Û\8e\9d\90\94
784         property MoveHistorySize : Integer read FMoveHistorySize write SetMoveHistorySize;
785         //! \8dÅ\8f¬\89»\8e\9e\82É\83^\83X\83N\83g\83\8c\83C\82É\8ai\94[\82·\82é\82©
786         property StoredTaskTray : Boolean read FStoredTaskTray write FStoredTaskTray;
787         //! \83u\83\89\83E\83U\83^\83u\82Ì\83\8b\81[\83v\82ð\8b\96\89Â\82·\82é
788         property LoopBrowserTabs : Boolean read FLoopBrowserTabs write FLoopBrowserTabs;
789         //! 100\83\8c\83X\95\\8e¦\82Ì\90æ\93ª\95\\8e¦\83\8c\83X\90\94
790         property HeadResCount : Integer read FHeadResCount write FHeadResCount;
791 end;
792
793
794 const
795 //      MAIN_COOLBAND_COUNT = 4;                //\83\81\83C\83\93CoolBand\82Ì\90\94
796 //      LIST_COOLBAND_COUNT = 2;                //\94ÂCoolBand\82Ì\90\94
797 //      BROWSER_COOLBAND_COUNT = 3;     //\83u\83\89\83E\83UCoolBand\82Ì\90\94
798
799         BOARD_FILE_NAME                                                         = 'board.2ch';
800         CUSTOMBOARD_FILE_NAME                                   = 'custom.2ch';
801         BOARD_DIR_NAME                                                          = 'Board';
802         KEY_SETTING_FILE_NAME                                   = 'key.ini';
803         EKEY_SETTING_FILE_NAME                          = 'Ekey.ini';
804         TEMP_FOLDER                                                                             = 'Temp';
805         OUTBOX_FILE_NAME                                                        = 'outbox.ini';
806         SENT_FILE_NAME                                                          = 'sent.ini';
807         CONFIG_DIR_NAME                                                         = 'config';
808         CSS_DIR_NAME                                                                    = 'css';
809         SKIN_DIR_NAME                                                                   = 'skin';
810         SKIN_HEADER_FILE_NAME                                   = 'Header.html';
811         SKIN_FOOTER_FILE_NAME                                   = 'Footer.html';
812         SKIN_NEWRES_FILE_NAME                                   = 'NewRes.html';
813         SKIN_RES_FILE_NAME                                              = 'Res.html';
814         SKIN_BOOKMARK_FILE_NAME                         = 'Bookmark.html';
815         SKIN_NEWMARK_FILE_NAME                          = 'Newmark.html';
816         NGWORDs_DIR_NAME : String               = 'NGwords';
817         BOARD_PLUGIN_DIR_NAME                                   = 'BoardPlugin';
818         SAMBATIME_FILE_NAME : String    = 'Samba.ini';
819         IGNORE_FILE_NAME : String               = 'Ignore.txt';
820 //      DOLIB_LOGIN_URL     = '/~tora3n2c/futen.cgi';
821         MAX_POPUP_RES : Integer = 10;
822         GESTURE_FILE_NAME                                                       = 'Gestures.ini';
823         SPAMFILTER_FILE_NAME                                    = 'SpamFilter.ini';
824                 LANGUAGE_FILE_NAME    = 'language.ini';
825         INPUTASSIST_FILE_NAME   = 'InputAssist.ini';
826     FIXED_COOKIE =           'hana=mogera';
827
828
829 implementation
830
831 uses
832         Math, UCryptAuto, UBase64;
833
834 type
835         TSoundName = record
836                 Name: string;
837                 ViewName: string;
838                 FileName: string;
839         end;
840
841 const
842         INI_FILE_NAME: string                            = 'gikoNavi.ini';
843         BOARD_URL_INI_FILE_NAME: string = 'url.ini';
844         DEFAULT_FONT_NAME: string                = '\82l\82\82o\83S\83V\83b\83N';
845         DEFAULT_FONT_SIZE: Integer              = 9;
846         DEFAULT_FONT_COLOR: string              = 'clWindowText';
847         DEFAULT_WINDOW_COLOR: string    = 'clWindow';
848         DEFAULT_TAB_FONT_NAME: string            = '\82l\82\82o\83S\83V\83b\83N';
849         DEFAULT_TAB_FONT_SIZE: Integer          = 9;
850         DEFAULT_2CH_BOARD_URL1: string = 'http://menu.2ch.net/bbsmenu.html';
851         GIKO_ENCRYPT_TEXT: string                = 'gikoNaviEncryptText';
852
853 var
854         SOUND_NAME: array[0..4] of TSoundName = (
855                 (Name: 'New';                           ViewName: '\8eæ\93¾\90¬\8c÷';                                    FileName: ''),
856                 (Name: 'NewDiff';               ViewName: '\8eæ\93¾\90¬\8c÷(\8d·\95ª)';              FileName: ''),
857                 (Name: 'NoChange';       ViewName: '\96¢\8dX\90V';                                             FileName: ''),
858 //              (Name: 'RoundEnd';       ViewName: '\8f\84\89ñ\8fI\97¹(\8eæ\93¾\82 \82è)'; FileName: ''),
859 //              (Name: 'RoundNone';     ViewName: '\8f\84\89ñ\8fI\97¹(\8eæ\93¾\82È\82µ)'; FileName: ''),
860                 (Name: 'ResEnd';                 ViewName: '\83\8c\83X\91\97\90M\8a®\97¹';                       FileName: ''),
861                 (Name: 'Error';                 ViewName: '\83G\83\89\81[';                                              FileName: ''));
862
863 constructor TGikoBBSColumnList.Create;
864 begin
865         inherited;
866 end;
867
868 destructor TGikoBBSColumnList.Destroy;
869 begin
870         inherited;
871 end;
872
873 function TGikoBBSColumnList.GetItem( index : integer ) : TGikoBBSColumnID;
874 begin
875         Result := TGikoBBSColumnID( inherited Items[ index ] );
876 end;
877
878 procedure TGikoBBSColumnList.SetItem( index : integer; value : TGikoBBSColumnID);
879 begin
880         inherited Items[ index ] := Pointer( value );
881 end;
882
883 function TGikoBBSColumnList.Add( value : TGikoBBSColumnID ) : Integer;
884 begin
885         Result := inherited Add( Pointer( value ) );
886 end;
887
888 constructor TGikoCategoryColumnList.Create;
889 begin
890         inherited;
891 end;
892
893 destructor TGikoCategoryColumnList.Destroy;
894 begin
895         inherited;
896 end;
897
898 function TGikoCategoryColumnList.GetItem( index : integer ) : TGikoCategoryColumnID;
899 begin
900         Result := TGikoCategoryColumnID( inherited Items[ index ] );
901 end;
902
903 procedure TGikoCategoryColumnList.SetItem( index : integer; value : TGikoCategoryColumnID);
904 begin
905         inherited Items[ index ] := Pointer( value );
906 end;
907
908 function TGikoCategoryColumnList.Add( value : TGikoCategoryColumnID ) : Integer;
909 begin
910         Result := inherited Add( Pointer( value ) );
911 end;
912
913 constructor TGikoBoardColumnList.Create;
914 begin
915         inherited;
916 end;
917
918 destructor TGikoBoardColumnList.Destroy;
919 begin
920         inherited;
921 end;
922
923 function TGikoBoardColumnList.GetItem( index : integer ) : TGikoBoardColumnID;
924 begin
925         Result := TGikoBoardColumnID( inherited Items[ index ] );
926 end;
927
928 procedure TGikoBoardColumnList.SetItem( index : integer; value : TGikoBoardColumnID);
929 begin
930         inherited Items[ index ] := Pointer( value );
931 end;
932
933 function TGikoBoardColumnList.Add( value : TGikoBoardColumnID ) : Integer;
934 begin
935         Result := inherited Add( Pointer( value ) );
936 end;
937
938 //\83R\83\93\83X\83g\83\89\83N\83^
939 constructor TSetting.Create();
940 begin
941         FNameList := TStringList.Create;
942         FMailList := TStringList.Create;
943         FSelectTextList := TStringList.Create;
944         FBoardURLs := TStringList.Create;
945         FBBSColumnOrder := TGikoBBSColumnList.Create;
946         FCategoryColumnOrder := TGikoCategoryColumnList.Create;
947         FBoardColumnOrder := TGikoBoardColumnList.Create;
948         FGestures := TGestureModel.Create;
949         FNameList.Duplicates := dupIgnore;
950         FMailList.Duplicates := dupIgnore;
951         FBoardURLs.Duplicates := dupIgnore;
952         FSelectTextList.Duplicates := dupIgnore;
953         ReadSettingFile();
954         ReadBoardURLsFile();
955 end;
956
957 //\83f\83X\83g\83\89\83N\83^
958 destructor TSetting.Destroy();
959 begin
960         inherited;
961         FBoardColumnOrder.Free;
962         FCategoryColumnOrder.Free;
963         FBBSColumnOrder.Free;
964         FSelectTextList.Free;
965         FBoardURLs.Free;
966         FMailList.Free;
967         FNameList.Free;
968         FGestures.Free;
969 end;
970
971 //\8f\89\8aú\89»\83t\83@\83C\83\8b\96¼\8eæ\93¾\81i\83p\83X\81{\83t\83@\83C\83\8b\96¼\81j
972 function TSetting.GetFileName(): string;
973 begin
974         Result := ExtractFilePath(Application.ExeName) + INI_FILE_NAME;
975 end;
976
977 //\94Â\8dX\90V\97pURL\90Ý\92è\83t\83@\83C\83\8b\96¼\81i\83p\83X\81{\83t\83@\83C\83\8b\96¼\81j
978 function TSetting.GetBoardURLFileName(): string;
979 begin
980         Result := ExtractFilePath(Application.ExeName) + BOARD_URL_INI_FILE_NAME;
981 end;
982
983 //\90Ý\92è\83t\83@\83C\83\8b\93Ç\8d\9e
984 procedure TSetting.ReadSettingFile();
985 var
986         ini: TMemIniFile;
987         i: Integer;
988         Exists: Boolean;
989         s: string;                                               
990         CoolSet: TCoolSet;
991 begin
992         Exists := FileExists(GetFileName);
993         ini := TMemIniFile.Create(GetFileName);
994         try
995                 //\8eó\90M\83o\83b\83t\83@\83T\83C\83Y
996                 FRecvBufferSize := ini.ReadInteger('HTTP', 'RecvBufferSize', 4096);
997                 //HTTP1.1\8eg\97p
998                 FProtocol := ini.ReadBool('HTTP', 'Protocol', True);
999                 //\83v\83\8d\83L\83V\90Ú\91±HTTP1.1\8eg\97p
1000                 FProxyProtocol := ini.ReadBool('HTTP', 'ProxyProtocol', False);
1001
1002         // \83v\83\8d\83L\83V\90Ý\92è\93Ç\82Ý\8d\9e\82Ý
1003         ReadProxySettings( ini );
1004
1005         // \8ae\8eí\83E\83B\83\93\83h\83E\82Ì\90Ý\92è\93Ç\82Ý\8d\9e\82Ý
1006         ReadWindowSettings( ini );
1007
1008                 FWindowTop := ini.ReadInteger('WindowSize', 'Top', -1);
1009                 FWindowLeft := ini.ReadInteger('WindowSize', 'Left', -1);
1010                 FWindowHeight := ini.ReadInteger('WindowSize', 'Height', -1);
1011                 FWindowWidth := ini.ReadInteger('WindowSize', 'Width', -1);
1012                 FWindowMax := ini.ReadBool('WindowSize', 'Max', false);
1013
1014                 if FWindowHeight <= 0 then      FWindowHeight := 400;
1015                 if FWindowWidth <= 0 then FWindowWidth := 600;
1016
1017                 FListStyle := TViewStyle(ini.ReadInteger('ViewStyle', 'ListView', Ord(vsReport)));
1018
1019                 FEditWindowTop := ini.ReadInteger('EditorWindowSize', 'Top', -1);
1020                 FEditWindowLeft := ini.ReadInteger('EditorWindowSize', 'Left', -1);
1021                 FEditWindowHeight := ini.ReadInteger('EditorWindowSize', 'Height', -1);
1022                 FEditWindowWidth := ini.ReadInteger('EditorWindowSize', 'Width', -1);
1023                 FEditWindowMax := ini.ReadBool('EditorWindowSize', 'Max', False);
1024                 FEditWindowStay := ini.ReadBool('EditorWindowSize', 'Stay', False);
1025                 FEditWindowTranslucent := ini.ReadBool('EditorWindowSize', 'Translucent', False);
1026
1027                 FOptionDialogTabIndex := ini.ReadInteger('OptionDialog', 'TabIndex', 0);
1028
1029                 //\83c\81[\83\8b\83o\81[
1030                 FStdToolBarVisible := ini.ReadBool('ToolBar', 'StdVisible', True);
1031                 FAddressBarVisible := ini.ReadBool('ToolBar', 'AddressVisible', True);
1032                 FLinkBarVisible := ini.ReadBool('ToolBar', 'LinkVisible', True);
1033                 FListToolBarVisible := ini.ReadBool('ToolBar', 'ListVisible', True);
1034                 FListNameBarVisible := ini.ReadBool('ToolBar', 'ListNameVisible', True);
1035                 FBrowserToolBarVisible := ini.ReadBool('ToolBar', 'BrowserVisible', True);
1036                 FBrowserNameBarVisible := ini.ReadBool('ToolBar', 'BrowserNameVisible', True);
1037                 //\83c\81[\83\8b\83o\81[Wrapable
1038                 FListToolBarWrapable := ini.ReadBool('ToolBar', 'ListWrapable', False);
1039                 FBrowserToolBarWrapable := ini.ReadBool('ToolBar', 'BrowserWrapable', False);
1040
1041                 FBrowserTabVisible := ini.ReadBool('Tab', 'BrowserTabVisible', True);
1042                 FBrowserTabPosition := TGikoTabPosition(ini.ReadInteger('Tab', 'BrowserTabPosition', Ord(gtpTop)));
1043                 FBrowserTabAppend := TGikoTabAppend(ini.ReadInteger('Tab', 'BrowserTabAppend', Ord(gtaFirst)));
1044                 FBrowserTabStyle := TGikoTabStyle(ini.ReadInteger('Tab', 'BrowserTabStyle', Ord(gtsFlat)));
1045
1046                 FMessageBarVisible := ini.ReadBool('MessageBar', 'Visible', True);
1047                 FMessegeBarHeight := ini.ReadInteger('MessageBar', 'Height', 30);
1048
1049                 FStatusBarVisible := ini.ReadBool('StatusBar', 'Visible', True);
1050
1051                 FCabinetVisible := ini.ReadBool('Cabinet', 'Visible', True);
1052                 FCabinetWidth := ini.ReadInteger('Cabinet', 'Width', 200);
1053                 FCabinetIndex := ini.ReadInteger('Cabinet', 'Index', 0);
1054
1055                 FListOrientation := TGikoListOrientation(ini.ReadInteger('List', 'Orientation', Ord(gloHorizontal)));
1056                 FListHeight := ini.ReadInteger('List', 'Height', 180);
1057                 FListHeightState := TGikoListState(ini.ReadInteger('List', 'HeightState', Ord(glsNormal)));
1058                 FListWidth := ini.ReadInteger('List', 'Width', 180);
1059                 FListWidthState := TGikoListState(ini.ReadInteger('List', 'WidthState', Ord(glsNormal)));
1060 //              FListHeightMax := ini.ReadBool('List', 'HeightMax', False);
1061 //              FListWidthMax := ini.ReadBool('List', 'WidthMax', False);
1062
1063         // \93ü\97Í\8d\80\96Ú\82Ì\97\9a\97ð\82ð\93Ç\82Ý\8d\9e\82Þ
1064         ReadInputHisotrys( ini );
1065
1066                 // \83\8a\83X\83g\83J\83\89\83\80\95\9d
1067         ReadListColumnWidth( ini );
1068
1069                 // \83J\83e\83S\83\8a\83\8a\83X\83g\83J\83\89\83\80\8f\87\8f\98
1070         ReadOrdColumn( ini );
1071
1072                 //\83\8a\83X\83g\94Ô\8d\86
1073                 FListViewNo := ini.ReadBool('Function', 'ListViewNo', True);
1074                 //CSS
1075                 UseCSS := ini.ReadBool('CSS', 'UseCSS', True);
1076                 //CSS\83t\83@\83C\83\8b\96¼
1077                 CSSFileName := ini.ReadString('CSS', 'FileName', 'default.css');
1078                 //\82©\82µ\82ã\81`\82µ\82á\82Ì\83X\83L\83\93\82ð\8eg\82¤\82©
1079                 FUseKatjushaType := ini.ReadBool('CSS', 'UseKatjushaType', false);
1080
1081                 //Mail\97\93\95\\8e¦
1082                 FShowMail := ini.ReadBool('Thread', 'ShowMail', True);
1083                 // \83\8c\83X\95\\8e¦\94Í\88Í
1084                 if ini.ReadBool('Thread', 'OnlyAHundredRes',false) then
1085                         FResRange := 100        // \8cÃ\82¢\90Ý\92è\82Ì\8cÝ\8a·\97p
1086                 else
1087                         FResRange := ini.ReadInteger( 'Thread', 'ResRange', Ord( grrAll ) );
1088                 FResRangeHold := ini.ReadBool( 'Thread', 'ResRangeHold', False );
1089         FHeadResCount := ini.ReadInteger('Thread', 'HeadResCount', 1);
1090                 // \83X\83\8c\83b\83h\88ê\97\97\95\\8e¦\94Í\88Í
1091                 FThreadRange := TGikoThreadRange( ini.ReadInteger('ThreadList', 'ThreadRange', Ord( gtrAll )) );
1092                 //\94ñ\83A\83N\83e\83B\83u\8e\9e\83\8c\83X\83|\83b\83v\83A\83b\83v\95\\8e¦
1093                 FUnActivePopup := ini.ReadBool('Thread', 'UnActivePopup', False);
1094                 //\83\8c\83X\83|\83b\83v\83A\83b\83v\83w\83b\83_\81[\83{\81[\83\8b\83h
1095                 FResPopupHeaderBold := ini.ReadBool('Thread', 'ResPopupHeaderBold', True);
1096                 //\8dí\8f\9c\8am\94F
1097                 FDeleteMsg := ini.ReadBool('Function', 'LogDeleteMessage', True);
1098                 //\8fI\97¹\8am\94F
1099                 FShowDialogForEnd := ini.ReadBool('Function','ShowDialogForEnd',false);
1100                 //AllTabClose
1101                 FShowDialogForAllTabClose := ini.ReadBool('Function','ShowDialogForAllTabClose',false);
1102                 //Samba
1103                 FUseSamba := ini.ReadBool('Function','UseSamba', True);
1104                 //ResAnchorjamp
1105                 ResAnchorJamp := ini.ReadBool('Function', 'ResAnchoJamp', True);
1106                 //\83\8d\83O\83t\83H\83\8b\83_
1107                 LogFolder := ini.ReadString('Folder', 'LogFolder', ExtractFilePath(Application.ExeName) + 'Log');
1108                 NewLogFolder := '';
1109
1110                 //\94ÂURL
1111                 //\95¡\90\94\93o\98^\82Å\82«\82é\82æ\82¤\82É\82µ\82ÄFBoardURLs\82É\82µ\82½\81@2003/10/05
1112                 //FBoardURL2ch := ini.ReadString('BoardURL', '2ch', DEFAULT_2CH_BOARD_URL);
1113
1114                 //\94F\8fØ\97p\83\86\81[\83UID\81E\83p\83X\83\8f\81[\83h
1115                 FUserID := ini.ReadString('Attestation', 'UserID', '');
1116                 FPassword := Decrypt(ini.ReadString('Attestation', 'Password', ''));
1117                 FAutoLogin := ini.ReadBool('Attestation', 'AutoLogin', False);
1118                 FForcedLogin := ini.ReadBool('Attestation', 'FForcedLogin', False);
1119 //              FDolibURL       := ini.ReadString('Attestation', 'FDolibURL', DOLIB_LOGIN_URL);
1120
1121                 //URL\83N\83\8a\83b\83N\8e\9e\8bN\93®\83A\83v\83\8a
1122                 FURLApp := ini.ReadBool('URLApp', 'Select', False);
1123                 FURLAppFile := ini.ReadString('URLApp', 'File', '');
1124
1125                 //mailto\83N\83\8a\83b\83N\8e\9e\93®\8dì
1126                 FOpenMailer := ini.ReadBool('Mailto', 'Open', True);
1127
1128                 //\83|\83b\83v\83A\83b\83v\88Ê\92u
1129                 FPopupPosition := TGikoPopupPosition(ini.ReadInteger('Browser', 'PopupPosition', Ord(gppLeftBottom)));
1130
1131                 //\83A\83h\83\8c\83X\83o\81[
1132                 FURLDisplay := ini.ReadBool('AddressBar', 'URLDisplay', False);
1133                 FAddressBarTabStop := ini.ReadBool('AddressBar', 'TabStop', True);
1134                 FLinkAddAddressBar := ini.ReadBool('AddressBar', 'LinkAdd', False);
1135                 FAddressHistoryCount := ini.ReadInteger('AddressBar', 'HistoryCount', 100);
1136
1137                 //\89æ\91\9c\83v\83\8c\83r\83\85\81[
1138                 FPreviewVisible := ini.ReadBool('Browser', 'PreviewVisible', True);
1139                 FPreviewSize := TGikoPreviewSize(ini.ReadInteger('Browser', 'PreviewSize', Ord(gpsMedium)));
1140                 FPreviewWait := ini.ReadInteger('Browser', 'PreviewWait', 500);
1141
1142                 // \83u\83\89\83E\83U
1143                 FBrowserAutoMaximize := TGikoBrowserAutoMaximize(
1144                         ini.ReadInteger('Window', 'BrowserAutoMaximize', Ord(gbmDoubleClick)) );
1145
1146                 //\83X\83\8c\83b\83h\88ê\97\97\8dX\90V\83A\83C\83R\83\93
1147                 FListIconVisible := ini.ReadBool('ThreadList', 'StateIconVisible', True);
1148                 FCreationTimeLogs := ini.ReadBool('ThreadList', 'CreationTimeLogs', True);
1149                 FFutureThread := ini.ReadBool('ThreadList', 'FutureThread', True);
1150                 FSelectInterval := ini.ReadInteger('ThreadList', 'SelectInterval', 110);
1151                 //\83\\81[\83g\8f\87
1152                 FBBSSortIndex := ini.ReadInteger('ThreadList', 'BBSSortIndex', 0);
1153                 FBBSSortOrder := ini.ReadBool('ThreadList', 'BBSSortOrder', True);
1154                 FCategorySortIndex := ini.ReadInteger('ThreadList', 'CategorySortIndex', 0);
1155                 FCategorySortOrder := ini.ReadBool('ThreadList', 'CategorySortOrder', True);
1156                 FBoardSortIndex := ini.ReadInteger('ThreadList', 'BoardSortIndex', 0);
1157                 FBoardSortOrder := ini.ReadBool('ThreadList', 'BoardSortOrder', True);
1158                 // DL\8cã\82Ì\8e©\93®\83\\81[\83g
1159                 FAutoSortThreadList := ini.ReadBool('ThreadList', 'AutoSort', False);
1160                 //Dat\97\8e\82¿\83X\83\8c\83\\81[\83g\8f\87
1161                 FDatOchiSortIndex := ini.ReadInteger('ThreadList', 'DatOchiSortIndex', -1);
1162                 FDatOchiSortOrder := ini.ReadBool('ThreadList', 'DatOchiSortOrder', False);
1163
1164                 //\8f\91\82«\8d\9e\82Ý\8e\9e\83}\83V\83\93\8e\9e\8d\8f\8eg\97p\90Ý\92è
1165                 FUseMachineTime := ini.ReadBool('PostTime', 'UseMachineTime', False);
1166                 FTimeAdjustSec := ini.ReadInteger('PostTime', 'TimeAdjustSec', 0);
1167                 FTimeAdjust := ini.ReadBool('PostTime', 'TimeAdjust', True);
1168
1169                 //\83T\83E\83\93\83h
1170                 if Exists then begin
1171                         for i := 0 to GetSoundCount - 1 do begin
1172                                 SoundFileName[i] := ini.ReadString('Sound', SoundName[i], '');
1173                                 if not FileExists(SoundFileName[i]) then
1174                                         SoundFileName[i] := '';
1175                         end;
1176                 end else begin
1177                         s := ExtractFileDir(Application.ExeName) + '\sound\';
1178                         SoundFileName[0] := s + '\8eæ\93¾\90¬\8c÷.wav';
1179                         SoundFileName[1] := s + '\8eæ\93¾\90¬\8c÷(\8d·\95ª).wav';
1180                         SoundFileName[2] := s + '\96¢\8dX\90V.wav';
1181                         SoundFileName[3] := '';
1182                         SoundFileName[4] := s + '\83G\83\89\81[.wav';
1183                 end;
1184
1185                 //\83N\81[\83\8b\83o\81[
1186                 for i := 0 to MAIN_COOLBAND_COUNT - 1 do begin
1187                         CoolSet.FCoolID := ini.ReadInteger('MainCoolBar', 'ID' + IntToStr(i), -1);
1188                         CoolSet.FCoolWidth := ini.ReadInteger('MainCoolBar', 'Width' + IntToStr(i), -1);
1189                         CoolSet.FCoolBreak := ini.ReadBool('MainCoolBar', 'Break' + IntToStr(i), False);
1190                         MainCoolSet[i] := CoolSet;
1191                 end;
1192                 FSelectComboBoxWidth := ini.ReadInteger( 'ListCoolBar', 'SelectWidth', 127 );
1193                 for i := 0 to LIST_COOLBAND_COUNT - 1 do begin
1194                         CoolSet.FCoolID := ini.ReadInteger('ListCoolBar', 'ID' + IntToStr(i), -1);
1195                         CoolSet.FCoolWidth := ini.ReadInteger('ListCoolBar', 'Width' + IntToStr(i), -1);
1196                         CoolSet.FCoolBreak := ini.ReadBool('ListCoolBar', 'Break' + IntToStr(i), False);
1197                         ListCoolSet[i] := CoolSet;
1198                 end;
1199                 for i := 0 to BROWSER_COOLBAND_COUNT - 1 do begin
1200                         CoolSet.FCoolID := ini.ReadInteger('BrowserCoolBar', 'ID' + IntToStr(i), -1);
1201                         CoolSet.FCoolWidth := ini.ReadInteger('BrowserCoolBar', 'Width' + IntToStr(i), -1);
1202                         CoolSet.FCoolBreak := ini.ReadBool('BrowserCoolBar', 'Break' + IntToStr(i), False);
1203                         BrowserCoolSet[i] := CoolSet;
1204                 end;
1205
1206                 //\82 \82Ú\81`\82ñ
1207                 FAbonDeleterlo := ini.ReadBool('Abon','Deleterlo',false);
1208                 FAbonReplaceul := ini.ReadBool('Abon','Replaceul',false);
1209                 FPopUpAbon               := ini.ReadBool('Abon','Popup',false);
1210                 FShowNGLinesNum := ini.ReadBool('Abon','ShowNGLines',false);
1211                 FAddResAnchor := ini.ReadBool('Abon','AddResAnchor',false);
1212                 FDeleteSyria :=  ini.ReadBool('Abon','DeleteSyria',false);
1213                 FIgnoreKana  :=  ini.ReadBool('Abon','IgnoreKana',false);
1214
1215                 // \83G\83f\83B\83^
1216                 FSpaceToNBSP    := ini.ReadBool( 'Editor', 'SpaceToNBSP', False );
1217                 FAmpToCharRef   := ini.ReadBool( 'Editor', 'AmpToCharRef', False );
1218
1219                 //Tab\8e©\93®\95Û\91\81A\93Ç\82Ý\8d\9e\82Ý
1220                 FTabAutoLoadSave    := ini.ReadBool('TabAuto', 'TabAutoLoadSave', False);
1221
1222                 FKuroutSettingTabIndex := ini.ReadInteger('OptionDialog', 'KuroutTabIndex' , 0);
1223
1224                 // \83}\83E\83X\83W\83F\83X\83`\83\83\81[
1225                 FGestureEnabled := ini.ReadBool( 'Guesture', 'Enabled', False );
1226
1227                 //2ch\8c¾\8cê\83T\83|
1228                 F2chSupport := ini.ReadBool('2chSupport', 'Support', False);
1229
1230                 //FusianaTrap
1231                 FLocalTrapAtt := ini.ReadBool('Trap', 'LocalTrap', False);
1232                 FRemoteTrapAtt := ini.ReadBool('Trap', 'RemoteTrap', False);
1233                 FReadTimeOut := ini.ReadInteger('HTTP', 'ReadTimeOut', 10000);
1234
1235                 // \8eg\97p\82·\82é\83X\83p\83\80\83t\83B\83\8b\83^
1236                 FSpamFilterAlgorithm := TGikoSpamFilterAlgorithm(
1237                         ini.ReadInteger( 'Abon', 'SpamFilterAlgorithm', Ord( gsfaNone ) ) );
1238                 FMute := ini.ReadBool('Function', 'Mute', false);
1239                 FUseUndecided := ini.ReadBool('ThreadList', 'UseUndecided', False);
1240
1241         //Be2ch
1242                 //\94F\8fØ\97p\83\86\81[\83UID\81E\94F\8fØ\83R\81[\83h
1243                 FBeUserID := ini.ReadString('Be', 'UserID', '');
1244                 FBeCode := Decrypt(ini.ReadString('Be', 'Code', ''));
1245                 FBeAutoLogin := ini.ReadBool('Be', 'AutoLogin', False);
1246                 //\97\9a\97ð\82Ì\8dÅ\91å\95Û\91\8c\8f\90\94
1247                 FMaxRecordCount := Max(ini.ReadInteger('Recode', 'Max', 100), 1);
1248
1249                 // \93ü\97Í\83A\83V\83X\83g
1250                 FInputAssistFormTop := ini.ReadInteger('IAtWindowsSize', 'Top', 0);
1251                 FInputAssistFormLeft := ini.ReadInteger('IAtWindowsSize', 'Left', 0);
1252                 FInputAssistFormWidth := ini.ReadInteger('IAtWindowsSize', 'Width', 400);
1253                 FInputAssistFormHeight := ini.ReadInteger('IAtWindowsSize', 'Height', 460);
1254
1255                 // Cookie\82É\95t\89Á\82·\82é\8cÅ\92è\83R\81[\83h
1256                 FFixedCookie := ini.ReadString('Cookie', 'fixedString', FIXED_COOKIE);
1257
1258         // \83\8a\83\93\83N\88Ú\93®\97\9a\97ð\82Ì\8dÅ\91å\95Û\8e\9d\90\94
1259         FMoveHistorySize := ini.ReadInteger('MoveHisotry', 'Max', 20);
1260
1261         FStoredTaskTray := ini.ReadBool('Function', 'StroedTaskTray', false);
1262         FLoopBrowserTabs := ini.ReadBool('Function', 'LoopBrowserTabs', false);
1263
1264                 ini.UpdateFile;
1265         finally
1266                 ini.Free;
1267         end;
1268 end;
1269 //\94Â\8dX\90V\97pURL\93Ç\82Ý\8d\9e\82Ý
1270 procedure TSetting.ReadBoardURLsFile();
1271 var
1272         ini: TMemIniFile;
1273         urlNum: Integer;
1274         i : Integer;
1275 begin
1276         if not FileExists(GetBoardURLFileName()) then
1277         MakeURLIniFile();
1278         ini := TMemIniFile.Create(GetBoardURLFileName());
1279         try
1280                 urlNum := ini.ReadInteger('URL','count',0);
1281                 BoardURLSelected := ini.ReadInteger('URL','selected',0);
1282                 for i := 0 to urlNum - 1 do begin
1283                         FBoardURLs.Append(ini.ReadString('URL',IntToStr(i+1),''));
1284                 end;
1285         finally
1286                 ini.Free;
1287         end;
1288
1289 end;
1290 //\90Ý\92è\83t\83@\83C\83\8b\95Û\91¶(system)
1291 procedure TSetting.WriteSystemSettingFile();
1292 var
1293         ini: TMemIniFile;
1294 begin
1295         ini := TMemIniFile.Create(GetFileName());
1296         try
1297                 //\8eó\90M\83o\83b\83t\83@\83T\83C\83Y
1298                 ini.WriteInteger('HTTP', 'RecvBufferSize', FRecvBufferSize);
1299                 //HTTP1.1\8eg\97p
1300                 ini.WriteBool('HTTP', 'Protocol', FProtocol);
1301                 //\83v\83\8d\83L\83V\90Ú\91±HTTP1.1\8eg\97p
1302                 ini.WriteBool('HTTP', 'ProxyProtocol', FProxyProtocol);
1303
1304                 ini.WriteBool('ReadProxy', 'Proxy', FReadProxy);
1305                 ini.WriteString('ReadProxy', 'Address', FReadProxyAddress);
1306                 ini.WriteInteger('ReadProxy', 'Port', FReadProxyPort);
1307                 ini.WriteString('ReadProxy', 'UserID', FReadProxyUserID);
1308                 ini.WriteString('ReadProxy', 'Password', FReadProxyPassword);
1309
1310                 ini.WriteBool('WriteProxy', 'Proxy', FWriteProxy);
1311                 ini.WriteString('WriteProxy', 'Address', FWriteProxyAddress);
1312                 ini.WriteInteger('WriteProxy', 'Port', FWriteProxyPort);
1313                 ini.WriteString('WriteProxy', 'UserID', FWriteProxyUserID);
1314                 ini.WriteString('WriteProxy', 'Password', FWriteProxyPassword);
1315
1316                 ini.WriteString('Window', 'BrowserFontName', FBrowserFontName);
1317                 ini.WriteInteger('Window', 'BrowserFontSize', FBrowserFontSize);
1318                 ini.WriteInteger('Window', 'BrowserFontSize', FBrowserFontSize);
1319                 ini.WriteInteger('Window', 'BrowserFontBold', FBrowserFontBold);
1320                 ini.WriteInteger('Window', 'BrowserFontItalic', FBrowserFontItalic);
1321                 ini.WriteInteger('Window', 'BrowserFontColor', FBrowserFontColor);
1322                 ini.WriteInteger('Window', 'BrowserBackColor', FBrowserBackColor);
1323
1324                 ini.WriteString('Window', 'CabinetFontName', FCabinetFontName);
1325                 ini.WriteInteger('Window', 'CabinetFontSize', FCabinetFontSize);
1326                 ini.WriteString('Window', 'CabinetFontColor', ColorToString(FCabinetFontColor));
1327                 ini.WriteBool('Window', 'CabinetFontBold', FCabinetFontBold);
1328                 ini.WriteBool('Window', 'CabinetFontItalic', FCabinetFontItalic);
1329                 ini.WriteString('Window', 'CabinetBackColor', ColorToString(FCabinetBackColor));
1330
1331                 ini.WriteString('Window', 'ListFontName', FListFontName);
1332                 ini.WriteInteger('Window', 'ListFontSize', FListFontSize);
1333                 ini.WriteString('Window', 'ListFontColor', ColorToString(FListFontColor));
1334                 ini.WriteString('Window', 'ListBackColor', ColorToString(FListBackColor));
1335                 ini.WriteBool('Window', 'ListFontBold', FListFontBold);
1336                 ini.WriteBool('Window', 'ListFontItalic', FListFontItalic);
1337                 ini.WriteBool('Window','UseOddColor',FUseOddColorOddResNum);
1338                 ini.WriteString('Window', 'OddColor',ColorToString(FOddColor));
1339                 ini.WriteBool('Window','UnFocusedBold', FUnFocusedBold);
1340
1341                 ini.WriteString('Window', 'EditorFontName', FEditorFontName);
1342                 ini.WriteInteger('Window', 'EditorFontSize', FEditorFontSize);
1343                 ini.WriteString('Window', 'EditorFontColor', ColorToString(FEditorFontColor));
1344                 ini.WriteString('Window', 'EditorBackColor', ColorToString(FEditorBackColor));
1345
1346                 ini.WriteString('Window', 'BrowserTabFontName', FBrowserTabFontName);
1347                 ini.WriteInteger('Window', 'BrowserTabFontSize', FBrowserTabFontSize);
1348                 ini.WriteBool('Window', 'BrowserTabFontBold', FBrowserTabFontBold);
1349                 ini.WriteBool('Window', 'BrowserTabFontItalic', FBrowserTabFontItalic);
1350
1351                 ini.WriteString('Window', 'HintFontName', FHintFontName);
1352                 ini.WriteInteger('Window', 'HintFontSize', FHintFontSize);
1353                 ini.WriteString('Window', 'HintFontColor', ColorToString(FHintFontColor));
1354                 ini.WriteString('Window', 'HintBackColor', ColorToString(FHintBackColor));
1355
1356                 ini.UpdateFile;
1357         finally
1358                 ini.Free;
1359         end;
1360 end;
1361
1362 //\90Ý\92è\83t\83@\83C\83\8b\95Û\91¶(window)
1363 procedure TSetting.WriteWindowSettingFile();
1364 var
1365         i: Integer;
1366         ini: TMemIniFile;
1367         CoolSet: TCoolSet;
1368         wkList  : TStringList;
1369 begin
1370         ini := TMemIniFile.Create(GetFileName());
1371         try
1372                 ini.WriteInteger('WindowSize', 'Top', WindowTop);
1373                 ini.WriteInteger('WindowSize', 'Left', WindowLeft);
1374                 ini.WriteInteger('WindowSize', 'Height', WindowHeight);
1375                 ini.WriteInteger('WindowSize', 'Width', WindowWidth);
1376                 ini.WriteBool('WindowSize', 'Max', WindowMax);
1377
1378                 ini.WriteInteger('ViewStyle', 'ListView', Ord(ListStyle));
1379
1380                 ini.WriteInteger('EditorWindowSize', 'Top', EditWindowTop);
1381                 ini.WriteInteger('EditorWindowSize', 'Left', EditWindowLeft);
1382                 ini.WriteInteger('EditorWindowSize', 'Height', EditWindowHeight);
1383                 ini.WriteInteger('EditorWindowSize', 'Width', EditWindowWidth);
1384                 ini.WriteBool('EditorWindowSize', 'Max', EditWindowMax);
1385                 ini.WriteBool('EditorWindowSize', 'Stay', EditWindowStay);
1386                 ini.WriteBool('EditorWindowSize', 'Translucent', EditWindowTranslucent);
1387
1388                 ini.WriteInteger('OptionDialog', 'TabIndex', FOptionDialogTabIndex);
1389
1390                 // \93ü\97Í\83A\83V\83X\83g
1391                 ini.WriteInteger('IAtWindowsSize', 'Top', FInputAssistFormTop);
1392                 ini.WriteInteger('IAtWindowsSize', 'Left', FInputAssistFormLeft);
1393                 ini.WriteInteger('IAtWindowsSize', 'Width', FInputAssistFormWidth);
1394                 ini.WriteInteger('IAtWindowsSize', 'Height', FInputAssistFormHeight);
1395
1396                 //\83c\81[\83\8b\83o\81[
1397                 ini.WriteBool('ToolBar', 'StdVisible', FStdToolBarVisible);
1398                 ini.WriteBool('ToolBar', 'AddressVisible', FAddressBarVisible);
1399                 ini.WriteBool('ToolBar', 'LinkVisible', FLinkBarVisible);
1400                 ini.WriteBool('ToolBar', 'ListVisible', FListToolBarVisible);
1401                 ini.WriteBool('ToolBar', 'ListNameVisible', FListNameBarVisible);
1402                 ini.WriteBool('ToolBar', 'BrowserVisible', FBrowserToolBarVisible);
1403                 ini.WriteBool('ToolBar', 'BrowserNameVisible', FBrowserNameBarVisible);
1404                 //\83c\81[\83\8b\83o\81[Wrapable
1405                 ini.WriteBool('ToolBar', 'ListWrapable', FListToolBarWrapable);
1406                 ini.WriteBool('ToolBar', 'BrowserWrapable', FBrowserToolBarWrapable);
1407
1408                 //\83^\83u
1409                 ini.WriteBool('Tab', 'BrowserTabVisible', FBrowserTabVisible);
1410                 ini.WriteInteger('Tab', 'BrowserTabPosition', Ord(FBrowserTabPosition));
1411                 ini.WriteInteger('Tab', 'BrowserTabAppend', Ord(FBrowserTabAppend));
1412                 ini.WriteInteger('Tab', 'BrowserTabStyle', Ord(FBrowserTabStyle));
1413
1414                 //\83\81\83b\83Z\81[\83W\83o\81[
1415                 ini.WriteBool('MessageBar', 'Visible', FMessageBarVisible);
1416                 ini.WriteInteger('MessageBar', 'Height', FMessegeBarHeight);
1417
1418                 //\83X\83e\81[\83^\83X\83o\81[
1419                 ini.WriteBool('StatusBar', 'Visible', FStatusBarVisible);
1420
1421                 //\83L\83\83\83r\83l\83b\83g
1422                 ini.WriteBool('Cabinet', 'Visible', FCabinetVisible);
1423                 ini.WriteInteger('Cabinet', 'Width', FCabinetWidth);
1424                 ini.WriteInteger('Cabinet', 'Index', FCabinetIndex);
1425
1426                 //\83\8a\83X\83g\82Ì\83T\83C\83Y\82Æ\90\82\92¼\90\85\95½
1427                 ini.WriteInteger('List', 'Orientation', Ord(FListOrientation));
1428                 ini.WriteInteger('List', 'Height', FListHeight);
1429                 ini.WriteInteger('List', 'HeightState', Ord(FListHeightState));
1430                 ini.WriteInteger('List', 'Width', FListWidth);
1431                 ini.WriteInteger('List', 'WidthState', Ord(FListWidthState));
1432 //              ini.WriteBool('List', 'HeightMax', FListHeightMax);
1433 //              ini.WriteBool('List', 'WidthMax', FListWidthMax);
1434
1435
1436 //              ini.WriteInteger('Window', 'BrowserFontSize', BrowserFontSize);
1437
1438                 //\83\8a\83X\83g\94Ô\8d\86\95\\8e¦
1439                 ini.WriteBool('Function', 'ListViewNo', FListViewNo);
1440                 //CSS\8eg\97p
1441                 ini.WriteBool('CSS', 'UseCSS', FUseCSS);
1442                 //\82©\82µ\82ã\81`\82µ\82á\82Ì\83X\83L\83\93\82ð\8eg\82¤\82©
1443                 ini.WriteBool('CSS', 'UseKatjushaType', FUseKatjushaType);
1444                 //CSS\83t\83@\83C\83\8b\96¼
1445                 ini.WriteString('CSS', 'FileName', FCSSFileName);
1446                 //Mail\97\93\95\\8e¦
1447                 ini.WriteBool('Thread', 'ShowMail', FShowMail);
1448                 // \83\8c\83X\95\\8e¦\94Í\88Í
1449                 ini.DeleteKey( 'Thread', 'OnlyAHundredRes' );   // \8cÃ\82¢\90Ý\92è\82Ì\8dí\8f\9c
1450                 ini.WriteInteger('Thread', 'ResRange', FResRange);
1451                 ini.WriteBool('Thread', 'ResRangeHold', FResRangeHold);
1452         ini.WriteInteger('Thread', 'HeadResCount', FHeadResCount);
1453                 // \83X\83\8c\83b\83h\88ê\97\97\95\\8e¦\94Í\88Í
1454                 ini.WriteInteger('ThreadList', 'ThreadRange', Ord( FThreadRange ));
1455                 //\83\8d\83O\8dí\8f\9c\8am\94F
1456                 ini.WriteBool('Function', 'LogDeleteMessage', FDeleteMsg);
1457                 //\8fI\97¹\8am\94F
1458                 ini.WriteBool('Function','ShowDialogForEnd',FShowDialogForEnd);
1459                 //AllTabClose
1460                 ini.WriteBool('Function','ShowDialogForAllTabClose', FShowDialogForAllTabClose);
1461                 //Samba
1462                 ini.WriteBool('Function','UseSamba', FUseSamba);
1463                 //ResAnchorjamp
1464                 ini.WriteBool('Function', 'ResAnchoJamp', ResAnchorJamp);
1465
1466                 //\94ñ\83A\83N\83e\83B\83u\8e\9e\83|\83b\83v\83A\83b\83v\95\\8e¦
1467                 ini.WriteBool('Thread', 'UnActivePopup', FUnActivePopup);
1468                 //\83\8c\83X\83|\83b\83v\83A\83b\83v\83w\83b\83_\81[\83{\81[\83\8b\83h
1469                 ini.WriteBool('Thread', 'ResPopupHeaderBold', FResPopupHeaderBold);
1470                 //ini.WriteString('BoardURL', '2ch', FBoardURL2ch);
1471
1472                 //\94F\8fØ\97p\83\86\81[\83UID\81E\83p\83X\83\8f\81[\83h
1473                 ini.WriteString('Attestation', 'UserID', FUserID);
1474                 ini.WriteString('Attestation', 'Password', Encrypt(FPassword));
1475                 ini.WriteBool('Attestation', 'AutoLogin', FAutoLogin);
1476                 ini.WriteBool('Attestation', 'FForcedLogin', FForcedLogin);
1477                 ini.WriteString('Attestation', 'FDolibURL', FDolibURL);
1478
1479                 //URL\83N\83\8a\83b\83N\8e\9e\8bN\93®\83A\83v\83\8a
1480                 ini.WriteBool('URLApp', 'Select', FURLApp);
1481                 ini.WriteString('URLApp', 'File', FURLAppFile);
1482
1483                 //mailto\83N\83\8a\83b\83N\8e\9e\93®\8dì
1484                 ini.WriteBool('Mailto', 'Open', FOpenMailer);
1485
1486                 //\83|\83b\83v\83A\83b\83v\88Ê\92u
1487                 ini.WriteInteger('Browser', 'PopupPosition', Ord(FPopupPosition));
1488
1489                 //\83A\83h\83\8c\83X\83o\81[
1490                 ini.WriteBool('AddressBar', 'URLDisplay', FURLDisplay);
1491                 ini.WriteBool('AddressBar', 'TabStop', FAddressBarTabStop);
1492                 ini.WriteBool('AddressBar', 'LinkAdd', FLinkAddAddressBar);
1493                 ini.WriteInteger('AddressBar', 'HistoryCount', FAddressHistoryCount);
1494
1495                 //\89æ\91\9c\83v\83\8c\83r\83\85\81[
1496                 ini.WriteBool('Browser', 'PreviewVisible', FPreviewVisible);
1497                 ini.WriteInteger('Browser', 'PreviewSize', Ord(FPreviewSize));
1498                 ini.WriteInteger('Browser', 'PreviewWait', FPreviewWait);
1499
1500                 ini.WriteInteger('Window', 'BrowserAutoMaximize', Ord( BrowserAutoMaximize ) );
1501
1502                 //\83X\83\8c\83b\83h\88ê\97\97\8dX\90V\83A\83C\83R\83\93
1503                 ini.WriteBool('ThreadList', 'StateIconVisible', FListIconVisible);
1504                 ini.WriteBool('ThreadList', 'CreationTimeLogs',FCreationTimeLogs);
1505                 ini.WriteBool('ThreadList', 'FutureThread', FFutureThread);
1506                 ini.WriteInteger('ThreadList', 'SelectInterval', FSelectInterval);
1507                 //\83\\81[\83g\8f\87
1508                 ini.WriteInteger('ThreadList', 'BBSSortIndex', FBBSSortIndex);
1509                 ini.WriteBool('ThreadList', 'BBSSortOrder', FBBSSortOrder);
1510                 ini.WriteInteger('ThreadList', 'CategorySortIndex', FCategorySortIndex);
1511                 ini.WriteBool('ThreadList', 'CategorySortOrder', FCategorySortOrder);
1512                 ini.WriteInteger('ThreadList', 'BoardSortIndex', FBoardSortIndex);
1513                 ini.WriteBool('ThreadList', 'BoardSortOrder', FBoardSortOrder);
1514                 ini.WriteInteger('ThreadList', 'DatOchiSortIndex', FDatOchiSortIndex);
1515                 ini.WriteBool('ThreadList', 'DatOchiSortOrder', FDatOchiSortOrder);
1516                 // DL\8cã\82Ì\8e©\93®\83\\81[\83g
1517                 ini.WriteBool('ThreadList', 'AutoSort', FAutoSortThreadList);
1518
1519                 //\8f\91\82«\8d\9e\82Ý\8e\9e\83}\83V\83\93\8e\9e\8d\8f\8eg\97p\90Ý\92è
1520                 ini.WriteBool('PostTime', 'UseMachineTime', FUseMachineTime);
1521                 ini.WriteInteger('PostTime', 'TimeAdjustSec', FTimeAdjustSec);
1522                 ini.WriteBool('PostTime', 'TimeAdjust', FTimeAdjust);
1523
1524                 // \83\8a\83X\83g\83J\83\89\83\80\95\9d
1525                 for i := 0 to Length(FBBSColumnWidth) - 1 do begin
1526                         ini.WriteInteger('BBSColumnWidth', 'ID' + IntToStr(i), FBBSColumnWidth[i]);
1527                 end;
1528                 for i := 0 to Length(FCategoryColumnWidth) - 1 do begin
1529                         ini.WriteInteger('CategoryColumnWidth', 'ID' + IntToStr(i), FCategoryColumnWidth[i]);
1530                 end;
1531                 for i := 0 to Length(FBoardColumnWidth) - 1 do begin
1532                         ini.WriteInteger('BoardColumnWidth', 'ID' + IntToStr(i), FBoardColumnWidth[i]);
1533                 end;
1534
1535                 wkList := TStringList.Create;
1536                 try
1537                         // \83J\83e\83S\83\8a\83\8a\83X\83g\8f\87\8f\98
1538                         ini.ReadSection( 'BBSColumnOrder', wkList );
1539                         for i := wkList.Count - 1 downto 0 do
1540                                 ini.DeleteKey( 'BBSColumnOrder', wkList[ i ] );
1541                         for i := 0 to FBBSColumnOrder.Count - 1 do
1542                                 ini.WriteInteger( 'BBSColumnOrder', 'ID' + IntToStr( i ), Ord( FBBSColumnOrder[ i ] ) );
1543
1544                         // \94Â\83\8a\83X\83g\8f\87\8f\98
1545                         ini.ReadSection( 'CategoryColumnOrder', wkList );
1546                         for i := wkList.Count - 1 downto 0 do
1547                                 ini.DeleteKey( 'CategoryColumnOrder', wkList[ i ] );
1548                         for i := 0 to FCategoryColumnOrder.Count - 1 do
1549                                 ini.WriteInteger( 'CategoryColumnOrder', 'ID' + IntToStr( i ), Ord( FCategoryColumnOrder[ i ] ) );
1550
1551                         // \83X\83\8c\83\8a\83X\83g\8f\87\8f\98
1552                         ini.ReadSection( 'BoardColumnOrder', wkList );
1553                         for i := wkList.Count - 1 downto 0 do
1554                                 ini.DeleteKey( 'BoardColumnOrder', wkList[ i ] );
1555                         for i := 0 to FBoardColumnOrder.Count - 1 do
1556                                 ini.WriteInteger( 'BoardColumnOrder', 'ID' + IntToStr( i ), Ord( FBoardColumnOrder[ i ] ) );
1557                 finally
1558                         wkList.Free;
1559                 end;
1560
1561                 //\83T\83E\83\93\83h
1562                 for i := 0 to GetSoundCount - 1 do begin
1563                         if not FileExists(SoundFileName[i]) then
1564                                 SoundFileName[i] := '';
1565                         ini.WriteString('Sound', SoundName[i], SoundFileName[i]);
1566                 end;
1567
1568                 //CoolBar
1569                 ini.EraseSection('MainCoolBar');
1570                 for i := 0 to MAIN_COOLBAND_COUNT - 1 do begin
1571                         CoolSet := MainCoolSet[i];
1572                         ini.WriteInteger('MainCoolBar', 'ID' + IntToStr(i), CoolSet.FCoolID);
1573                         ini.WriteInteger('MainCoolBar', 'Width' + IntToStr(i), CoolSet.FCoolWidth);
1574                         ini.WriteBool('MainCoolBar', 'Break' + IntToStr(i), CoolSet.FCoolBreak);
1575                 end;
1576                 ini.EraseSection('ListCoolBar');
1577                 ini.WriteInteger( 'ListCoolBar', 'SelectWidth', FSelectComboBoxWidth );
1578                 for i := 0 to LIST_COOLBAND_COUNT - 1 do begin
1579                         CoolSet := ListCoolSet[i];
1580                         ini.WriteInteger('ListCoolBar', 'ID' + IntToStr(i), CoolSet.FCoolID);
1581                         ini.WriteInteger('ListCoolBar', 'Width' + IntToStr(i), CoolSet.FCoolWidth);
1582                         ini.WriteBool('ListCoolBar', 'Break' + IntToStr(i), CoolSet.FCoolBreak);
1583                 end;
1584                 ini.EraseSection('BrowserCoolBar');
1585                 for i := 0 to BROWSER_COOLBAND_COUNT - 1 do begin
1586                         CoolSet := BrowserCoolSet[i];
1587                         ini.WriteInteger('BrowserCoolBar', 'ID' + IntToStr(i), CoolSet.FCoolID);
1588                         ini.WriteInteger('BrowserCoolBar', 'Width' + IntToStr(i), CoolSet.FCoolWidth);
1589                         ini.WriteBool('BrowserCoolBar', 'Break' + IntToStr(i), CoolSet.FCoolBreak);
1590                 end;
1591
1592                 //\82 \82Ú\81`\82ñ
1593                 ini.WriteBool('Abon','Deleterlo',FAbonDeleterlo);
1594                 ini.WriteBool('Abon','Replaceul',FAbonReplaceul);
1595                 ini.WriteBool('Abon','Popup',FPopUpAbon);
1596                 ini.WriteBool('Abon','ShowNGLines',FShowNGLinesNum);
1597                 ini.WriteBool('Abon','AddResAnchor',FAddResAnchor);
1598                 ini.WriteBool('Abon','DeleteSyria',FDeleteSyria);
1599                 ini.WriteBool('Abon','IgnoreKana', FIgnoreKana);
1600
1601                 // \83G\83f\83B\83^
1602                 ini.WriteBool( 'Editor', 'SpaceToNBSP', FSpaceToNBSP );
1603                 ini.WriteBool( 'Editor', 'AmpToCharRef', FAmpToCharRef );
1604
1605                 //\83^\83u\8e©\93®\95Û\91
1606                 ini.WriteBool('TabAuto', 'TabAutoLoadSave', FTabAutoLoadSave);
1607                 //\8fÚ\8d×\90Ý\92è
1608                 ini.WriteInteger('OptionDialog', 'KuroutTabIndex', FKuroutSettingTabIndex);
1609
1610                 //\82É\82¿\82á\82ñ\8cê\88Ä\93à\8b@\94\
1611                 ini.WriteBool('2chSupport', 'Support', F2chSupport);
1612
1613                 // \83}\83E\83X\83W\83F\83X\83`\83\83\81[\82ð\8eg\97p\82·\82é\82©\82Ç\82¤\82©
1614                 ini.WriteBool( 'Guesture', 'Enabled', FGestureEnabled );
1615
1616                 //FusianaTrap
1617                 ini.WriteBool('Trap', 'LocalTrap', FLocalTrapAtt);
1618                 ini.WriteBool('Trap', 'RemoteTrap', FRemoteTrapAtt);
1619                 ini.WriteInteger('HTTP', 'ReadTimeOut', FReadTimeOut);
1620
1621                 // \8eg\97p\82·\82é\83X\83p\83\80\83t\83B\83\8b\83^
1622                 ini.WriteInteger( 'Abon', 'SpamFilterAlgorithm', Ord( FSpamFilterAlgorithm ) );
1623                 ini.WriteBool('Function', 'Mute', FMute);
1624                 ini.WriteBool('ThreadList', 'UseUndecided', FUseUndecided);
1625
1626                 //\94F\8fØ\97p\83\86\81[\83UID\81E\83p\83X\83\8f\81[\83h
1627                 ini.WriteString('Be', 'UserID', FBeUserID);
1628                 ini.WriteString('Be', 'Code', Encrypt(FBeCode));
1629                 ini.WriteBool('Be', 'AutoLogin', FBeAutoLogin);
1630
1631                 //\97\9a\97ð\82Ì\8dÅ\91å\95Û\91\8c\8f\90\94
1632                 ini.WriteInteger('Recode', 'Max', FMaxRecordCount);
1633                 // \8cÅ\92è\82ÌCookie\95\8e\9a\97ñ
1634         ini.WriteString('Cookie', 'fixedString', FFixedCookie);
1635
1636         // \83\8a\83\93\83N\88Ú\93®\97\9a\97ð\82Ì\8dÅ\91å\95Û\8e\9d\90\94
1637         ini.WriteInteger('MoveHisotry', 'Max', FMoveHistorySize);
1638
1639         ini.WriteBool('Function', 'StroedTaskTray', FStoredTaskTray);
1640         ini.WriteBool('Function', 'LoopBrowserTabs', FLoopBrowserTabs);
1641                 ini.UpdateFile;
1642         finally
1643                 ini.Free;
1644         end;
1645 end;
1646
1647 //\90Ý\92è\83t\83@\83C\83\8b\95Û\91¶(name & mail)
1648 procedure TSetting.WriteNameMailSettingFile();
1649 var
1650         i: Integer;
1651         ini: TMemIniFile;
1652 begin
1653         ini := TMemIniFile.Create(GetFileName());
1654         try
1655                 ini.EraseSection('Name');
1656                 ini.EraseSection('Mail');
1657                 ini.EraseSection('SelectText');
1658                 for i := 0 to FNameList.Count - 1 do begin
1659                         ini.WriteString('Name', Format('%.2d', [i + 1]), FNameList[i]);
1660                         if i >= 39 then
1661                                 Break;
1662                 end;
1663                 for i := 0 to FMailList.Count - 1 do begin
1664                         ini.WriteString('Mail', Format('%.2d', [i + 1]), FMailList[i]);
1665                         if i >= 39 then
1666                                 Break;
1667                 end;
1668                 for i := 0 to FSelectTextList.Count - 1 do begin
1669                         ini.WriteString('SelectText', Format('%.2d', [i + 1]), FSelectTextList[i]);
1670                         if i >= 39 then
1671                                 Break;
1672                 end;
1673                 ini.UpdateFile;
1674         finally
1675                 ini.Free;
1676         end;
1677 end;
1678
1679 procedure TSetting.WriteFolderSettingFile();
1680 var
1681         ini: TMemIniFile;
1682 begin
1683         ini := TMemIniFile.Create(GetFileName());
1684         try
1685                 if ExtractFilePath(Application.ExeName) + 'Log' = NewLogFolder then
1686                         ini.DeleteKey('Folder', 'LogFolder')
1687                 else
1688                         ini.WriteString('Folder', 'LogFolder', NewLogFolder);
1689                 ini.UpdateFile;
1690         finally
1691                 ini.Free;
1692         end;
1693 end;
1694 //\94Â\8dX\90V\97pBoardURL\82ð\95Û\91
1695 procedure TSetting.WriteBoardURLSettingFile();
1696 var
1697         ini: TMemIniFile;
1698                 i : Integer;
1699                 oldcount : Integer;
1700 begin
1701         ini := TMemIniFile.Create(GetBoardURLFileName());
1702         try
1703                 oldcount := ini.ReadInteger('URL','count',FBoardURLs.Count);
1704                 ini.WriteInteger('URL','count',FBoardURLs.Count);
1705                 ini.WriteInteger('URL','selected',BoardURLSelected);
1706                 for i := 0 to FBoardURLs.Count -1 do begin
1707                                         ini.WriteString('URL',IntToStr(i+1),FBoardURLs.Strings[i]);
1708                 end;
1709                 if oldcount > FBoardURLs.Count then begin
1710                         for i := FBoardURLs.Count to oldcount do begin
1711                                 ini.DeleteKey('URL',IntToStr(i+1));
1712                         end;
1713                 end;
1714                 ini.UpdateFile;
1715         finally
1716                 ini.Free;
1717         end;
1718 end;
1719
1720 {$R-}
1721 //\83\8a\83X\83g\83J\83\89\83\80\83w\83b\83_\81[
1722 function TSetting.GetBBSColumnWidth(index: Integer): Integer;
1723 begin
1724         Result := IfThen(index in [0..Length(FBBSColumnWidth) - 1], FBBSColumnWidth[index], 0);
1725 end;
1726
1727 function TSetting.GetCategoryColumnWidth(index: Integer): Integer;
1728 begin
1729         Result := IfThen(index in [0..Length(FCategoryColumnWidth) - 1], FCategoryColumnWidth[index], 0);
1730 end;
1731
1732 function TSetting.GetBoardColumnWidth(index: Integer): Integer;
1733 begin
1734         Result := IfThen(index in [0..Length(FBoardColumnWidth) - 1], FBoardColumnWidth[index], 0);
1735 end;
1736 {$IFDEF DEBUG}
1737 {$R+}
1738 {$ENDIF}
1739
1740 procedure TSetting.SetBBSColumnWidth(index: Integer; value: Integer);
1741 begin
1742         if index in [0..Length(FBBSColumnWidth) - 1] then
1743                 FBBSColumnWidth[index] := value;
1744 end;
1745
1746 procedure TSetting.SetCategoryColumnWidth(index: Integer; value: Integer);
1747 begin
1748         if index in [0..Length(FCategoryColumnWidth) - 1] then
1749                 FCategoryColumnWidth[index] := value;
1750 end;
1751
1752 procedure TSetting.SetBoardColumnWidth(index: Integer; value: Integer);
1753 begin
1754         if index in [0..Length(FBoardColumnWidth) - 1] then
1755                 FBoardColumnWidth[index] := value;
1756 end;
1757
1758 function TSetting.GetSoundCount: Integer;
1759 begin
1760         Result := Length(SOUND_NAME);
1761 end;
1762
1763 function TSetting.GetSoundName(Index: Integer): string;
1764 begin
1765         if (Index < GetSoundCount) and (Index >= 0) then
1766                 Result := SOUND_NAME[Index].Name
1767         else
1768                 Result := '';
1769 end;
1770
1771 function TSetting.GetSoundViewName(Index: Integer): string;
1772 begin
1773         if (Index < GetSoundCount) and (Index >= 0) then
1774                 Result := SOUND_NAME[Index].ViewName
1775         else
1776                 Result := '';
1777 end;
1778
1779 function TSetting.GetSoundFileName(Index: Integer): string;
1780 begin
1781         if (Index < GetSoundCount) and (Index >= 0) then
1782                 Result := SOUND_NAME[Index].FileName
1783         else
1784                 Result := '';
1785 end;
1786
1787 procedure TSetting.SetSoundFileName(Index: Integer; value: string);
1788 begin
1789         if (Index < GetSoundCount) and (Index >= 0) then
1790                 SOUND_NAME[Index].FileName := value;
1791 end;
1792
1793 function TSetting.FindSoundFileName(Name: string): string;
1794 var
1795         i: Integer;
1796 begin
1797         for i := 0 to GetSoundCount - 1 do begin
1798                 if SoundName[i] = Name then begin
1799                         Result := SoundFileName[i];
1800                         Exit;
1801                 end;
1802         end;
1803         Result := '';
1804 end;
1805
1806 function TSetting.Encrypt(s: string): string;
1807 var
1808         cryptObj: THogeCryptAuto;
1809         inputStream, outputStream: TStringStream;
1810 begin
1811         inputStream := TStringStream.Create(s);
1812         outputStream := TStringStream.Create('');
1813         cryptObj := THogeCryptAuto.Create;
1814         try
1815                 // \88Ã\8d\86\89»
1816                 cryptObj.Encrypt(inputStream, GIKO_ENCRYPT_TEXT, outputStream);
1817
1818                 // \83o\83C\83i\83\8a\82È\82Ì\82Å\95K\97v\82É\89\9e\82\82Ä\83e\83L\83X\83g\82É\95Ï\8a·
1819                 Result := HogeBase64Encode(outputStream.DataString);
1820         finally
1821                 cryptObj.Free;
1822                 outputStream.Free;
1823                 inputStream.Free;
1824         end;
1825 end;
1826
1827 function TSetting.Decrypt(s: string): string;
1828 var
1829         cryptObj: THogeCryptAuto;
1830         inputStream, outputStream: TStringStream;
1831 begin
1832         try
1833                 inputStream := TStringStream.Create(HogeBase64Decode(s));
1834         except
1835                 Result := '';
1836                 Exit;
1837         end;
1838         outputStream := TStringStream.Create('');
1839         cryptObj := THogeCryptAuto.Create;
1840         try
1841                 // \95\9c\8d\86
1842                 cryptObj.Decrypt(inputStream, GIKO_ENCRYPT_TEXT, outputStream);
1843                 Result := outputStream.DataString;
1844         finally
1845                 cryptObj.Free;
1846                 outputStream.Free;
1847                 inputStream.Free;
1848         end;
1849 end;
1850
1851 function TSetting.GetMainCoolSet(Index: Integer): TCoolSet;
1852 begin
1853         if Index in [0..MAIN_COOLBAND_COUNT - 1] then
1854                 Result := FMainCoolBar[Index]
1855         else begin
1856                 Result.FCoolID := -1;
1857                 Result.FCoolWidth := -1;
1858                 Result.FCoolBreak := False;
1859         end;
1860 end;
1861
1862 function TSetting.GetBoardCoolSet(Index: Integer): TCoolSet;
1863 begin
1864         if Index in [0..LIST_COOLBAND_COUNT - 1] then
1865                 Result := FListCoolBar[Index]
1866         else begin
1867                 Result.FCoolID := -1;
1868                 Result.FCoolWidth := -1;
1869                 Result.FCoolBreak := False;
1870         end;
1871 end;
1872
1873 function TSetting.GetBrowserCoolSet(Index: Integer): TCoolSet;
1874 begin
1875         if Index in [0..BROWSER_COOLBAND_COUNT - 1] then
1876                 Result := FBrowserCoolBar[Index]
1877         else begin
1878                 Result.FCoolID := -1;
1879                 Result.FCoolWidth := -1;
1880                 Result.FCoolBreak := False;
1881         end;
1882 end;
1883
1884 procedure TSetting.SetMainCoolSet(Index: Integer; CoolSet: TCoolSet);
1885 begin
1886         if Index in [0..MAIN_COOLBAND_COUNT - 1] then
1887                 FMainCoolBar[Index] := CoolSet;
1888 end;
1889
1890 procedure TSetting.SetBoardCoolSet(Index: Integer; CoolSet: TCoolSet);
1891 begin
1892         if Index in [0..LIST_COOLBAND_COUNT - 1] then
1893                 FListCoolBar[Index] := CoolSet;
1894 end;
1895
1896 procedure TSetting.SetBrowserCoolSet(Index: Integer; CoolSet: TCoolSet);
1897 begin
1898         if Index in [0..BROWSER_COOLBAND_COUNT - 1] then
1899                 FBrowserCoolBar[Index] := CoolSet;
1900 end;
1901
1902 //url.ini\82ª\82È\82¢\82Æ\82«\82É\90\90¬\82·\82é
1903 procedure TSetting.MakeURLIniFile();
1904 var
1905         ini: TMemIniFile;
1906 begin
1907         ini := TMemIniFile.Create(GetBoardURLFileName());
1908         try
1909                 //\8dX\90VURL\82Ì\90\94
1910                 ini.WriteInteger('URL','count',1);
1911                 //\83f\83t\83H\83\8b\83g\82Å\8eg\97p\82·\82é\82t\82q\82k\82Ì\83C\83\93\83f\83b\83N\83X
1912                 ini.WriteInteger('URL','selected',1);
1913                 //\88È\89º\95K\97v\82È\90\94\82¾\82¯\81A\8dX\90V\82t\82q\82k\82ð\92Ç\89Á
1914                 ini.WriteString('URL','1',DEFAULT_2CH_BOARD_URL1);
1915                 //ini.WriteString('URL','2',DEFAULT_2CH_BOARD_URL2);
1916                 ini.UpdateFile;
1917         finally
1918                 ini.Free;
1919         end;
1920 end;
1921
1922 (*************************************************************************
1923  *\83{\81[\83h\83t\83@\83C\83\8b\96¼\8eæ\93¾\81i\83p\83X\81{\83t\83@\83C\83\8b\96¼\81j
1924  *************************************************************************)
1925 function TSetting.GetBoardFileName: string;
1926 begin
1927         Result := GetAppDir + CONFIG_DIR_NAME + '\' + BOARD_FILE_NAME;
1928 end;
1929
1930 (*************************************************************************
1931  *\83{\81[\83h\83t\83@\83C\83\8b\96¼\8eæ\93¾\81i\83p\83X\81{\83t\83@\83C\83\8b\96¼\81j
1932  *************************************************************************)
1933 function TSetting.GetCustomBoardFileName: string;
1934 begin
1935         Result := GetAppDir + CONFIG_DIR_NAME + '\' + CUSTOMBOARD_FILE_NAME;
1936 end;
1937
1938 (*************************************************************************
1939  *\83{\81[\83h\83f\83B\83\8c\83N\83g\83\8a\8eæ\93¾
1940  *************************************************************************)
1941 function TSetting.GetBoardDir: string;
1942 begin
1943         Result := GetAppDir + CONFIG_DIR_NAME + '\' + BOARD_DIR_NAME + '\';
1944 end;
1945
1946 (*************************************************************************
1947  *\83e\83\93\83|\83\89\83\8a\83t\83H\83\8b\83_\81[\96¼\8eæ\93¾
1948  *************************************************************************)
1949 function TSetting.GetHtmlTempFileName: string;
1950 begin
1951         Result := TEMP_FOLDER;
1952 end;
1953
1954
1955 (*************************************************************************
1956  *\8eÀ\8ds\83t\83@\83C\83\8b\83t\83H\83\8b\83_\8eæ\93¾
1957  *************************************************************************)
1958 function TSetting.GetAppDir: string;
1959 begin
1960         Result := ExtractFilePath(Application.ExeName);
1961 end;
1962
1963 (*************************************************************************
1964  *TempHtml\83t\83@\83C\83\8b\96¼\8eæ\93¾\81i\83p\83X\81{\83t\83@\83C\83\8b\96¼\81j
1965  *************************************************************************)
1966 function TSetting.GetTempFolder: string;
1967 begin
1968         Result := GetAppDir + TEMP_FOLDER;
1969 end;
1970
1971 (*************************************************************************
1972  *sent.ini\83t\83@\83C\83\8b\96¼\8eæ\93¾\81i\83p\83X\81{\83t\83@\83C\83\8b\96¼\81j
1973  *************************************************************************)
1974 function TSetting.GetSentFileName: string;
1975 begin
1976         Result := GetAppDir + SENT_FILE_NAME;
1977 end;
1978
1979 (*************************************************************************
1980  *outbox.ini\83t\83@\83C\83\8b\96¼\8eæ\93¾\81i\83p\83X\81{\83t\83@\83C\83\8b\96¼\81j
1981  *************************************************************************)
1982 function TSetting.GetOutBoxFileName: string;
1983 begin
1984         Result := GetAppDir + OUTBOX_FILE_NAME;
1985 end;
1986
1987 (*************************************************************************
1988  *Config\83t\83H\83\8b\83_\8eæ\93¾
1989  *************************************************************************)
1990 function TSetting.GetConfigDir: string;
1991 begin
1992         Result := IncludeTrailingPathDelimiter(GetAppDir + CONFIG_DIR_NAME);
1993 end;
1994
1995 function TSetting.GetStyleSheetDir: string;
1996 begin
1997         Result := IncludeTrailingPathDelimiter(GetConfigDir + CSS_DIR_NAME);
1998 end;
1999
2000 function TSetting.GetSkinDir: string;
2001 begin
2002         Result := IncludeTrailingPathDelimiter(GetConfigDir + SKIN_DIR_NAME);
2003 end;
2004
2005 function TSetting.GetSkinHeaderFileName: string;
2006 begin
2007         Result := CSSFileName + SKIN_HEADER_FILE_NAME;
2008 end;
2009
2010 function TSetting.GetSkinFooterFileName: string;
2011 begin
2012         Result := CSSFileName + SKIN_FOOTER_FILE_NAME;
2013 end;
2014
2015 function TSetting.GetSkinNewResFileName: string;
2016 begin
2017         Result := CSSFileName + SKIN_NEWRES_FILE_NAME;
2018 end;
2019
2020 function TSetting.GetSkinResFileName: string;
2021 begin
2022         Result := CSSFileName + SKIN_RES_FILE_NAME;
2023 end;
2024
2025 function TSetting.GetSkinBookmarkFileName: string;
2026 begin
2027         Result := CSSFileName + SKIN_BOOKMARK_FILE_NAME;
2028 end;
2029
2030 function TSetting.GetSkinNewmarkFileName: string;
2031 begin
2032         Result := CSSFileName + SKIN_NEWMARK_FILE_NAME;
2033 end;
2034
2035 function TSetting.GetNGWordsDir: string;
2036 begin
2037         Result := IncludeTrailingPathDelimiter(GetConfigDir + NGWORDs_DIR_NAME);
2038 end;
2039
2040 function TSetting.GetBoardPlugInDir: string;
2041 begin
2042         Result := IncludeTrailingPathDelimiter(GetConfigDir + BOARD_PLUGIN_DIR_NAME);
2043 end;
2044
2045 procedure TSetting.SetUseCSS( value: Boolean );
2046 begin
2047
2048         FUseCSS := value;
2049         // Windows\93I\82É\83t\83@\83C\83\8b\83p\83X\82Ì\91å\95\8e\9a\8f¬\95\8e\9a\82Ì\88á\82¢\82Í\96³\8e\8b\82³\82ê\82é\82Ì\82Å\81A
2050         // \83R\83R\82Å\82Ì\94»\92è\82Å\82à\91å\95\8e\9a\8f¬\95\8e\9a\82Ì\88á\82¢\82Í\96³\8e\8b\82·\82é\81B
2051         FUseSkin :=
2052                 UseCSS and
2053                 (Pos( AnsiLowerCase(GetSkinDir), AnsiLowerCase(CSSFileName) ) > 0) and
2054                 FileExists( GetSkinHeaderFileName );
2055
2056 end;
2057
2058 procedure TSetting.SetCSSFileName( fileName: string );
2059 begin
2060
2061         FCSSFileName := fileName;
2062         // Windows\93I\82É\83t\83@\83C\83\8b\83p\83X\82Ì\91å\95\8e\9a\8f¬\95\8e\9a\82Ì\88á\82¢\82Í\96³\8e\8b\82³\82ê\82é\82Ì\82Å\81A
2063         // \83R\83R\82Å\82Ì\94»\92è\82Å\82à\91å\95\8e\9a\8f¬\95\8e\9a\82Ì\88á\82¢\82Í\96³\8e\8b\82·\82é\81B
2064         FUseSkin :=
2065                 UseCSS and
2066                 (Pos( AnsiLowerCase(GetSkinDir), AnsiLowerCase(CSSFileName) ) > 0) and
2067                 FileExists( GetSkinHeaderFileName );
2068
2069 end;
2070
2071 function TSetting.GetSambaFileName: string;
2072 begin
2073         Result := GetAppDir + SAMBATIME_FILE_NAME;
2074 end;
2075 //\94Â\8dX\90V\8f\9c\8aO\83J\83e\83S\83\8a\83\8a\83X\83g\95Û\91\83t\83@\83C\83\8b
2076 function TSetting.GetIgnoreFileName: string;
2077 begin
2078         Result := GetConfigDir + IGNORE_FILE_NAME;
2079 end;
2080
2081 //! \83}\83E\83X\83W\83F\83X\83`\83\83\81[\83t\83@\83C\83\8b\83p\83X
2082 function TSetting.GetGestureFileName: string;
2083 begin
2084         Result := GetConfigDir + GESTURE_FILE_NAME;
2085 end;
2086
2087 //! \83X\83p\83\80\83t\83B\83\8b\83^\8aw\8fK\97\9a\97ð\83t\83@\83C\83\8b\83p\83X
2088 function TSetting.GetSpamFilterFileName: string;
2089 begin
2090         Result := GetConfigDir + SPAMFILTER_FILE_NAME;
2091 end;
2092
2093 function TSetting.GetLanguageFileName: string;
2094 begin
2095     Result := GetConfigDir + LANGUAGE_FILE_NAME;
2096 end;
2097 procedure TSetting.WriteLogFolder(AVal : String);
2098 begin
2099         FLogFolder := AVal;
2100         FLogFolderP := IncludeTrailingPathDelimiter(LogFolder);
2101 end;
2102 function TSetting.GetMainKeyFileName: String;
2103 begin
2104         Result := GetConfigDir + KEY_SETTING_FILE_NAME;
2105 end;
2106 function TSetting.GetEditorKeyFileName: String;
2107 begin
2108         Result := GetConfigDir + EKEY_SETTING_FILE_NAME;
2109 end;
2110 function TSetting.GetInputAssistFileName : String;
2111 begin
2112         Result := GetConfigDir + INPUTASSIST_FILE_NAME;
2113 end;
2114 procedure TSetting.SetMoveHistorySize(AVal : Integer);
2115 begin
2116     if (AVal > 0) then begin
2117         FMoveHistorySize := AVal;
2118     end;
2119 end;
2120 {
2121 \brief \83v\83\8d\83L\83V\90Ý\92è\93Ç\82Ý\8d\9e\82Ý
2122 \param  memIni  ini\83t\83@\83C\83\8b
2123 }
2124 procedure TSetting.ReadProxySettings(memIni: TMemIniFile);
2125 const
2126     READ_SECTION = 'ReadProxy';
2127     WRITE_SECTION= 'WriteProxy';
2128     PROXY_KEY = 'Proxy';
2129     ADDRE_KEY = 'Address';
2130     PORT_KEY = 'Port';
2131     UID_KEY  = 'UserID';
2132     PASS_KEY = 'Password';
2133 begin
2134     if (memIni <> nil) then begin
2135                 FReadProxy := memIni.ReadBool(READ_SECTION, PROXY_KEY, false);
2136                 FReadProxyAddress := memIni.ReadString(READ_SECTION, ADDRE_KEY, '');
2137                 FReadProxyPort := memIni.ReadInteger(READ_SECTION, PORT_KEY, 0);
2138                 FReadProxyUserID := memIni.ReadString(READ_SECTION, UID_KEY, '');
2139                 FReadProxyPassword := memIni.ReadString(READ_SECTION, PASS_KEY, '');
2140
2141                 FWriteProxy := memIni.ReadBool(WRITE_SECTION, PROXY_KEY, false);
2142                 FWriteProxyAddress := memIni.ReadString(WRITE_SECTION, ADDRE_KEY, '');
2143                 FWriteProxyPort := memIni.ReadInteger(WRITE_SECTION, PORT_KEY, 0);
2144                 FWriteProxyUserID := memIni.ReadString(WRITE_SECTION, UID_KEY, '');
2145                 FWriteProxyPassword := memIni.ReadString(WRITE_SECTION, PASS_KEY, '');
2146     end;
2147 end;
2148 {
2149 \brief  \8ae\8eí\83E\83B\83\93\83h\83E\90Ý\92è\93Ç\82Ý\8d\9e\82Ý
2150 \param  menIni  ini\83t\83@\83C\83\8b
2151 }
2152 procedure TSetting.ReadWindowSettings(memIni: TMemIniFile);
2153 const
2154     WINDOW_SECTION = 'Window';
2155 begin
2156     if (memIni <> nil) then begin
2157                 FBrowserFontName := memIni.ReadString(WINDOW_SECTION, 'BrowserFontName', '');
2158                 FBrowserFontSize := memIni.ReadInteger(WINDOW_SECTION, 'BrowserFontSize', 0);
2159                 FBrowserFontBold := memIni.ReadInteger(WINDOW_SECTION, 'BrowserFontBold', 0);
2160                 FBrowserFontItalic := memIni.ReadInteger(WINDOW_SECTION, 'BrowserFontItalic', 0);
2161                 FBrowserFontColor := memIni.ReadInteger(WINDOW_SECTION, 'BrowserFontColor', -1);
2162                 FBrowserBackColor := memIni.ReadInteger(WINDOW_SECTION, 'BrowserBackColor', -1);
2163
2164                 FCabinetFontName := memIni.ReadString(WINDOW_SECTION, 'CabinetFontName', DEFAULT_FONT_NAME);
2165                 FCabinetFontSize := memIni.ReadInteger(WINDOW_SECTION, 'CabinetFontSize', DEFAULT_FONT_SIZE);
2166                 FCabinetFontBold := memIni.ReadBool(WINDOW_SECTION, 'CabinetFontBold', False);
2167                 FCabinetFontItalic := memIni.ReadBool(WINDOW_SECTION, 'CabinetFontItalic', False);
2168                 FCabinetFontColor := StringToColor(memIni.ReadString(WINDOW_SECTION, 'CabinetFontColor', DEFAULT_FONT_COLOR));
2169                 FCabinetBackColor := StringToColor(memIni.ReadString(WINDOW_SECTION, 'CabinetBackColor', DEFAULT_WINDOW_COLOR));
2170
2171                 FListFontName := memIni.ReadString(WINDOW_SECTION, 'ListFontName', DEFAULT_FONT_NAME);
2172                 FListFontSize := memIni.ReadInteger(WINDOW_SECTION, 'ListFontSize', DEFAULT_FONT_SIZE);
2173                 FListFontBold := memIni.ReadBool(WINDOW_SECTION, 'ListFontBold', False);
2174                 FListFontItalic := memIni.ReadBool(WINDOW_SECTION, 'ListFontItalic', False);
2175                 FListFontColor := StringToColor(memIni.ReadString(WINDOW_SECTION, 'ListFontColor', DEFAULT_FONT_COLOR));
2176                 FListBackColor := StringToColor(memIni.ReadString(WINDOW_SECTION, 'ListBackColor', DEFAULT_WINDOW_COLOR));
2177                 FUseOddColorOddResNum := memIni.ReadBool(WINDOW_SECTION,'UseOddColor', False);
2178                 FOddColor := StringToColor(memIni.ReadString(WINDOW_SECTION, 'OddColor', DEFAULT_WINDOW_COLOR));
2179                 FUnFocusedBold := memIni.ReadBool(WINDOW_SECTION,'UnFocusedBold', False);
2180
2181                 FEditorFontName := memIni.ReadString(WINDOW_SECTION, 'EditorFontName', DEFAULT_FONT_NAME);
2182                 FEditorFontSize := memIni.ReadInteger(WINDOW_SECTION, 'EditorFontSize', DEFAULT_FONT_SIZE);
2183                 FEditorFontBold := memIni.ReadBool(WINDOW_SECTION, 'EditorFontBold', False);
2184                 FEditorFontItalic := memIni.ReadBool(WINDOW_SECTION, 'EditorFontItalic', False);
2185                 FEditorFontColor := StringToColor(memIni.ReadString(WINDOW_SECTION, 'EditorFontColor', DEFAULT_FONT_COLOR));
2186                 FEditorBackColor := StringToColor(memIni.ReadString(WINDOW_SECTION, 'EditorBackColor', DEFAULT_WINDOW_COLOR));
2187
2188                 FBrowserTabFontName := memIni.ReadString(WINDOW_SECTION, 'BrowserTabFontName', DEFAULT_TAB_FONT_NAME);
2189                 FBrowserTabFontSize := memIni.ReadInteger(WINDOW_SECTION, 'BrowserTabFontSize', DEFAULT_TAB_FONT_SIZE);
2190                 FBrowserTabFontBold := memIni.ReadBool(WINDOW_SECTION, 'BrowserTabFontBold', False);
2191                 FBrowserTabFontItalic := memIni.ReadBool(WINDOW_SECTION, 'BrowserTabFontItalic', False);
2192
2193                 FHintFontName := memIni.ReadString(WINDOW_SECTION, 'HintFontName', Screen.HintFont.Name);
2194                 FHintFontSize := memIni.ReadInteger(WINDOW_SECTION, 'HintFontSize', Screen.HintFont.Size);
2195                 //FHintFontBold := memIni.ReadBool(WINDOW_SECTION, 'HintFontBold', False);
2196                 //FHintFontItalic := memIni.ReadBool(WINDOW_SECTION, 'HintFontItalic', False);
2197                 FHintFontColor := StringToColor(memIni.ReadString(WINDOW_SECTION, 'HintFontColor', DEFAULT_FONT_COLOR));
2198                 FHintBackColor := StringToColor(memIni.ReadString(WINDOW_SECTION, 'HintBackColor', 'clInfoBk'));
2199     end;
2200 end;
2201 {
2202 \brief  \93ü\97Í\97\9a\97ð\93Ç\82Ý\8d\9e\82Ý\81i\8c\9f\8dõ\81{\83\81\81[\83\8b\97\93\81{\96¼\91O\81j
2203 \param  memIni  ini\83t\83@\83C\83\8b
2204 }
2205 procedure TSetting.ReadInputHisotrys(memIni: TMemIniFile);
2206 const
2207     SECTIONS : array[0..2] of string = ('Name', 'Mail', 'SelectText');
2208 var
2209         wkList : TStringList;
2210     wkStr : string;
2211     i, j : Integer;
2212     listArray : array[0..2] of TStringList;
2213 begin
2214     if (memIni <> nil) then begin
2215         listArray[0] := FNameList;
2216         listArray[1] := FMailList;
2217         listArray[2] := FSelectTextList;
2218         wkList := TStringList.Create;
2219         try
2220             for i := 0 to High(listArray) do begin
2221                 memIni.ReadSection(SECTIONS[i], wkList);
2222                 for j := 0 to wkList.Count -1 do begin
2223                     wkStr := memIni.ReadString(SECTIONS[i], wkList[j], '');
2224                     if (wkStr <> '') and
2225                         (listArray[i].IndexOf(wkStr) = -1) then begin
2226                         listArray[i].Add(wkStr);
2227                     end;
2228                 end;
2229             end;
2230         finally
2231             wkList.Free;
2232         end;
2233     end;
2234 end;
2235 {
2236 \breif  \83\8a\83X\83g\83J\83\89\83\80\95\9d\93Ç\82Ý\8d\9e\82Ý
2237 \param  memIni  ini\83t\83@\83C\83\8b
2238 }
2239 procedure TSetting.ReadListColumnWidth(memIni: TMemIniFile);
2240 const
2241     SECTIONS : array[0..2] of string =
2242         ('BBSColumnWidth', 'CategoryColumnWidth', 'BoardColumnWidth');
2243         DEFAULT_BBS_WIDTH: array[0..0] of Integer = (140);
2244         DEFAULT_CATEGORY_WIDTH: array[0..2] of Integer = (150, 80, 130);
2245         DEFAULT_BOARD_WIDTH: array[0..10] of Integer = (350, 60, 60, 60, 60, 60, 80, 130, 130, 130, 60);
2246         MAX_WIDTH: Integer = 2000;
2247 var
2248         wkList : TStringList;
2249     i : Integer;
2250 begin
2251     if (memIni <> nil) then begin
2252                 // \83\8a\83X\83g\83J\83\89\83\80\95\9d
2253                 wkList := TStringList.Create;
2254                 try
2255                         memIni.ReadSection(SECTIONS[0], wkList);
2256                         if Length(FBBSColumnWidth) <> wkList.Count then begin
2257                                 memIni.EraseSection(SECTIONS[0]);
2258                         end;
2259                         for i := 0 to High(FBBSColumnWidth) do begin
2260                                 BBSColumnWidth[i] := memIni.ReadInteger(SECTIONS[0],
2261                      'ID' + IntToStr(i), DEFAULT_BBS_WIDTH[i]);
2262                                 if BBSColumnWidth[i] > MAX_WIDTH then
2263                                         BBSColumnWidth[i] := DEFAULT_BBS_WIDTH[i];
2264                         end;
2265                         memIni.ReadSection(SECTIONS[1], wkList);
2266                         if Length(FCategoryColumnWidth) <> wkList.Count then begin
2267                                 memIni.EraseSection(SECTIONS[1]);
2268                         end;
2269                         for i := 0 to High(FCategoryColumnWidth) do begin
2270                                 CategoryColumnWidth[i] := memIni.ReadInteger(SECTIONS[1],
2271                      'ID' + IntToStr(i), DEFAULT_CATEGORY_WIDTH[i]);
2272                                 if CategoryColumnWidth[i] > MAX_WIDTH then
2273                                         CategoryColumnWidth[i] := DEFAULT_CATEGORY_WIDTH[i];
2274                         end;
2275                         memIni.ReadSection(SECTIONS[2], wkList);
2276                         if Length(FBoardColumnWidth) <> wkList.Count then begin
2277                                 memIni.EraseSection(SECTIONS[2]);
2278                         end;
2279                         for i := 0 to High(FBoardColumnWidth) do begin
2280                                 BoardColumnWidth[i] := memIni.ReadInteger(SECTIONS[2],
2281                      'ID' + IntToStr(i), DEFAULT_BOARD_WIDTH[i]);
2282                                 if BoardColumnWidth[i] > MAX_WIDTH then
2283                                         BoardColumnWidth[i] := DEFAULT_BOARD_WIDTH[i];
2284                         end;
2285                 finally
2286                         wkList.Free;
2287                 end;
2288     end;
2289 end;
2290 //! \83J\83e\83S\83\8a\83\8a\83X\83g\83J\83\89\83\80\8f\87\8f\98\93Ç\82Ý\8d\9e\82Ý
2291 procedure TSetting.ReadOrdColumn(memIni: TMemIniFile);
2292 var
2293         wkList : TStringList;
2294     wkStr : string;
2295     i, id, code : Integer;
2296 begin
2297     if (memIni <> nil) then begin
2298                 wkList := TStringList.Create;
2299                 try
2300                         memIni.ReadSection( 'BBSColumnOrder', wkList );
2301                         for i := 0 to wkList.Count - 1 do begin
2302                                 wkStr := memIni.ReadString( 'BBSColumnOrder', 'ID' + IntToStr( i ), '' );
2303                                 Val( wkStr, id, code );
2304                                 if code = 0 then
2305                                         FBBSColumnOrder.Add( TGikoBBSColumnID( id ) );
2306                         end;
2307                         if FBBSColumnOrder.Count = 0 then begin
2308                                 // \90Ý\92è\82ª\96³\82¢\82Ì\82Å\8dì\90¬
2309                                 for i := 0 to Integer( High( TGikoBBSColumnID ) ) do
2310                                         FBBSColumnOrder.Add( TGikoBBSColumnID( i ) );
2311                         end;
2312
2313                         memIni.ReadSection( 'CategoryColumnOrder', wkList );
2314                         for i := 0 to wkList.Count - 1 do begin
2315                                 wkStr := memIni.ReadString( 'CategoryColumnOrder', 'ID' + IntToStr( i ), '' );
2316                                 Val( wkStr, id, code );
2317                                 if code = 0 then
2318                                         FCategoryColumnOrder.Add( TGikoCategoryColumnID( id ) );
2319                         end;
2320                         if FCategoryColumnOrder.Count = 0 then begin
2321                                 // \90Ý\92è\82ª\96³\82¢\82Ì\82Å\8dì\90¬
2322                                 for i := 0 to Integer( High( TGikoCategoryColumnID ) ) do
2323                                         FCategoryColumnOrder.Add( TGikoCategoryColumnID( i ) );
2324                         end;
2325
2326                         memIni.ReadSection( 'BoardColumnOrder', wkList );
2327                         for i := 0 to wkList.Count - 1 do begin
2328                                 wkStr := memIni.ReadString( 'BoardColumnOrder', 'ID' + IntToStr( i ), '' );
2329                                 Val( wkStr, id, code );
2330                                 if code = 0 then
2331                                         FBoardColumnOrder.Add( TGikoBoardColumnID( id ) );
2332                         end;
2333                         if FBoardColumnOrder.Count = 0 then begin
2334                                 // \90Ý\92è\82ª\96³\82¢\82Ì\82Å\8dì\90¬
2335                                 for i := 0 to Integer( High( TGikoBoardColumnID ) ) do begin
2336                                         // \90¨\82¢\82Ì\83J\83\89\83\80\82Í\83f\83t\83H\83\8b\83g\82Å\94ñ\95\\8e¦\82É\82·\82é
2337                                         if ( i <> Ord(gbcVigor) ) then begin
2338                                                 FBoardColumnOrder.Add( TGikoBoardColumnID( i ) );
2339                                         end;
2340                                 end;
2341                         end;
2342                 finally
2343                         wkList.Free;
2344                 end;
2345     end;
2346 end;
2347 end.
2348