Develop and Download Open Source Software

Browse CVS Repository

Annotation of /gikonavigoeson/gikonavi/Setting.pas

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph


Revision 1.80 - (hide annotations) (download) (as text)
Sat Oct 23 08:58:16 2004 UTC (19 years, 5 months ago) by h677
Branch: MAIN
Changes since 1.79: +5 -1 lines
File MIME type: text/x-pascal
BrowserTabとスレ一覧のフォントのスタイル指定をできるようにした。

1 hi_ 1.1 unit Setting;
2    
3     interface
4    
5     uses
6     SysUtils, Classes, Graphics, Forms, Math, IniFiles, UCryptAuto, UBase64,
7 yoffy 1.74 ComCtrls, GestureModel;
8 hi_ 1.1
9     const
10     MAIN_COOLBAND_COUNT = 4; //?<?ゃ??oolBand????/span>
11     LIST_COOLBAND_COUNT = 2; //??oolBand????/span>
12     BROWSER_COOLBAND_COUNT = 3; //????????oolBand????/span>
13    
14 yoffy 1.14 BOARD_FILE_NAME = 'board.2ch';
15     CUSTOMBOARD_FILE_NAME = 'custom.2ch';
16 yoffy 1.18 BOARD_DIR_NAME = 'Board';
17 yoffy 1.14 KEY_SETTING_FILE_NAME = 'key.ini';
18 yoffy 1.34 EKEY_SETTING_FILE_NAME = 'Ekey.ini';
19 yoffy 1.14 TEMP_FOLDER = 'Temp';
20     OUTBOX_FILE_NAME = 'outbox.ini';
21     SENT_FILE_NAME = 'sent.ini';
22     CONFIG_DIR_NAME = 'config';
23     CSS_DIR_NAME = 'css';
24     SKIN_DIR_NAME = 'skin';
25     SKIN_HEADER_FILE_NAME = 'Header.html';
26     SKIN_FOOTER_FILE_NAME = 'Footer.html';
27     SKIN_NEWRES_FILE_NAME = 'NewRes.html';
28     SKIN_RES_FILE_NAME = 'Res.html';
29     SKIN_BOOKMARK_FILE_NAME = 'Bookmark.html';
30     SKIN_NEWMARK_FILE_NAME = 'Newmark.html';
31 yoffy 1.15 NGWORDs_DIR_NAME : String = 'NGwords';
32 yoffy 1.16 BOARD_PLUGIN_DIR_NAME = 'BoardPlugin';
33 yoffy 1.34 SAMBATIME_FILE_NAME : String = 'Samba.ini';
34 h677 1.35 IGNORE_FILE_NAME : String = 'Ignore.txt';
35 h677 1.37 // DOLIB_LOGIN_URL = '/~tora3n2c/futen.cgi';
36 q9_ 1.45 MAX_POPUP_RES : Integer = 10;
37 yoffy 1.74 GESTURE_FILE_NAME = 'Gestures.ini';
38 yoffy 1.79 SPAMFILTER_FILE_NAME = 'SpamFilter.ini';
39 hi_ 1.1 type
40     TGikoTabPosition = (gtpTop, gtpBottom); // ?帥??篏?臀?/span>
41     TGikoTabAppend = (gtaFirst, gtpLast); // ?帥??菴遵??篏?臀?/span>
42     TGikoTabStyle = (gtsTab, gtsButton, gtsFlat); // ?帥???鴻?帥?ゃ??/span>
43     TGikoListOrientation = (gloHorizontal, gloVertical); // ???鴻?????眼?紙梓綛?/span>
44     TGikoListState = (glsMax, glsNormal, glsMin); // ???鴻???泣?ゃ?榊?倶??
45     // ???????≪????茵?ず篏?臀?/span>
46     TGikoPopupPosition = (gppRightTop, gppTop, gppLeftTop,
47     gppRight, gppCenter, gppLeft,
48     gppRightBottom, gppBottom, gppLeftBottom);
49     //???????ャ?若?泣?ゃ??/span>
50     TGikoPreviewSize = (gpsXLarge, gpsLarge, gpsMedium, gpsSmall, gpsXSmall);
51 yoffy 1.39 TGikoBrowserAutoMaximize = (gbmNone, gbmClick, gbmDoubleClick);
52     // ???????吟????????????紊у???????>散
53 yoffy 1.49 /// ???壕;腓榊??蚊??10 ?? 65535 ????? n ???号?宴????
54     /// 絨?? 201-300 ??????????蚊?????????????醇?с?????????篏? 2 byte ???膣???
55     TGikoResRange = (grrAll, grrSelect, grrKoko, grrNew);
56 hi_ 1.1
57 yoffy 1.55 /// ?鴻??????筝?荀ц;腓榊???/span>
58     TGikoThreadRange = (gtrAll, gtrSelect, gtrLog, gtrNew);
59    
60 yoffy 1.62 /// ?????眼?????鴻?????????? ID
61     type TGikoBBSColumnID = (gbbscTitle);
62 yoffy 1.63 /// ?????眼?????鴻????????????
63 yoffy 1.65 const GikoBBSColumnCaption : array[0..0] of string =
64 yoffy 1.62 ( '?????眼????' );
65 yoffy 1.63 /// ?????眼?????鴻????????????
66     type TGikoBBSColumnList = class( TList )
67     private
68     function GetItem( index : integer ) : TGikoBBSColumnID;
69     procedure SetItem( index : integer; value : TGikoBBSColumnID);
70     public
71     constructor Create;
72 yoffy 1.68 destructor Destroy; override;
73 yoffy 1.63 function Add( value : TGikoBBSColumnID ) : Integer;
74 yoffy 1.64 property Items[index : integer]: TGikoBBSColumnID read GetItem write SetItem; default;
75 yoffy 1.63 end;
76 yoffy 1.62 /// ?帥???鴻?????????? ID
77 yoffy 1.65 type TGikoCategoryColumnID = (gccTitle, gccRoundName, gccLastModified);
78 yoffy 1.62 /// ?帥???鴻????????????
79 yoffy 1.65 const GikoCategoryColumnCaption : array[0..2] of string =
80     ( '?水??', '綏≦??篋?膣?', '??緇??ユ??' );
81 yoffy 1.63 /// ?帥???鴻????????????
82     type TGikoCategoryColumnList = class( TList )
83     private
84     function GetItem( index : integer ) : TGikoCategoryColumnID;
85     procedure SetItem( index : integer; value : TGikoCategoryColumnID);
86     public
87     constructor Create;
88 yoffy 1.68 destructor Destroy; override;
89 yoffy 1.63 function Add( value : TGikoCategoryColumnID ) : Integer;
90 yoffy 1.64 property Items[index : integer]: TGikoCategoryColumnID read GetItem write SetItem; default;
91 yoffy 1.63 end;
92 yoffy 1.62 /// ?鴻?????鴻?????????? ID
93     type TGikoBoardColumnID = (gbcTitle, gbcAllCount, gbcLocalCount, gbcNonAcqCount,
94 h677 1.70 gbcNewCount, gbcUnReadCount, gbcRoundName, gbcRoundDate, gbcCreated, gbcLastModified );{gbcLastModified,}
95 yoffy 1.62 /// ?鴻?????鴻????????????
96 h677 1.70 const GikoBoardColumnCaption : array[0..9] of string =
97 yoffy 1.62 ( '?鴻????????', '?????潟??', '??緇?', '????', '?亥??',
98 h677 1.70 '???', '綏≦??篋?膣?', '??緇??ユ??', '?鴻??????ユ??', '??腟??贋?井?ユ??' );
99     const GikoBoardColumnAlignment : array[0..9] of TAlignment = (
100 yoffy 1.65 taLeftJustify, taRightJustify, taRightJustify, taRightJustify,
101     taRightJustify, taRightJustify, taLeftJustify, taLeftJustify,
102 h677 1.70 taLeftJustify, taLeftJustify);
103 yoffy 1.63 /// ?鴻?????鴻????????????
104     type TGikoBoardColumnList = class( TList )
105     private
106     function GetItem( index : integer ) : TGikoBoardColumnID;
107     procedure SetItem( index : integer; value : TGikoBoardColumnID);
108     public
109     constructor Create;
110 yoffy 1.68 destructor Destroy; override;
111 yoffy 1.63 function Add( value : TGikoBoardColumnID ) : Integer;
112 yoffy 1.64 property Items[index : integer]: TGikoBoardColumnID read GetItem write SetItem; default;
113 yoffy 1.63 end;
114 yoffy 1.62
115     type
116 hi_ 1.1 //CoolBar荐?????潟?若??
117     TCoolSet = record
118     FCoolID: Integer;
119     FCoolWidth: Integer;
120     FCoolBreak: Boolean;
121     end;
122    
123     TSetting = class(TObject)
124     private
125     //??篆<???????<?泣?ゃ??/span>
126     FRecvBufferSize: Integer;
127     //HTTP1.1篏睡??/span>
128     FProtocol: Boolean;
129     //???????傑・膓?HTTP1.1篏睡??/span>
130     FProxyProtocol: Boolean;
131    
132     //???????件?茯?昭???
133     FReadProxy: Boolean;
134     FReadProxyAddress: string;
135     FReadProxyPort: Integer;
136     FReadProxyUserID: string;
137     FReadProxyPassword: string;
138    
139     //???????件??梧昭???
140     FWriteProxy: Boolean;
141     FWriteProxyAddress: string;
142     FWriteProxyPort: Integer;
143     FWriteProxyUserID: string;
144     FWriteProxyPassword: string;
145    
146     //???c????????
147     FCabinetFontName: string;
148     FCabinetFontSize: Integer;
149     FCabinetFontBold: Boolean;
150     FCabinetFontItalic: Boolean;
151     FCabinetFontColor: TColor;
152     FCabinetBackColor: TColor;
153    
154     //???鴻??
155     FListFontName: string;
156     FListFontSize: Integer;
157     FListFontBold: Boolean;
158     FListFontItalic: Boolean;
159     FListFontColor: TColor;
160     FListBackColor: TColor;
161    
162     //????????/span>
163 yoffy 1.6 FBrowserFontName: string; // ''...default
164     FBrowserFontSize: Integer; // 0...default
165     FBrowserFontBold: Integer; // 0...default, -1...False, 1...True
166     FBrowserFontItalic: Integer; // 筝???????
167 yoffy 1.14 FBrowserFontColor: Integer; // -1...default
168     FBrowserBackColor: Integer; // 筝???????
169 hi_ 1.1
170     //?????c??/span>
171     FEditorFontName: string;
172     FEditorFontSize: Integer;
173     FEditorFontBold: Boolean;
174     FEditorFontItalic: Boolean;
175     FEditorFontColor: TColor;
176     FEditorBackColor: TColor;
177    
178     //?帥???????潟??
179     FBrowserTabFontName: string;
180     FBrowserTabFontSize: Integer;
181     FBrowserTabFontBold: Boolean;
182     FBrowserTabFontItalic: Boolean;
183    
184     //???潟?????c?潟????/span>
185     FHintFontName: string;
186     FHintFontSize: Integer;
187     //FHintFontBold: Boolean;
188     //FHintFontItalic: Boolean;
189     FHintFontColor: TColor;
190     FHintBackColor: TColor;
191    
192     //???c?潟?????泣?ゃ??/span>
193     FWindowTop: Integer;
194     FWindowLeft: Integer;
195     FWindowHeight: Integer;
196     FWindowWidth: Integer;
197     FWindowMax: Boolean;
198     //???鴻?????ャ?若?鴻?帥?ゃ??/span>
199     FListStyle: TViewStyle;
200    
201     //???若?????取;腓?/span>
202     FStdToolBarVisible: Boolean;
203     FAddressBarVisible: Boolean;
204     FLinkBarVisible: Boolean;
205     FListToolBarVisible: Boolean;
206     FListNameBarVisible: Boolean;
207     FBrowserToolBarVisible: Boolean;
208     FBrowserNameBarVisible: Boolean;
209    
210     //???????吟?帥??
211     FBrowserTabVisible: Boolean;
212     FBrowserTabPosition: TGikoTabPosition;
213     FBrowserTabAppend: TGikoTabAppend;
214     FBrowserTabStyle: TGikoTabStyle;
215    
216     //?<???祉?若?吾????/span>
217     FMessageBarVisible: Boolean;
218     FMessegeBarHeight: Integer;
219    
220     //?鴻???若?帥?鴻????/span>
221     FStatusBarVisible: Boolean;
222    
223     //???c????????????祉?泣?ゃ??/span>
224     FCabinetVisible: Boolean;
225     FCabinetWidth: Integer;
226    
227     //???鴻???祉???????吟?泣?ゃ??/span>
228     FListOrientation: TGikoListOrientation;
229     FListHeight: Integer;
230     FListHeightState: TGikoListState;
231     FListWidth: Integer;
232     FListWidthState: TGikoListState;
233     // FListHeightMax: Boolean;
234     // FListWidthMax: Boolean;
235    
236     //??篆∞???????祉?<?若??/span>
237     FNameList: TStringList;
238     FMailList: TStringList;
239    
240     //?????c?帥?若???c?潟?????泣?ゃ??/span>
241     FEditWindowTop: Integer;
242     FEditWindowLeft: Integer;
243     FEditWindowHeight: Integer;
244     FEditWindowWidth: Integer;
245     FEditWindowMax: Boolean;
246 deux 1.20 FEditWindowStay: Boolean;
247     FEditWindowTranslucent: Boolean;
248 hi_ 1.1
249     //???鴻????埈;腓?/span>
250     FListViewNo: Boolean;
251     //CSS茵?ず
252     FUseCSS: Boolean;
253     //CSS???<?ゃ????
254     FCSSFileName: string;
255 yoffy 1.14 // ?鴻???活;腓?筝???????????? ini ???絖???????????)
256     FUseSkin: Boolean;
257 hi_ 1.1 //mail罨?茵?ず
258     FShowMail: Boolean;
259 yoffy 1.49 /// ???壕;腓榊???/span>
260 yoffy 1.51 FResRange : Longint;
261     /// 莎桁???????壕;腓榊??蚊???阪?
262     FResRangeHold : Boolean;
263 yoffy 1.55 /// ?鴻??????筝?荀ц;腓榊???/span>
264     FThreadRange : TGikoThreadRange;
265 yoffy 1.2 //???≪?????c???????鴻???????≪????茵?ず
266 hi_ 1.1 FUnActivePopup: Boolean;
267 yoffy 1.2 //???鴻???????≪???????????若???若????
268     FResPopupHeaderBold: Boolean;
269 hi_ 1.1
270     //???違????????
271     FLogFolder: string;
272     FNewLogFolder: string;
273    
274     //???鴻???????????????若?泣?ゃ??/span>
275     FBBSColumnWidth: array[0..0] of Integer;
276 yoffy 1.65 FCategoryColumnWidth: array[0..2] of Integer;
277 h677 1.70 FBoardColumnWidth: array[0..9] of Integer;
278 hi_ 1.1
279 yoffy 1.62 /// ?????眼?????鴻??????????綺?span>
280 yoffy 1.63 FBBSColumnOrder : TGikoBBSColumnList;
281 yoffy 1.62 /// ?帥???鴻??????????綺?span>
282 yoffy 1.63 FCategoryColumnOrder : TGikoCategoryColumnList;
283 yoffy 1.62 /// ?鴻?????鴻??????????綺?span>
284 yoffy 1.63 FBoardColumnOrder : TGikoBoardColumnList;
285 yoffy 1.62
286 q9_ 1.46 //?純?若????
287     FBBSSortIndex: Integer;
288     FBBSSortOrder: Boolean;
289     FCategorySortIndex: Integer;
290     FCategorySortOrder: Boolean;
291     FBoardSortIndex: Integer;
292     FBoardSortOrder: Boolean;
293    
294 q9_ 1.53 //Dat?純?<?鴻???純?若????
295     FDatOchiSortIndex: Integer;
296     FDatOchiSortOrder: Boolean;
297    
298 hi_ 1.1 //腟?莨若?炊??絖???
299     FSelectTextList: TStringList;
300    
301     //?推?荀?RL
302 h677 1.11 //FBoardURL2ch: string;
303 yoffy 1.14 FBoardURLs: TStringList;
304     FBoardURLSelected: Integer;
305 hi_ 1.1
306     //???若??D?祉???鴻???若??
307     FUserID: string;
308     FPassword: string;
309     FAutoLogin: Boolean;
310 h677 1.21 FForcedLogin: Boolean;
311 h677 1.36 FDolibURL: string;
312 hi_ 1.1
313     //URL??????????莎桁???≪????/span>
314     FURLApp: Boolean;
315     FURLAppFile: string;
316    
317     //mailto????????????篏?
318     FOpenMailer: Boolean;
319    
320     //???ょ∈茯?
321     FDeleteMsg: Boolean;
322    
323     //CoolBar鐚??<?ゃ?潟?紙?帥?祉???????駈?
324     FMainCoolBar: array[0..MAIN_COOLBAND_COUNT - 1] of TCoolSet;
325 yoffy 1.2 FListCoolBar: array[0..LIST_COOLBAND_COUNT - 1] of TCoolSet;
326 hi_ 1.1 FBrowserCoolBar: array[0..BROWSER_COOLBAND_COUNT - 1] of TCoolSet;
327    
328     //ToolBar Wrapable
329     FListToolBarWrapable: Boolean;
330     FBrowserToolBarWrapable: Boolean;
331    
332     //???????≪????篏?臀?/span>
333     FPopupPosition: TGikoPopupPosition;
334    
335     //?≪?????鴻????/span>
336     FURLDisplay: Boolean;
337     FAddressBarTabStop: Boolean;
338     FLinkAddAddressBar: Boolean;
339     FAddressHistoryCount: Integer;
340    
341     //?糸????????ャ??/span>
342     FPreviewVisible: Boolean;
343     FPreviewSize: TGikoPreviewSize;
344     FPreviewWait: Integer;
345    
346 yoffy 1.39 // ????????/span>
347     FBrowserAutoMaximize: TGikoBrowserAutoMaximize;
348    
349 hi_ 1.1 //?鴻??????筝?荀ф?贋?違?≪?ゃ?潟?活;腓?/span>
350     FListIconVisible: Boolean;
351    
352 yoffy 1.51 //?鴻??????筝?荀с??og???????鴻?????????帥?鴻??????ャ??茵?ず??????
353     FCreationTimeLogs: Boolean;
354 h677 1.29 //?鴻??????筝?荀с???鴻???????ャ?ф???ャ???鴻?????????ャ??茵?ず??????
355 q9_ 1.44 FFutureThread: Boolean;
356 h677 1.29
357 hi_ 1.1 //?吾??莨若?炊?????激?恰????篏睡??┃絎?
358     FUseMachineTime: Boolean;
359     FTimeAdjustSec: Integer;
360     FTimeAdjust: Boolean;
361    
362 h677 1.11 //???若????
363     FAbonDeleterlo : Boolean; //&rlo;????????
364     FAbonReplaceul : Boolean; //<ul>?帥?違??<br>?帥?違??舟????????
365 yoffy 1.14 FPopUpAbon : Boolean; //???鴻???????≪???????????若????????/span>
366 h677 1.11 FShowNGLinesNum : Boolean; //荅峨?????鐚?磁???若?????<?ゃ??????違??茵?ず
367     FAddResAnchor : Boolean; //NG???鴻?吾?????鴻?≪?潟???若??菴遵??????
368 h677 1.32 FDeleteSyria : Boolean; //?激???∵??????????膈?
369 h677 1.3
370 h677 1.11 // ?鴻??????腟?莨若???c?若???????
371     FSelectComboBoxWidth : Integer;
372 yoffy 1.5
373 h677 1.11 // ??緇????御?????????????激?с?潟???ゃ?≪???違???帥??
374     FOptionDialogTabIndex: Integer;
375 yoffy 1.8
376 h677 1.11 // ??緇????御???????????c????????
377     FCabinetIndex: Integer;
378 yoffy 1.8
379 yoffy 1.14 //腟?篋?????∈茯????ゃ?≪???違??茵?ず??????
380     FShowDialogForEnd : Boolean;
381 h677 1.38 //???????帥????????????????∈茯????ゃ?≪???違??茵?ず????
382     FShowDialogForAllTabClose: Boolean;
383 h677 1.19 //??緇????号?違???鴻???????????号?違???違???c??????????絽梧?????蚊?????c???蚊???????蚊??篏睡????????
384     FUseOddColorOddResNum: Boolean;
385     FOddColor: TColor;
386 h677 1.13
387 h677 1.33 //Samba24絲丞?罘??純??篏帥????
388     FUseSamba: Boolean;
389 h677 1.36
390 h677 1.38 //???鴻?≪?潟???若???????????????吾?c?潟????????
391     FResAnchorJamp: Boolean;
392    
393 genyakun 1.47 //Tab????篆?絖?
394 genyakun 1.56 FTabAutoLoadSave : Boolean;
395 genyakun 1.71
396     //???<????茯?罅????泣???若??罘???/span>
397     F2chSupport : Boolean;
398    
399 yoffy 1.40 // ?????c??/span>
400 yoffy 1.41 FSpaceToNBSP : Boolean; ///< ??茹??鴻???若?鴻??Tab ?? &nbsp; ??舟??
401     FAmpToCharRef : Boolean; ///< '&' ?? &amp; ??舟??
402 h677 1.43
403     //???????吟?帥????茵?ず???????鴻???荀с?с?????若?純?????主Щ?????≦??????
404     FSelectInterval : Integer;
405 h677 1.67
406     //KuroutSettingTab 荅括完荐???帥????ctiveTab
407     FKuroutSettingTabIndex: Integer;
408 yoffy 1.74
409     //! ?????鴻?吾?с?鴻???c??/span>
410     FGestures : TGestureModel;
411 yoffy 1.75 //! ?????鴻?吾?с?鴻???c?若??篏睡??????????????
412     FGestureEnabled : Boolean;
413 genyakun 1.76
414 yoffy 1.79 //2ch荐?茯?荐??
415     F2chLanguage : TStringList;
416 genyakun 1.77
417     //???激?≪??????????荐??
418     FLocalTrapAtt : Boolean;
419     FRemoteTrapAtt : Boolean;
420 yoffy 1.40
421 hi_ 1.1 function GetMainCoolSet(Index: Integer): TCoolSet;
422     function GetBoardCoolSet(Index: Integer): TCoolSet;
423     function GetBrowserCoolSet(Index: Integer): TCoolSet;
424     procedure SetMainCoolSet(Index: Integer; CoolSet: TCoolSet);
425     procedure SetBoardCoolSet(Index: Integer; CoolSet: TCoolSet);
426     procedure SetBrowserCoolSet(Index: Integer; CoolSet: TCoolSet);
427    
428     function GetBBSColumnWidth(index: Integer): Integer;
429     function GetCategoryColumnWidth(index: Integer): Integer;
430     function GetBoardColumnWidth(index: Integer): Integer;
431     procedure SetBBSColumnWidth(index: Integer; value: Integer);
432     procedure SetCategoryColumnWidth(index: Integer; value: Integer);
433     procedure SetBoardColumnWidth(index: Integer; value: Integer);
434    
435     function GetSoundName(Index: Integer): string;
436     function GetSoundViewName(Index: Integer): string;
437     function GetSoundFileName(Index: Integer): string;
438     procedure SetSoundFileName(Index: Integer; value: string);
439     function Encrypt(s: string): string;
440     function Decrypt(s: string): string;
441 h677 1.11
442 yoffy 1.14 procedure MakeURLIniFile();
443    
444     procedure SetUseCSS( value: Boolean );
445     procedure SetCSSFileName( fileName: string );
446 hi_ 1.1 protected
447    
448     public
449     constructor Create;
450     destructor Destroy; override;
451     function GetFileName: string;
452 yoffy 1.14 function GetBoardURLFileName: string;
453 hi_ 1.1 procedure ReadSettingFile;
454 yoffy 1.14 procedure ReadBoardURLsFile;
455 hi_ 1.1 procedure WriteSystemSettingFile;
456     procedure WriteWindowSettingFile;
457     procedure WriteNameMailSettingFile;
458     procedure WriteFolderSettingFile();
459 yoffy 1.14 procedure WriteBoardURLSettingFile;
460 hi_ 1.1 function GetSoundCount: Integer;
461     function FindSoundFileName(Name: string): string;
462    
463 yoffy 1.14 function GetBoardFileName: string;
464     function GetCustomBoardFileName: string;
465 yoffy 1.18 function GetBoardDir: string;
466 yoffy 1.14 function GetHtmlTempFileName: string;
467     function GetAppDir: string;
468     function GetTempFolder: string;
469     function GetSentFileName: string;
470     function GetConfigDir: string;
471     function GetSkinDir: string;
472     function GetSkinHeaderFileName: string;
473     function GetSkinFooterFileName: string;
474     function GetSkinResFileName: string;
475     function GetSkinNewResFileName: string;
476     function GetSkinBookmarkFileName: string;
477     function GetSkinNewmarkFileName: string;
478     function GetStyleSheetDir: string;
479     function GetOutBoxFileName: string;
480 yoffy 1.15 function GetNGWordsDir: string;
481 yoffy 1.16 function GetBoardPlugInDir: string;
482 h677 1.35 function GetSambaFileName: string;
483     function GetIgnoreFileName: string;
484 yoffy 1.74 function GetGestureFileName : string;
485 yoffy 1.79 function GetSpamFilterFileName : string;
486 yoffy 1.14
487 hi_ 1.1 //??篆<???????<?泣?ゃ??/span>
488     property RecvBufferSize: Integer read FRecvBufferSize write FRecvBufferSize;
489     //HTTP1.1篏睡??/span>
490     property Protocol: Boolean read FProtocol write FProtocol;
491     //???????傑・膓?HTTP1.1篏睡??/span>
492     property ProxyProtocol: Boolean read FProxyProtocol write FProxyProtocol;
493    
494     property ReadProxy: Boolean read FReadProxy write FReadProxy;
495     property ReadProxyAddress: string read FReadProxyAddress write FReadProxyAddress;
496     property ReadProxyPort: Integer read FReadProxyPort write FReadProxyPort;
497     property ReadProxyUserID: string read FReadProxyUserID write FReadProxyUserID;
498     property ReadProxyPassword: string read FReadProxyPassword write FReadProxyPassword;
499    
500     property WriteProxy: Boolean read FWriteProxy write FWriteProxy;
501     property WriteProxyAddress: string read FWriteProxyAddress write FWriteProxyAddress;
502     property WriteProxyPort: Integer read FWriteProxyPort write FWriteProxyPort;
503     property WriteProxyUserID: string read FWriteProxyUserID write FWriteProxyUserID;
504     property WriteProxyPassword: string read FWriteProxyPassword write FWriteProxyPassword;
505    
506     property CabinetFontName: string read FCabinetFontName write FCabinetFontName;
507     property CabinetFontSize: Integer read FCabinetFontSize write FCabinetFontSize;
508     property CabinetFontBold: Boolean read FCabinetFontBold write FCabinetFontBold;
509     property CabinetFontItalic: Boolean read FCabinetFontItalic write FCabinetFontItalic;
510     property CabinetFontColor: TColor read FCabinetFontColor write FCabinetFontColor;
511     property CabinetBackColor: TColor read FCabinetBackColor write FCabinetBackColor;
512    
513     property ListFontName: string read FListFontName write FListFontName;
514     property ListFontSize: Integer read FListFontSize write FListFontSize;
515     property ListFontBold: Boolean read FListFontBold write FListFontBold;
516     property ListFontItalic: Boolean read FListFontItalic write FListFontItalic;
517     property ListFontColor: TColor read FListFontColor write FListFontColor;
518     property ListBackColor: TColor read FListBackColor write FListBackColor;
519    
520 yoffy 1.6 property BrowserFontName: string read FBrowserFontName write FBrowserFontName;
521     property BrowserFontSize: Integer read FBrowserFontSize write FBrowserFontSize;
522     property BrowserFontBold: Integer read FBrowserFontBold write FBrowserFontBold;
523     property BrowserFontItalic: Integer read FBrowserFontItalic write FBrowserFontItalic;
524     property BrowserFontColor: Integer read FBrowserFontColor write FBrowserFontColor;
525     property BrowserBackColor: Integer read FBrowserBackColor write FBrowserBackColor;
526 hi_ 1.1
527     property EditorFontName: string read FEditorFontName write FEditorFontName;
528     property EditorFontSize: Integer read FEditorFontSize write FEditorFontSize;
529     property EditorFontBold: Boolean read FEditorFontBold write FEditorFontBold;
530     property EditorFontItalic: Boolean read FEditorFontItalic write FEditorFontItalic;
531     property EditorFontColor: TColor read FEditorFontColor write FEditorFontColor;
532     property EditorBackColor: TColor read FEditorBackColor write FEditorBackColor;
533    
534     property BrowserTabFontName: string read FBrowserTabFontName write FBrowserTabFontName;
535     property BrowserTabFontSize: Integer read FBrowserTabFontSize write FBrowserTabFontSize;
536     property BrowserTabFontBold: Boolean read FBrowserTabFontBold write FBrowserTabFontBold;
537     property BrowserTabFontItalic: Boolean read FBrowserTabFontItalic write FBrowserTabFontItalic;
538    
539     property HintFontName: string read FHintFontName write FHintFontName;
540     property HintFontSize: Integer read FHintFontSize write FHintFontSize;
541     //property HintFontBold: Boolean read FHintFontBold write FHintFontBold;
542     //property HintFontItalic: Boolean read FHintFontItalic write FHintFontItalic;
543     property HintFontColor: TColor read FHintFontColor write FHintFontColor;
544     property HintBackColor: TColor read FHintBackColor write FHintBackColor;
545    
546     property WindowTop: Integer read FWindowTop write FWindowTop;
547     property WindowLeft: Integer read FWindowLeft write FWindowLeft;
548     property WindowHeight: Integer read FWindowHeight write FWindowHeight;
549     property WindowWidth: Integer read FWindowWidth write FWindowWidth;
550     property WindowMax: Boolean read FWindowMax write FWindowMax;
551     property ListStyle: TViewStyle read FListStyle write FListStyle;
552    
553     property StdToolBarVisible: Boolean read FStdToolBarVisible write FStdToolBarVisible;
554     property AddressBarVisible: Boolean read FAddressBarVisible write FAddressBarVisible;
555     property LinkBarVisible: Boolean read FLinkBarVisible write FLinkBarVisible;
556     property ListToolBarVisible: Boolean read FListToolBarVisible write FListToolBarVisible;
557     property ListNameBarVisible: Boolean read FListNameBarVisible write FListNameBarVisible;
558     property BrowserToolBarVisible: Boolean read FBrowserToolBarVisible write FBrowserToolBarVisible;
559     property BrowserNameBarVisible: Boolean read FBrowserNameBarVisible write FBrowserNameBarVisible;
560    
561     property BrowserTabVisible: Boolean read FBrowserTabVisible write FBrowserTabVisible;
562     property BrowserTabPosition: TGikoTabPosition read FBrowserTabPosition write FBrowserTabPosition;
563     property BrowserTabAppend: TGikoTabAppend read FBrowserTabAppend write FBrowserTabAppend;
564     property BrowserTabStyle: TGikoTabStyle read FBrowserTabStyle write FBrowserTabStyle;
565    
566     property MessageBarVisible: Boolean read FMessageBarVisible write FMessageBarVisible;
567     property MessegeBarHeight: Integer read FMessegeBarHeight write FMessegeBarHeight;
568    
569     property StatusBarVisible: Boolean read FStatusBarVisible write FStatusBarVisible;
570    
571     property CabinetVisible: Boolean read FCabinetVisible write FCabinetVisible;
572     property CabinetWidth: Integer read FCabinetWidth write FCabinetWidth;
573    
574     property ListOrientation: TGikoListOrientation read FListOrientation write FListOrientation;
575     property ListHeight: Integer read FListHeight write FListHeight;
576     property ListHeightState: TGikoListState read FListHeightState write FListHeightState;
577     property ListWidth: Integer read FListWidth write FListWidth;
578     property ListWidthState: TGikoListState read FListWidthState write FListWidthState;
579     // property ListHeightMax: Boolean read FListHeightMax write FListHeightMax;
580     // property ListWidthMax: Boolean read FListWidthMax write FListWidthMax;
581    
582     property NameList: TStringList read FNameList write FNameList;
583     property MailList: TStringList read FMailList write FMailList;
584     property SelectTextList: TStringList read FSelectTextList write FSelectTextList;
585    
586     property EditWindowTop: Integer read FEditWindowTop write FEditWindowTop;
587     property EditWindowLeft: Integer read FEditWindowLeft write FEditWindowLeft;
588     property EditWindowHeight: Integer read FEditWindowHeight write FEditWindowHeight;
589     property EditWindowWidth: Integer read FEditWindowWidth write FEditWindowWidth;
590     property EditWindowMax: Boolean read FEditWindowMax write FEditWindowMax;
591 deux 1.20 property EditWindowStay: Boolean read FEditWindowStay write FEditWindowStay;
592 h677 1.38 property EditWindowTranslucent: Boolean read FEditWindowTranslucent write FEditWindowTranslucent;
593 hi_ 1.1
594     property ListViewNo: Boolean read FListViewNo write FListViewNo;
595 yoffy 1.14 property UseCSS: Boolean read FUseCSS write SetUseCSS;
596     property CSSFileName: string read FCSSFileName write SetCSSFileName;
597     property UseSkin: Boolean read FUseSkin;
598 hi_ 1.1
599     property ShowMail: Boolean read FShowMail write FShowMail;
600 yoffy 1.49 property ResRange : Longint read FResRange write FResRange;
601 yoffy 1.51 property ResRangeHold : Boolean read FResRangeHold write FResRangeHold;
602 yoffy 1.55 property ThreadRange : TGikoThreadRange read FThreadRange write FThreadRange;
603 hi_ 1.1 property UnActivePopup: Boolean read FUnActivePopup write FUnActivePopup;
604 yoffy 1.2 property ResPopupHeaderBold: Boolean read FResPopupHeaderBold write FResPopupHeaderBold;
605 hi_ 1.1
606     property LogFolder: string read FLogFolder write FLogFolder;
607     property NewLogFolder: string read FNewLogFolder write FNewLogFolder;
608    
609     property BBSColumnWidth[index: Integer]: Integer read GetBBSColumnWidth write SetBBSColumnWidth;
610     property CategoryColumnWidth[index: Integer]: Integer read GetCategoryColumnWidth write SetCategoryColumnWidth;
611     property BoardColumnWidth[index: Integer]: Integer read GetBoardColumnWidth write SetBoardColumnWidth;
612    
613 yoffy 1.63 property BBSColumnOrder : TGikoBBSColumnList read FBBSColumnOrder write FBBSColumnOrder;
614     property CategoryColumnOrder : TGikoCategoryColumnList read FCategoryColumnOrder write FCategoryColumnOrder;
615     property BoardColumnOrder : TGikoBoardColumnList read FBoardColumnOrder write FBoardColumnOrder;
616 yoffy 1.62
617 hi_ 1.1 property SoundName[index: Integer]: string read GetSoundName;
618     property SoundViewName[index: Integer]: string read GetSoundViewName;
619     property SoundFileName[index: Integer]: string read GetSoundFileName write SetSoundFileName;
620    
621 q9_ 1.46 property BBSSortIndex: Integer read FBBSSortIndex write FBBSSortIndex;
622     property BBSSortOrder: Boolean read FBBSSortOrder write FBBSSortOrder;
623     property CategorySortIndex: Integer read FCategorySortIndex write FCategorySortIndex;
624     property CategorySortOrder: Boolean read FCategorySortOrder write FCategorySortOrder;
625     property BoardSortIndex: Integer read FBoardSortIndex write FBoardSortIndex;
626     property BoardSortOrder: Boolean read FBoardSortOrder write FBoardSortOrder;
627    
628 q9_ 1.53 property DatOchiSortIndex: Integer read FDatOchiSortIndex write FDatOchiSortIndex;
629     property DatOchiSortOrder: Boolean read FDatOchiSortOrder write FDatOchiSortOrder;
630    
631 h677 1.11 //property BoardURL2ch: string read FBoardURL2ch write FBoardURL2ch;
632     property BoardURLs: TStringList read FBoardURLs write FBoardURLs;
633 yoffy 1.14 property BoardURLSelected: Integer read FBoardURLSelected write FBoardURLSelected;
634 hi_ 1.1 property UserID: string read FUserID write FUserID;
635     property Password: string read FPassword write FPassword;
636     property AutoLogin: Boolean read FAutoLogin write FAutoLogin;
637 h677 1.38 property ForcedLogin: Boolean read FForcedLogin write FForcedLogin;
638 h677 1.36 property DolibURL: string read FDolibURL write FDolibURL;
639 hi_ 1.1
640     property URLApp: Boolean read FURLApp write FURLApp;
641     property URLAppFile: string read FURLAppFile write FURLAppFile;
642    
643     property OpenMailer: Boolean read FOpenMailer write FOpenMailer;
644    
645     property DeleteMsg: Boolean read FDeleteMsg write FDeleteMsg;
646    
647     property MainCoolSet[Index: Integer]: TCoolSet read GetMainCoolSet write SetMainCoolSet;
648     property ListCoolSet[Index: Integer]: TCoolSet read GetBoardCoolSet write SetBoardCoolSet;
649     property BrowserCoolSet[Index: Integer]: TCoolSet read GetBrowserCoolSet write SetBrowserCoolSet;
650    
651     property ListToolBarWrapable: Boolean read FListToolBarWrapable write FListToolBarWrapable;
652     property BrowserToolBarWrapable: Boolean read FBrowserToolBarWrapable write FBrowserToolBarWrapable;
653    
654     property PopupPosition: TGikoPopupPosition read FPopupPosition write FPopupPosition;
655    
656     property URLDisplay: Boolean read FURLDisplay write FURLDisplay;
657     property AddressBarTabStop: Boolean read FAddressBarTabStop write FAddressBarTabStop;
658     property LinkAddAddressBar: Boolean read FLinkAddAddressBar write FLinkAddAddressBar;
659     property AddressHistoryCount: Integer read FAddressHistoryCount write FAddressHistoryCount;
660    
661     property PreviewVisible: Boolean read FPreviewVisible write FPreviewVisible;
662     property PreviewSize: TGikoPreviewSize read FPreviewSize write FPreviewSize;
663     property PreviewWait: Integer read FPreviewWait write FPreviewWait;
664 yoffy 1.39 property BrowserAutoMaximize: TGikoBrowserAutoMaximize read FBrowserAutoMaximize write FBrowserAutoMaximize;
665 hi_ 1.1
666     property ListIconVisible: Boolean read FListIconVisible write FListIconVisible;
667 h677 1.38 property CreationTimeLogs: Boolean read FCreationTimeLogs write FCreationTimeLogs;
668     property FutureThread: Boolean read FFutureThread write FFutureThread;
669 hi_ 1.1
670     property UseMachineTime: Boolean read FUseMachineTime write FUseMachineTime;
671     property TimeAdjustSec: Integer read FTimeAdjustSec write FTimeAdjustSec;
672     property TimeAdjust: Boolean read FTimeAdjust write FTimeAdjust;
673 h677 1.3
674 yoffy 1.14 //???若????
675     property AbonDeleterlo : Boolean read FAbonDeleterlo write FAbonDeleterlo;
676     property AbonReplaceul : Boolean read FAbonReplaceul write FAbonReplaceul;
677     property PopUpAbon : Boolean read FPopUpAbon write FPopUpAbon;
678     property ShowNGLinesNum : Boolean read FShowNGLinesNum write FShowNGLinesNum;
679     property AddResAnchor : Boolean read FAddResAnchor write FAddResAnchor;
680 h677 1.38 property DeleteSyria : Boolean read FDeleteSyria write FDeleteSyria;
681 yoffy 1.14 // ?鴻??????腟?莨若???c?若???????
682     property SelectComboBoxWidth : Integer read FSelectComboBoxWidth write FSelectComboBoxWidth;
683 yoffy 1.8
684 yoffy 1.14 // ??緇????御?????????????激?с?潟???ゃ?≪???違???帥??
685     property OptionDialogTabIndex : Integer read FOptionDialogTabIndex write FOptionDialogTabIndex;
686 yoffy 1.8
687 yoffy 1.14 // ??緇????御???????????c????????
688     property CabinetIndex : Integer read FCabinetIndex write FCabinetIndex;
689 h677 1.13
690 yoffy 1.14 //腟?篋?????∈茯????ゃ?≪???違??茵?ず??????
691     property ShowDialogForEnd : Boolean read FShowDialogForEnd write FShowDialogForEnd;
692 h677 1.38 property ShowDialogForAllTabClose: Boolean read FShowDialogForAllTabClose write FShowDialogForAllTabClose;
693     //??緇????号?違???鴻???????????号?違???違???c??????????絽梧?????蚊?????c???蚊???????蚊??篏睡????????
694     property UseOddColorOddResNum: Boolean read FUseOddColorOddResNum write FUseOddColorOddResNum;
695     property OddColor: TColor read FOddColor write FOddColor;
696 h677 1.36 property UseSamba: Boolean read FUseSamba write FUseSamba;
697 genyakun 1.47 property ResAnchorJamp: Boolean read FResAnchorJamp write FResAnchorJamp;
698 yoffy 1.40
699     // ?????c??/span>
700 yoffy 1.41 property SpaceToNBSP : Boolean read FSpaceToNBSP write FSpaceToNBSP;
701     property AmpToCharRef : Boolean read FAmpToCharRef write FAmpToCharRef;
702 h677 1.43
703     property SelectInterval : Integer read FSelectInterval write FSelectInterval;
704 h677 1.67 //Tab篆?絖?
705     property TabAutoLoadSave: Boolean read FTabAutoLoadSave write FTabAutoLoadSave;
706 genyakun 1.76 property Gengo: TStringList read F2chLanguage write F2chLanguage;
707     property GengoSupport : Boolean read F2chSupport write F2chSupport;
708 h677 1.67 property KuroutSettingTabIndex: Integer read FKuroutSettingTabIndex write FKuroutSettingTabIndex;
709 yoffy 1.74 //! ?????鴻?吾?с?鴻???c??/span>
710     property Gestures : TGestureModel read FGestures write FGestures;
711 yoffy 1.75 //! ?????鴻?吾?с?鴻???c?若??篏睡??????????????
712     property GestureEnabled : Boolean read FGestureEnabled write FGestureEnabled;
713 genyakun 1.77 //???激?≪??????????荐??
714     property LocalTrapAtt : Boolean read FLocalTrapAtt write FLocalTrapAtt;
715     property RemoteTrapAtt : Boolean read FRemoteTrapAtt write FRemoteTrapAtt;
716    
717 yoffy 1.40 end;
718 hi_ 1.1
719    
720 h677 1.3
721 hi_ 1.1 implementation
722    
723     type
724     TSoundName = record
725     Name: string;
726     ViewName: string;
727     FileName: string;
728     end;
729    
730     const
731 yoffy 1.14 INI_FILE_NAME: string = 'gikoNavi.ini';
732     BOARD_URL_INI_FILE_NAME: string = 'url.ini';
733     DEFAULT_FONT_NAME: string = '鐚?竺 鐚違?眼?激????#39;;
734     DEFAULT_FONT_SIZE: Integer = 9;
735     DEFAULT_FONT_COLOR: string = 'clWindowText';
736     DEFAULT_WINDOW_COLOR: string = 'clWindow';
737     DEFAULT_TAB_FONT_NAME: string = '鐚?竺 鐚違?眼?激????#39;;
738     DEFAULT_TAB_FONT_SIZE: Integer = 9;
739 h677 1.11 DEFAULT_2CH_BOARD_URL1: string = 'http://www6.ocn.ne.jp/~mirv/2chmenu.html';
740 h677 1.23 DEFAULT_2CH_BOARD_URL2: string = 'http://www.ff.iij4u.or.jp/~ch2/bbsmenu.html';
741 h677 1.22 //http://menu.2ch.net/bbsmenu.html //??????????????罩e????推?荀с??????????
742 hi_ 1.1 //'http://www.2ch.net/newbbsmenu.html';
743 yoffy 1.14 GIKO_ENCRYPT_TEXT: string = 'gikoNaviEncryptText';
744 hi_ 1.1
745     var
746     SOUND_NAME: array[0..4] of TSoundName = (
747 yoffy 1.14 (Name: 'New'; ViewName: '??緇?????'; FileName: ''),
748     (Name: 'NewDiff'; ViewName: '??緇?????(綏???)'; FileName: ''),
749     (Name: 'NoChange'; ViewName: '???贋??#39;; FileName: ''),
750     // (Name: 'RoundEnd'; ViewName: '綏≦??腟?篋?(??緇?????)'; FileName: ''),
751     // (Name: 'RoundNone'; ViewName: '綏≦??腟?篋?(??緇?????)'; FileName: ''),
752     (Name: 'ResEnd'; ViewName: '???拷??篆≦?篋?'; FileName: ''),
753     (Name: 'Error'; ViewName: '??????#39;; FileName: ''));
754 hi_ 1.1
755 yoffy 1.63 constructor TGikoBBSColumnList.Create;
756     begin
757     inherited;
758     end;
759    
760     destructor TGikoBBSColumnList.Destroy;
761     begin
762     inherited;
763     end;
764    
765     function TGikoBBSColumnList.GetItem( index : integer ) : TGikoBBSColumnID;
766     begin
767     Result := TGikoBBSColumnID( inherited Items[ index ] );
768     end;
769    
770     procedure TGikoBBSColumnList.SetItem( index : integer; value : TGikoBBSColumnID);
771     begin
772     inherited Items[ index ] := Pointer( value );
773     end;
774    
775     function TGikoBBSColumnList.Add( value : TGikoBBSColumnID ) : Integer;
776     begin
777     Result := inherited Add( Pointer( value ) );
778     end;
779    
780     constructor TGikoCategoryColumnList.Create;
781     begin
782     inherited;
783     end;
784    
785     destructor TGikoCategoryColumnList.Destroy;
786     begin
787     inherited;
788     end;
789    
790     function TGikoCategoryColumnList.GetItem( index : integer ) : TGikoCategoryColumnID;
791     begin
792     Result := TGikoCategoryColumnID( inherited Items[ index ] );
793     end;
794    
795     procedure TGikoCategoryColumnList.SetItem( index : integer; value : TGikoCategoryColumnID);
796     begin
797     inherited Items[ index ] := Pointer( value );
798     end;
799    
800     function TGikoCategoryColumnList.Add( value : TGikoCategoryColumnID ) : Integer;
801     begin
802     Result := inherited Add( Pointer( value ) );
803     end;
804    
805     constructor TGikoBoardColumnList.Create;
806     begin
807     inherited;
808     end;
809    
810     destructor TGikoBoardColumnList.Destroy;
811     begin
812     inherited;
813     end;
814    
815     function TGikoBoardColumnList.GetItem( index : integer ) : TGikoBoardColumnID;
816     begin
817     Result := TGikoBoardColumnID( inherited Items[ index ] );
818     end;
819    
820     procedure TGikoBoardColumnList.SetItem( index : integer; value : TGikoBoardColumnID);
821     begin
822     inherited Items[ index ] := Pointer( value );
823     end;
824    
825     function TGikoBoardColumnList.Add( value : TGikoBoardColumnID ) : Integer;
826     begin
827     Result := inherited Add( Pointer( value ) );
828     end;
829    
830 hi_ 1.1 //?潟?潟?鴻????????/span>
831     constructor TSetting.Create();
832     begin
833     FNameList := TStringList.Create;
834     FMailList := TStringList.Create;
835     FSelectTextList := TStringList.Create;
836 yoffy 1.14 FBoardURLs := TStringList.Create;
837 yoffy 1.64 FBBSColumnOrder := TGikoBBSColumnList.Create;
838     FCategoryColumnOrder := TGikoCategoryColumnList.Create;
839     FBoardColumnOrder := TGikoBoardColumnList.Create;
840 yoffy 1.74 FGestures := TGestureModel.Create;
841 hi_ 1.1 FNameList.Duplicates := dupIgnore;
842     FMailList.Duplicates := dupIgnore;
843 yoffy 1.14 FBoardURLs.Duplicates := dupIgnore;
844 hi_ 1.1 FSelectTextList.Duplicates := dupIgnore;
845     ReadSettingFile();
846 yoffy 1.14 ReadBoardURLsFile();
847 hi_ 1.1 end;
848    
849     //???鴻????????/span>
850     destructor TSetting.Destroy();
851     begin
852     inherited;
853 yoffy 1.64 FBoardColumnOrder.Free;
854     FCategoryColumnOrder.Free;
855     FBBSColumnOrder.Free;
856 hi_ 1.1 FSelectTextList.Free;
857 yoffy 1.14 FBoardURLs.Free;
858 hi_ 1.1 FMailList.Free;
859     FNameList.Free;
860 yoffy 1.74 FGestures.Free;
861 hi_ 1.1 end;
862    
863     //?????????<?ゃ??????緇?鐚????刻????<?ゃ????鐚?
864     function TSetting.GetFileName(): string;
865     begin
866     Result := ExtractFilePath(Application.ExeName) + INI_FILE_NAME;
867     end;
868    
869 h677 1.11 //?炊?贋?亥??RL荐?????<?ゃ????鐚????刻????<?ゃ????鐚?
870     function TSetting.GetBoardURLFileName(): string;
871     begin
872     Result := ExtractFilePath(Application.ExeName) + BOARD_URL_INI_FILE_NAME;
873     end;
874    
875 hi_ 1.1 //荐?????<?ゃ???莨?/span>
876     procedure TSetting.ReadSettingFile();
877     const
878     DEFAULT_BBS_WIDTH: array[0..0] of Integer = (140);
879 yoffy 1.65 DEFAULT_CATEGORY_WIDTH: array[0..2] of Integer = (150, 80, 130);
880 h677 1.70 DEFAULT_BOARD_WIDTH: array[0..9] of Integer = (350, 60, 60, 60, 60, 60, 80, 130, 130, 130);
881 q9_ 1.30 MAX_WIDTH: Integer = 2000;
882 hi_ 1.1 var
883     ini: TMemIniFile;
884     i: Integer;
885 yoffy 1.64 id, code : Integer;
886 hi_ 1.1 wkList: TStringList;
887     wkStr: string;
888     Exists: Boolean;
889 yoffy 1.63 s: string;
890 hi_ 1.1 // id: Integer;
891     CoolSet: TCoolSet;
892     begin
893     Exists := FileExists(GetFileName);
894     ini := TMemIniFile.Create(GetFileName);
895     try
896     //??篆<???????<?泣?ゃ??/span>
897     FRecvBufferSize := ini.ReadInteger('HTTP', 'RecvBufferSize', 4096);
898     //HTTP1.1篏睡??/span>
899     FProtocol := ini.ReadBool('HTTP', 'Protocol', True);
900     //???????傑・膓?HTTP1.1篏睡??/span>
901     FProxyProtocol := ini.ReadBool('HTTP', 'ProxyProtocol', False);
902    
903     FReadProxy := ini.ReadBool('ReadProxy', 'Proxy', false);
904     FReadProxyAddress := ini.ReadString('ReadProxy', 'Address', '');
905     FReadProxyPort := ini.ReadInteger('ReadProxy', 'Port', 0);
906     FReadProxyUserID := ini.ReadString('ReadProxy', 'UserID', '');
907     FReadProxyPassword := ini.ReadString('ReadProxy', 'Password', '');
908    
909     FWriteProxy := ini.ReadBool('WriteProxy', 'Proxy', false);
910     FWriteProxyAddress := ini.ReadString('WriteProxy', 'Address', '');
911     FWriteProxyPort := ini.ReadInteger('WriteProxy', 'Port', 0);
912     FWriteProxyUserID := ini.ReadString('WriteProxy', 'UserID', '');
913     FWriteProxyPassword := ini.ReadString('WriteProxy', 'Password', '');
914    
915 yoffy 1.6 FBrowserFontName := ini.ReadString('Window', 'BrowserFontName', '');
916     FBrowserFontSize := ini.ReadInteger('Window', 'BrowserFontSize', 0);
917     FBrowserFontBold := ini.ReadInteger('Window', 'BrowserFontBold', 0);
918     FBrowserFontItalic := ini.ReadInteger('Window', 'BrowserFontItalic', 0);
919     FBrowserFontColor := ini.ReadInteger('Window', 'BrowserFontColor', -1);
920     FBrowserBackColor := ini.ReadInteger('Window', 'BrowserBackColor', -1);
921    
922 hi_ 1.1 FCabinetFontName := ini.ReadString('Window', 'CabinetFontName', DEFAULT_FONT_NAME);
923     FCabinetFontSize := ini.ReadInteger('Window', 'CabinetFontSize', DEFAULT_FONT_SIZE);
924     FCabinetFontBold := ini.ReadBool('Window', 'CabinetFontBold', False);
925     FCabinetFontItalic := ini.ReadBool('Window', 'CabinetFontItalic', False);
926     FCabinetFontColor := StringToColor(ini.ReadString('Window', 'CabinetFontColor', DEFAULT_FONT_COLOR));
927     FCabinetBackColor := StringToColor(ini.ReadString('Window', 'CabinetBackColor', DEFAULT_WINDOW_COLOR));
928    
929     FListFontName := ini.ReadString('Window', 'ListFontName', DEFAULT_FONT_NAME);
930     FListFontSize := ini.ReadInteger('Window', 'ListFontSize', DEFAULT_FONT_SIZE);
931     FListFontBold := ini.ReadBool('Window', 'ListFontBold', False);
932     FListFontItalic := ini.ReadBool('Window', 'ListFontItalic', False);
933     FListFontColor := StringToColor(ini.ReadString('Window', 'ListFontColor', DEFAULT_FONT_COLOR));
934     FListBackColor := StringToColor(ini.ReadString('Window', 'ListBackColor', DEFAULT_WINDOW_COLOR));
935 genyakun 1.48 FUseOddColorOddResNum := ini.ReadBool('Window','UseOddColor', False);
936     FOddColor := StringToColor(ini.ReadString('Window', 'OddColor', DEFAULT_WINDOW_COLOR));
937 hi_ 1.1
938     FEditorFontName := ini.ReadString('Window', 'EditorFontName', DEFAULT_FONT_NAME);
939     FEditorFontSize := ini.ReadInteger('Window', 'EditorFontSize', DEFAULT_FONT_SIZE);
940     FEditorFontBold := ini.ReadBool('Window', 'EditorFontBold', False);
941     FEditorFontItalic := ini.ReadBool('Window', 'EditorFontItalic', False);
942     FEditorFontColor := StringToColor(ini.ReadString('Window', 'EditorFontColor', DEFAULT_FONT_COLOR));
943     FEditorBackColor := StringToColor(ini.ReadString('Window', 'EditorBackColor', DEFAULT_WINDOW_COLOR));
944    
945     FBrowserTabFontName := ini.ReadString('Window', 'BrowserTabFontName', DEFAULT_TAB_FONT_NAME);
946     FBrowserTabFontSize := ini.ReadInteger('Window', 'BrowserTabFontSize', DEFAULT_TAB_FONT_SIZE);
947     FBrowserTabFontBold := ini.ReadBool('Window', 'BrowserTabFontBold', False);
948     FBrowserTabFontItalic := ini.ReadBool('Window', 'BrowserTabFontItalic', False);
949    
950     FHintFontName := ini.ReadString('Window', 'HintFontName', Screen.HintFont.Name);
951     FHintFontSize := ini.ReadInteger('Window', 'HintFontSize', Screen.HintFont.Size);
952     //FHintFontBold := ini.ReadBool('Window', 'HintFontBold', False);
953     //FHintFontItalic := ini.ReadBool('Window', 'HintFontItalic', False);
954     FHintFontColor := StringToColor(ini.ReadString('Window', 'HintFontColor', DEFAULT_FONT_COLOR));
955     FHintBackColor := StringToColor(ini.ReadString('Window', 'HintBackColor', 'clInfoBk'));
956    
957     FWindowTop := ini.ReadInteger('WindowSize', 'Top', -1);
958     FWindowLeft := ini.ReadInteger('WindowSize', 'Left', -1);
959     FWindowHeight := ini.ReadInteger('WindowSize', 'Height', -1);
960     FWindowWidth := ini.ReadInteger('WindowSize', 'Width', -1);
961     FWindowMax := ini.ReadBool('WindowSize', 'Max', false);
962    
963     if FWindowHeight <= 0 then FWindowHeight := 400;
964     if FWindowWidth <= 0 then FWindowWidth := 600;
965    
966     FListStyle := TViewStyle(ini.ReadInteger('ViewStyle', 'ListView', Ord(vsReport)));
967    
968     FEditWindowTop := ini.ReadInteger('EditorWindowSize', 'Top', -1);
969     FEditWindowLeft := ini.ReadInteger('EditorWindowSize', 'Left', -1);
970     FEditWindowHeight := ini.ReadInteger('EditorWindowSize', 'Height', -1);
971     FEditWindowWidth := ini.ReadInteger('EditorWindowSize', 'Width', -1);
972     FEditWindowMax := ini.ReadBool('EditorWindowSize', 'Max', False);
973 deux 1.20 FEditWindowStay := ini.ReadBool('EditorWindowSize', 'Stay', False);
974 genyakun 1.48 FEditWindowTranslucent := ini.ReadBool('EditorWindowSize', 'Translucent', False);
975 hi_ 1.1
976 yoffy 1.14 FOptionDialogTabIndex := ini.ReadInteger('OptionDialog', 'TabIndex', 0);
977 yoffy 1.8
978 hi_ 1.1 //???若??????/span>
979     FStdToolBarVisible := ini.ReadBool('ToolBar', 'StdVisible', True);
980     FAddressBarVisible := ini.ReadBool('ToolBar', 'AddressVisible', True);
981     FLinkBarVisible := ini.ReadBool('ToolBar', 'LinkVisible', True);
982     FListToolBarVisible := ini.ReadBool('ToolBar', 'ListVisible', True);
983     FListNameBarVisible := ini.ReadBool('ToolBar', 'ListNameVisible', True);
984     FBrowserToolBarVisible := ini.ReadBool('ToolBar', 'BrowserVisible', True);
985     FBrowserNameBarVisible := ini.ReadBool('ToolBar', 'BrowserNameVisible', True);
986     //???若??????rapable
987     FListToolBarWrapable := ini.ReadBool('ToolBar', 'ListWrapable', False);
988     FBrowserToolBarWrapable := ini.ReadBool('ToolBar', 'BrowserWrapable', False);
989    
990     FBrowserTabVisible := ini.ReadBool('Tab', 'BrowserTabVisible', True);
991     FBrowserTabPosition := TGikoTabPosition(ini.ReadInteger('Tab', 'BrowserTabPosition', Ord(gtpTop)));
992     FBrowserTabAppend := TGikoTabAppend(ini.ReadInteger('Tab', 'BrowserTabAppend', Ord(gtaFirst)));
993     FBrowserTabStyle := TGikoTabStyle(ini.ReadInteger('Tab', 'BrowserTabStyle', Ord(gtsFlat)));
994    
995     FMessageBarVisible := ini.ReadBool('MessageBar', 'Visible', True);
996     FMessegeBarHeight := ini.ReadInteger('MessageBar', 'Height', 30);
997    
998     FStatusBarVisible := ini.ReadBool('StatusBar', 'Visible', True);
999    
1000     FCabinetVisible := ini.ReadBool('Cabinet', 'Visible', True);
1001     FCabinetWidth := ini.ReadInteger('Cabinet', 'Width', 200);
1002 yoffy 1.14 FCabinetIndex := ini.ReadInteger('Cabinet', 'Index', 0);
1003 hi_ 1.1
1004     FListOrientation := TGikoListOrientation(ini.ReadInteger('List', 'Orientation', Ord(gloHorizontal)));
1005     FListHeight := ini.ReadInteger('List', 'Height', 180);
1006     FListHeightState := TGikoListState(ini.ReadInteger('List', 'HeightState', Ord(glsNormal)));
1007     FListWidth := ini.ReadInteger('List', 'Width', 180);
1008     FListWidthState := TGikoListState(ini.ReadInteger('List', 'WidthState', Ord(glsNormal)));
1009     // FListHeightMax := ini.ReadBool('List', 'HeightMax', False);
1010     // FListWidthMax := ini.ReadBool('List', 'WidthMax', False);
1011    
1012     wkList := TStringList.Create;
1013     try
1014     ini.ReadSection('Name', wkList);
1015     for i := 0 to wkList.Count - 1 do begin
1016     wkStr := ini.ReadString('Name', wkList[i], '');
1017     if (wkStr <> '') and (FNameList.IndexOf(wkStr) = -1) then
1018     FNameList.Add(wkStr);
1019     end;
1020     ini.ReadSection('Mail', wkList);
1021     for i := 0 to wkList.Count - 1 do begin
1022     wkStr := ini.ReadString('Mail', wkList[i], '');
1023     if (wkStr <> '') and (FMailList.IndexOf(wkStr) = -1) then
1024     FMailList.Add(wkStr);
1025     end;
1026     ini.ReadSection('SelectText', wkList);
1027     for i := 0 to wkList.Count - 1 do begin
1028     wkStr := ini.ReadString('SelectText', wkList[i], '');
1029     if (wkStr <> '') and (FSelectTextList.IndexOf(wkStr) = -1) then
1030     FSelectTextList.Add(wkStr);
1031     end;
1032     finally
1033     wkList.Free;
1034     end;
1035    
1036 yoffy 1.64 // ???鴻????????綛?
1037 hi_ 1.1 wkList := TStringList.Create;
1038     try
1039     ini.ReadSection('BBSColumnWidth', wkList);
1040     if Length(FBBSColumnWidth) <> wkList.Count then begin
1041     ini.EraseSection('BBSColumnWidth');
1042     end;
1043     for i := 0 to Length(FBBSColumnWidth) - 1 do begin
1044     BBSColumnWidth[i] := ini.ReadInteger('BBSColumnWidth', 'ID' + IntToStr(i), DEFAULT_BBS_WIDTH[i]);
1045 q9_ 1.30 if BBSColumnWidth[i] > MAX_WIDTH then
1046     BBSColumnWidth[i] := DEFAULT_BBS_WIDTH[i];
1047 hi_ 1.1 end;
1048     ini.ReadSection('CategoryColumnWidth', wkList);
1049     if Length(FCategoryColumnWidth) <> wkList.Count then begin
1050     ini.EraseSection('CategoryColumnWidth');
1051     end;
1052     for i := 0 to Length(FCategoryColumnWidth) - 1 do begin
1053     CategoryColumnWidth[i] := ini.ReadInteger('CategoryColumnWidth', 'ID' + IntToStr(i), DEFAULT_CATEGORY_WIDTH[i]);
1054 q9_ 1.30 if CategoryColumnWidth[i] > MAX_WIDTH then
1055     CategoryColumnWidth[i] := DEFAULT_CATEGORY_WIDTH[i];
1056 hi_ 1.1 end;
1057     ini.ReadSection('BoardColumnWidth', wkList);
1058     if Length(FBoardColumnWidth) <> wkList.Count then begin
1059     ini.EraseSection('BoardColumnWidth');
1060     end;
1061     for i := 0 to Length(FBoardColumnWidth) - 1 do begin
1062     BoardColumnWidth[i] := ini.ReadInteger('BoardColumnWidth', 'ID' + IntToStr(i), DEFAULT_BOARD_WIDTH[i]);
1063 q9_ 1.30 if BoardColumnWidth[i] > MAX_WIDTH then
1064     BoardColumnWidth[i] := DEFAULT_BOARD_WIDTH[i];
1065 hi_ 1.1 end;
1066     finally
1067     wkList.Free;
1068     end;
1069    
1070 yoffy 1.64 // ?????眼?????鴻??????????綺?span>
1071     wkList := TStringList.Create;
1072     try
1073     ini.ReadSection( 'BBSColumnOrder', wkList );
1074     for i := 0 to wkList.Count - 1 do begin
1075     wkStr := ini.ReadString( 'BBSColumnOrder', 'ID' + IntToStr( i ), '' );
1076     Val( wkStr, id, code );
1077     if code = 0 then
1078     FBBSColumnOrder.Add( TGikoBBSColumnID( id ) );
1079     end;
1080     if FBBSColumnOrder.Count = 0 then begin
1081     // 荐?????<?????т???
1082     for i := 0 to Integer( High( TGikoBBSColumnID ) ) do
1083     FBBSColumnOrder.Add( TGikoBBSColumnID( i ) );
1084     end;
1085    
1086     ini.ReadSection( 'CategoryColumnOrder', wkList );
1087     for i := 0 to wkList.Count - 1 do begin
1088     wkStr := ini.ReadString( 'CategoryColumnOrder', 'ID' + IntToStr( i ), '' );
1089     Val( wkStr, id, code );
1090     if code = 0 then
1091     FCategoryColumnOrder.Add( TGikoCategoryColumnID( id ) );
1092     end;
1093     if FCategoryColumnOrder.Count = 0 then begin
1094     // 荐?????<?????т???
1095     for i := 0 to Integer( High( TGikoCategoryColumnID ) ) do
1096     FCategoryColumnOrder.Add( TGikoCategoryColumnID( i ) );
1097     end;
1098    
1099     ini.ReadSection( 'BoardColumnOrder', wkList );
1100     for i := 0 to wkList.Count - 1 do begin
1101     wkStr := ini.ReadString( 'BoardColumnOrder', 'ID' + IntToStr( i ), '' );
1102     Val( wkStr, id, code );
1103     if code = 0 then
1104     FBoardColumnOrder.Add( TGikoBoardColumnID( id ) );
1105     end;
1106     if FBoardColumnOrder.Count = 0 then begin
1107     // 荐?????<?????т???
1108     for i := 0 to Integer( High( TGikoBoardColumnID ) ) do
1109     FBoardColumnOrder.Add( TGikoBoardColumnID( i ) );
1110     end;
1111     finally
1112     wkList.Free;
1113     end;
1114    
1115 hi_ 1.1 //???鴻?????/span>
1116     FListViewNo := ini.ReadBool('Function', 'ListViewNo', True);
1117     //CSS
1118 yoffy 1.17 UseCSS := ini.ReadBool('CSS', 'UseCSS', True);
1119 hi_ 1.1 //CSS???<?ゃ????
1120 yoffy 1.17 CSSFileName := ini.ReadString('CSS', 'FileName', 'default.css');
1121 hi_ 1.1
1122     //Mail罨?茵?ず
1123     FShowMail := ini.ReadBool('Thread', 'ShowMail', True);
1124 yoffy 1.49 // ???壕;腓榊???/span>
1125     if ini.ReadBool('Thread', 'OnlyAHundredRes',false) then
1126     FResRange := 100 // ?ゃ??荐?????????/span>
1127     else
1128 h677 1.60 FResRange := ini.ReadInteger( 'Thread', 'ResRange', Ord( grrAll ) );
1129 yoffy 1.51 FResRangeHold := ini.ReadBool( 'Thread', 'ResRangeHold', False );
1130 yoffy 1.55 // ?鴻??????筝?荀ц;腓榊???/span>
1131     FThreadRange := TGikoThreadRange( ini.ReadInteger('ThreadList', 'ThreadRange', Ord( gtrAll )) );
1132 yoffy 1.2 //???≪?????c???????鴻???????≪????茵?ず
1133 hi_ 1.1 FUnActivePopup := ini.ReadBool('Thread', 'UnActivePopup', False);
1134 yoffy 1.2 //???鴻???????≪???????????若???若????
1135     FResPopupHeaderBold := ini.ReadBool('Thread', 'ResPopupHeaderBold', True);
1136 hi_ 1.1 //???ょ∈茯?
1137     FDeleteMsg := ini.ReadBool('Function', 'LogDeleteMessage', True);
1138 yoffy 1.14 //腟?篋?腆肴?
1139     FShowDialogForEnd := ini.ReadBool('Function','ShowDialogForEnd',false);
1140 h677 1.38 //AllTabClose
1141     FShowDialogForAllTabClose := ini.ReadBool('Function','ShowDialogForAllTabClose',false);
1142 genyakun 1.48 //Samba
1143 h677 1.38 FUseSamba := ini.ReadBool('Function','UseSamba', True);
1144     //ResAnchorjamp
1145     ResAnchorJamp := ini.ReadBool('Function', 'ResAnchoJamp', True);
1146 hi_ 1.1 //???違????????
1147     FLogFolder := ini.ReadString('Folder', 'LogFolder', ExtractFilePath(Application.ExeName) + 'Log');
1148     NewLogFolder := '';
1149    
1150     //??RL
1151 yoffy 1.14 //茲??亥?脂?蚊?с??????????????BoardURLs????????2003/10/05
1152 h677 1.11 //FBoardURL2ch := ini.ReadString('BoardURL', '2ch', DEFAULT_2CH_BOARD_URL);
1153 hi_ 1.1
1154     //茯?荐主?????若??D?祉???鴻???若??
1155     FUserID := ini.ReadString('Attestation', 'UserID', '');
1156     FPassword := Decrypt(ini.ReadString('Attestation', 'Password', ''));
1157     FAutoLogin := ini.ReadBool('Attestation', 'AutoLogin', False);
1158 h677 1.36 FForcedLogin := ini.ReadBool('Attestation', 'FForcedLogin', False);
1159 h677 1.37 // FDolibURL := ini.ReadString('Attestation', 'FDolibURL', DOLIB_LOGIN_URL);
1160 hi_ 1.1
1161     //URL??????????莎桁???≪????/span>
1162     FURLApp := ini.ReadBool('URLApp', 'Select', False);
1163     FURLAppFile := ini.ReadString('URLApp', 'File', '');
1164    
1165     //mailto????????????篏?
1166     FOpenMailer := ini.ReadBool('Mailto', 'Open', True);
1167    
1168     //???????≪????篏?臀?/span>
1169     FPopupPosition := TGikoPopupPosition(ini.ReadInteger('Browser', 'PopupPosition', Ord(gppLeftBottom)));
1170    
1171     //?≪?????鴻????/span>
1172     FURLDisplay := ini.ReadBool('AddressBar', 'URLDisplay', False);
1173     FAddressBarTabStop := ini.ReadBool('AddressBar', 'TabStop', True);
1174     FLinkAddAddressBar := ini.ReadBool('AddressBar', 'LinkAdd', False);
1175     FAddressHistoryCount := ini.ReadInteger('AddressBar', 'HistoryCount', 100);
1176    
1177     //?糸????????ャ??/span>
1178     FPreviewVisible := ini.ReadBool('Browser', 'PreviewVisible', True);
1179     FPreviewSize := TGikoPreviewSize(ini.ReadInteger('Browser', 'PreviewSize', Ord(gpsMedium)));
1180     FPreviewWait := ini.ReadInteger('Browser', 'PreviewWait', 500);
1181    
1182 yoffy 1.39 // ????????/span>
1183     FBrowserAutoMaximize := TGikoBrowserAutoMaximize(
1184     ini.ReadInteger('Window', 'BrowserAutoMaximize', Ord(gbmDoubleClick)) );
1185    
1186 hi_ 1.1 //?鴻??????筝?荀ф?贋?違?≪?ゃ?潟??/span>
1187     FListIconVisible := ini.ReadBool('ThreadList', 'StateIconVisible', True);
1188 q9_ 1.44 FCreationTimeLogs := ini.ReadBool('ThreadList', 'CreationTimeLogs', True);
1189 h677 1.43 FFutureThread := ini.ReadBool('ThreadList', 'FutureThread', True);
1190     FSelectInterval := ini.ReadInteger('ThreadList', 'SelectInterval', 110);
1191 q9_ 1.46 //?純?若????
1192     FBBSSortIndex := ini.ReadInteger('ThreadList', 'BBSSortIndex', 0);
1193 h677 1.59 FBBSSortOrder := ini.ReadBool('ThreadList', 'BBSSortOrder', True);
1194 q9_ 1.46 FCategorySortIndex := ini.ReadInteger('ThreadList', 'CategorySortIndex', 0);
1195 h677 1.59 FCategorySortOrder := ini.ReadBool('ThreadList', 'CategorySortOrder', True);
1196 q9_ 1.46 FBoardSortIndex := ini.ReadInteger('ThreadList', 'BoardSortIndex', 0);
1197 h677 1.59 FBoardSortOrder := ini.ReadBool('ThreadList', 'BoardSortOrder', True);
1198 q9_ 1.53 //Dat?純?<?鴻???純?若????
1199     FDatOchiSortIndex := ini.ReadInteger('ThreadList', 'DatOchiSortIndex', -1);
1200     FDatOchiSortOrder := ini.ReadBool('ThreadList', 'DatOchiSortOrder', False);
1201 hi_ 1.1
1202     //?吾??莨若?炊?????激?恰???私戎??┃絎?
1203     FUseMachineTime := ini.ReadBool('PostTime', 'UseMachineTime', False);
1204     FTimeAdjustSec := ini.ReadInteger('PostTime', 'TimeAdjustSec', 0);
1205     FTimeAdjust := ini.ReadBool('PostTime', 'TimeAdjust', True);
1206    
1207     //?泣???潟??
1208     if Exists then begin
1209     for i := 0 to GetSoundCount - 1 do begin
1210     SoundFileName[i] := ini.ReadString('Sound', SoundName[i], '');
1211     if not FileExists(SoundFileName[i]) then
1212     SoundFileName[i] := '';
1213     end;
1214     end else begin
1215     s := ExtractFileDir(Application.ExeName) + '\sound\';
1216     SoundFileName[0] := s + '??緇?????.wav';
1217     SoundFileName[1] := s + '??緇?????(綏???).wav';
1218     SoundFileName[2] := s + '???贋??wav';
1219     SoundFileName[3] := '';
1220     SoundFileName[4] := s + '??????wav';
1221     end;
1222    
1223     //???若??????/span>
1224     for i := 0 to MAIN_COOLBAND_COUNT - 1 do begin
1225     CoolSet.FCoolID := ini.ReadInteger('MainCoolBar', 'ID' + IntToStr(i), -1);
1226     CoolSet.FCoolWidth := ini.ReadInteger('MainCoolBar', 'Width' + IntToStr(i), -1);
1227     CoolSet.FCoolBreak := ini.ReadBool('MainCoolBar', 'Break' + IntToStr(i), False);
1228     MainCoolSet[i] := CoolSet;
1229     end;
1230 yoffy 1.14 FSelectComboBoxWidth := ini.ReadInteger( 'ListCoolBar', 'SelectWidth', 127 );
1231 hi_ 1.1 for i := 0 to LIST_COOLBAND_COUNT - 1 do begin
1232     CoolSet.FCoolID := ini.ReadInteger('ListCoolBar', 'ID' + IntToStr(i), -1);
1233     CoolSet.FCoolWidth := ini.ReadInteger('ListCoolBar', 'Width' + IntToStr(i), -1);
1234     CoolSet.FCoolBreak := ini.ReadBool('ListCoolBar', 'Break' + IntToStr(i), False);
1235 yoffy 1.2 ListCoolSet[i] := CoolSet;
1236 hi_ 1.1 end;
1237     for i := 0 to BROWSER_COOLBAND_COUNT - 1 do begin
1238     CoolSet.FCoolID := ini.ReadInteger('BrowserCoolBar', 'ID' + IntToStr(i), -1);
1239     CoolSet.FCoolWidth := ini.ReadInteger('BrowserCoolBar', 'Width' + IntToStr(i), -1);
1240     CoolSet.FCoolBreak := ini.ReadBool('BrowserCoolBar', 'Break' + IntToStr(i), False);
1241     BrowserCoolSet[i] := CoolSet;
1242     end;
1243 h677 1.3
1244 yoffy 1.14 //???若????
1245     FAbonDeleterlo := ini.ReadBool('Abon','Deleterlo',false);
1246     FAbonReplaceul := ini.ReadBool('Abon','Replaceul',false);
1247     FPopUpAbon := ini.ReadBool('Abon','Popup',false);
1248     FShowNGLinesNum := ini.ReadBool('Abon','ShowNGLines',false);
1249     FAddResAnchor := ini.ReadBool('Abon','AddResAnchor',false);
1250 genyakun 1.48 FDeleteSyria := ini.ReadBool('Abon','DeleteSyria',false);
1251 yoffy 1.40
1252     // ?????c??/span>
1253 h677 1.73 FSpaceToNBSP := ini.ReadBool( 'Editor', 'SpaceToNBSP', False );
1254 yoffy 1.42 FAmpToCharRef := ini.ReadBool( 'Editor', 'AmpToCharRef', False );
1255 h677 1.43
1256 h677 1.67 //Tab????篆?絖???茯??粋昭??/span>
1257     FTabAutoLoadSave := ini.ReadBool('TabAuto', 'TabAutoLoadSave', False);
1258    
1259     FKuroutSettingTabIndex := ini.ReadInteger('OptionDialog', 'KuroutTabIndex' , 0);
1260 genyakun 1.47
1261 yoffy 1.75 // ?????鴻?吾?с?鴻???c??/span>
1262     FGestureEnabled := ini.ReadBool( 'Guesture', 'Enabled', False );
1263 genyakun 1.77
1264     //2ch荐?茯??泣??
1265     F2chSupport := ini.ReadBool('2chSupport', 'Support', False);
1266    
1267     //FusianaTrap
1268 h677 1.78 FLocalTrapAtt := ini.ReadBool('Trap', 'LocalTrap', False);
1269     FRemoteTrapAtt := ini.ReadBool('Trap', 'RemoteTrap', False);
1270 genyakun 1.77
1271     ini.UpdateFile;
1272 hi_ 1.1 finally
1273     ini.Free;
1274     end;
1275     end;
1276 h677 1.11 //?炊?贋?亥??RL茯??粋昭??/span>
1277     procedure TSetting.ReadBoardURLsFile();
1278     var
1279     ini: TMemIniFile;
1280 yoffy 1.14 urlNum: Integer;
1281     i : Integer;
1282 h677 1.11 begin
1283 yoffy 1.14 if not FileExists(GetBoardURLFileName()) then
1284     MakeURLIniFile();
1285 h677 1.11 ini := TMemIniFile.Create(GetBoardURLFileName());
1286 yoffy 1.14 try
1287     urlNum := ini.ReadInteger('URL','count',0);
1288     BoardURLSelected := ini.ReadInteger('URL','selected',0);
1289     for i := 0 to urlNum - 1 do begin
1290     FBoardURLs.Append(ini.ReadString('URL',IntToStr(i+1),''));
1291     end;
1292     finally
1293     ini.Free;
1294     end;
1295 hi_ 1.1
1296 h677 1.11 end;
1297 hi_ 1.1 //荐?????<?ゃ???絖?(system)
1298     procedure TSetting.WriteSystemSettingFile();
1299     var
1300     ini: TMemIniFile;
1301     begin
1302     ini := TMemIniFile.Create(GetFileName());
1303     try
1304     //??篆<???????<?泣?ゃ??/span>
1305     ini.WriteInteger('HTTP', 'RecvBufferSize', FRecvBufferSize);
1306     //HTTP1.1篏睡??/span>
1307     ini.WriteBool('HTTP', 'Protocol', FProtocol);
1308     //???????傑・膓?HTTP1.1篏睡??/span>
1309     ini.WriteBool('HTTP', 'ProxyProtocol', FProxyProtocol);
1310    
1311     ini.WriteBool('ReadProxy', 'Proxy', FReadProxy);
1312     ini.WriteString('ReadProxy', 'Address', FReadProxyAddress);
1313     ini.WriteInteger('ReadProxy', 'Port', FReadProxyPort);
1314     ini.WriteString('ReadProxy', 'UserID', FReadProxyUserID);
1315     ini.WriteString('ReadProxy', 'Password', FReadProxyPassword);
1316    
1317     ini.WriteBool('WriteProxy', 'Proxy', FWriteProxy);
1318     ini.WriteString('WriteProxy', 'Address', FWriteProxyAddress);
1319     ini.WriteInteger('WriteProxy', 'Port', FWriteProxyPort);
1320     ini.WriteString('WriteProxy', 'UserID', FWriteProxyUserID);
1321     ini.WriteString('WriteProxy', 'Password', FWriteProxyPassword);
1322    
1323 yoffy 1.6 ini.WriteString('Window', 'BrowserFontName', FBrowserFontName);
1324     ini.WriteInteger('Window', 'BrowserFontSize', FBrowserFontSize);
1325     ini.WriteInteger('Window', 'BrowserFontSize', FBrowserFontSize);
1326     ini.WriteInteger('Window', 'BrowserFontBold', FBrowserFontBold);
1327     ini.WriteInteger('Window', 'BrowserFontItalic', FBrowserFontItalic);
1328     ini.WriteInteger('Window', 'BrowserFontColor', FBrowserFontColor);
1329     ini.WriteInteger('Window', 'BrowserBackColor', FBrowserBackColor);
1330    
1331 hi_ 1.1 ini.WriteString('Window', 'CabinetFontName', FCabinetFontName);
1332     ini.WriteInteger('Window', 'CabinetFontSize', FCabinetFontSize);
1333     ini.WriteString('Window', 'CabinetFontColor', ColorToString(FCabinetFontColor));
1334 h677 1.80 ini.WriteBool('Window', 'CabinetFontBold', FCabinetFontBold);
1335     ini.WriteBool('Window', 'CabinetFontItalic', FCabinetFontItalic);
1336 hi_ 1.1 ini.WriteString('Window', 'CabinetBackColor', ColorToString(FCabinetBackColor));
1337    
1338     ini.WriteString('Window', 'ListFontName', FListFontName);
1339     ini.WriteInteger('Window', 'ListFontSize', FListFontSize);
1340     ini.WriteString('Window', 'ListFontColor', ColorToString(FListFontColor));
1341     ini.WriteString('Window', 'ListBackColor', ColorToString(FListBackColor));
1342 h677 1.80 ini.WriteBool('Window', 'ListFontBold', FListFontBold);
1343     ini.WriteBool('Window', 'ListFontItalic', FListFontItalic);
1344     ini.WriteBool('Window','UseOddColor',FUseOddColorOddResNum);
1345 genyakun 1.48 ini.WriteString('Window', 'OddColor',ColorToString(FOddColor));
1346 hi_ 1.1
1347     ini.WriteString('Window', 'EditorFontName', FEditorFontName);
1348     ini.WriteInteger('Window', 'EditorFontSize', FEditorFontSize);
1349     ini.WriteString('Window', 'EditorFontColor', ColorToString(FEditorFontColor));
1350     ini.WriteString('Window', 'EditorBackColor', ColorToString(FEditorBackColor));
1351    
1352     ini.WriteString('Window', 'BrowserTabFontName', FBrowserTabFontName);
1353     ini.WriteInteger('Window', 'BrowserTabFontSize', FBrowserTabFontSize);
1354     ini.WriteBool('Window', 'BrowserTabFontBold', FBrowserTabFontBold);
1355     ini.WriteBool('Window', 'BrowserTabFontItalic', FBrowserTabFontItalic);
1356    
1357     ini.WriteString('Window', 'HintFontName', FHintFontName);
1358     ini.WriteInteger('Window', 'HintFontSize', FHintFontSize);
1359     ini.WriteString('Window', 'HintFontColor', ColorToString(FHintFontColor));
1360     ini.WriteString('Window', 'HintBackColor', ColorToString(FHintBackColor));
1361    
1362     ini.UpdateFile;
1363     finally
1364     ini.Free;
1365     end;
1366     end;
1367    
1368     //荐?????<?ゃ???絖?(window)
1369     procedure TSetting.WriteWindowSettingFile();
1370     var
1371     i: Integer;
1372     ini: TMemIniFile;
1373     CoolSet: TCoolSet;
1374 yoffy 1.66 wkList : TStringList;
1375 hi_ 1.1 begin
1376     ini := TMemIniFile.Create(GetFileName());
1377     try
1378     ini.WriteInteger('WindowSize', 'Top', WindowTop);
1379     ini.WriteInteger('WindowSize', 'Left', WindowLeft);
1380     ini.WriteInteger('WindowSize', 'Height', WindowHeight);
1381     ini.WriteInteger('WindowSize', 'Width', WindowWidth);
1382     ini.WriteBool('WindowSize', 'Max', WindowMax);
1383    
1384     ini.WriteInteger('ViewStyle', 'ListView', Ord(ListStyle));
1385    
1386     ini.WriteInteger('EditorWindowSize', 'Top', EditWindowTop);
1387     ini.WriteInteger('EditorWindowSize', 'Left', EditWindowLeft);
1388     ini.WriteInteger('EditorWindowSize', 'Height', EditWindowHeight);
1389     ini.WriteInteger('EditorWindowSize', 'Width', EditWindowWidth);
1390     ini.WriteBool('EditorWindowSize', 'Max', EditWindowMax);
1391 deux 1.20 ini.WriteBool('EditorWindowSize', 'Stay', EditWindowStay);
1392 yoffy 1.34 ini.WriteBool('EditorWindowSize', 'Translucent', EditWindowTranslucent);
1393 hi_ 1.1
1394 yoffy 1.14 ini.WriteInteger('OptionDialog', 'TabIndex', FOptionDialogTabIndex);
1395 yoffy 1.8
1396 hi_ 1.1 //???若??????/span>
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     //???若??????rapable
1405     ini.WriteBool('ToolBar', 'ListWrapable', FListToolBarWrapable);
1406     ini.WriteBool('ToolBar', 'BrowserWrapable', FBrowserToolBarWrapable);
1407    
1408     //?帥??
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     //?<???祉?若?吾????/span>
1415     ini.WriteBool('MessageBar', 'Visible', FMessageBarVisible);
1416     ini.WriteInteger('MessageBar', 'Height', FMessegeBarHeight);
1417    
1418     //?鴻???若?帥?鴻????/span>
1419     ini.WriteBool('StatusBar', 'Visible', FStatusBarVisible);
1420    
1421     //???c????????
1422     ini.WriteBool('Cabinet', 'Visible', FCabinetVisible);
1423     ini.WriteInteger('Cabinet', 'Width', FCabinetWidth);
1424 yoffy 1.14 ini.WriteInteger('Cabinet', 'Index', FCabinetIndex);
1425 hi_ 1.1
1426     //???鴻?????泣?ゃ?冴?????贋梓綛?/span>
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     //???鴻????埈;腓?/span>
1439     ini.WriteBool('Function', 'ListViewNo', FListViewNo);
1440     //CSS篏睡??/span>
1441     ini.WriteBool('CSS', 'UseCSS', FUseCSS);
1442     //CSS???<?ゃ????
1443     ini.WriteString('CSS', 'FileName', FCSSFileName);
1444     //Mail罨?茵?ず
1445     ini.WriteBool('Thread', 'ShowMail', FShowMail);
1446 yoffy 1.49 // ???壕;腓榊???/span>
1447 yoffy 1.58 ini.DeleteKey( 'Thread', 'OnlyAHundredRes' ); // ?ゃ??荐????????/span>
1448 yoffy 1.49 ini.WriteInteger('Thread', 'ResRange', FResRange);
1449 yoffy 1.51 ini.WriteBool('Thread', 'ResRangeHold', FResRangeHold);
1450 yoffy 1.55 // ?鴻??????筝?荀ц;腓榊???/span>
1451     ini.WriteInteger('ThreadList', 'ThreadRange', Ord( FThreadRange ));
1452 hi_ 1.1 //???医???ょ∈茯?
1453     ini.WriteBool('Function', 'LogDeleteMessage', FDeleteMsg);
1454 yoffy 1.14 //腟?篋?腆肴?
1455     ini.WriteBool('Function','ShowDialogForEnd',FShowDialogForEnd);
1456 h677 1.38 //AllTabClose
1457     ini.WriteBool('Function','ShowDialogForAllTabClose', FShowDialogForAllTabClose);
1458 yoffy 1.34 //Samba
1459     ini.WriteBool('Function','UseSamba', FUseSamba);
1460 h677 1.38 //ResAnchorjamp
1461     ini.WriteBool('Function', 'ResAnchoJamp', ResAnchorJamp);
1462 h677 1.33
1463 hi_ 1.1 //???≪?????c???????????≪????茵?ず
1464     ini.WriteBool('Thread', 'UnActivePopup', FUnActivePopup);
1465 yoffy 1.2 //???鴻???????≪???????????若???若????
1466     ini.WriteBool('Thread', 'ResPopupHeaderBold', FResPopupHeaderBold);
1467 h677 1.11 //ini.WriteString('BoardURL', '2ch', FBoardURL2ch);
1468 hi_ 1.1
1469     //茯?荐主?????若??D?祉???鴻???若??
1470     ini.WriteString('Attestation', 'UserID', FUserID);
1471     ini.WriteString('Attestation', 'Password', Encrypt(FPassword));
1472     ini.WriteBool('Attestation', 'AutoLogin', FAutoLogin);
1473 h677 1.36 ini.WriteBool('Attestation', 'FForcedLogin', FForcedLogin);
1474     ini.WriteString('Attestation', 'FDolibURL', FDolibURL);
1475 hi_ 1.1
1476     //URL??????????莎桁???≪????/span>
1477     ini.WriteBool('URLApp', 'Select', FURLApp);
1478     ini.WriteString('URLApp', 'File', FURLAppFile);
1479    
1480     //mailto????????????篏?
1481     ini.WriteBool('Mailto', 'Open', FOpenMailer);
1482    
1483     //???????≪????篏?臀?/span>
1484     ini.WriteInteger('Browser', 'PopupPosition', Ord(FPopupPosition));
1485    
1486     //?≪?????鴻????/span>
1487     ini.WriteBool('AddressBar', 'URLDisplay', FURLDisplay);
1488     ini.WriteBool('AddressBar', 'TabStop', FAddressBarTabStop);
1489     ini.WriteBool('AddressBar', 'LinkAdd', FLinkAddAddressBar);
1490     ini.WriteInteger('AddressBar', 'HistoryCount', FAddressHistoryCount);
1491    
1492     //?糸????????ャ??/span>
1493     ini.WriteBool('Browser', 'PreviewVisible', FPreviewVisible);
1494     ini.WriteInteger('Browser', 'PreviewSize', Ord(FPreviewSize));
1495     ini.WriteInteger('Browser', 'PreviewWait', FPreviewWait);
1496 yoffy 1.61
1497     ini.WriteInteger('Window', 'BrowserAutoMaximize', Ord( BrowserAutoMaximize ) );
1498 hi_ 1.1
1499     //?鴻??????筝?荀ф?贋?違?≪?ゃ?潟??/span>
1500     ini.WriteBool('ThreadList', 'StateIconVisible', FListIconVisible);
1501 yoffy 1.34 ini.WriteBool('ThreadList', 'CreationTimeLogs',FCreationTimeLogs);
1502     ini.WriteBool('ThreadList', 'FutureThread', FFutureThread);
1503 q9_ 1.44 ini.WriteInteger('ThreadList', 'SelectInterval', FSelectInterval);
1504 q9_ 1.46 //?純?若????
1505     ini.WriteInteger('ThreadList', 'BBSSortIndex', FBBSSortIndex);
1506     ini.WriteBool('ThreadList', 'BBSSortOrder', FBBSSortOrder);
1507     ini.WriteInteger('ThreadList', 'CategorySortIndex', FCategorySortIndex);
1508     ini.WriteBool('ThreadList', 'CategorySortOrder', FCategorySortOrder);
1509     ini.WriteInteger('ThreadList', 'BoardSortIndex', FBoardSortIndex);
1510     ini.WriteBool('ThreadList', 'BoardSortOrder', FBoardSortOrder);
1511 q9_ 1.53 ini.WriteInteger('ThreadList', 'DatOchiSortIndex', FDatOchiSortIndex);
1512     ini.WriteBool('ThreadList', 'DatOchiSortOrder', FDatOchiSortOrder);
1513 hi_ 1.1
1514     //?吾??莨若?炊?????激?恰???私戎??┃絎?
1515     ini.WriteBool('PostTime', 'UseMachineTime', FUseMachineTime);
1516     ini.WriteInteger('PostTime', 'TimeAdjustSec', FTimeAdjustSec);
1517     ini.WriteBool('PostTime', 'TimeAdjust', FTimeAdjust);
1518    
1519 yoffy 1.64 // ???鴻????????綛?
1520 hi_ 1.1 for i := 0 to Length(FBBSColumnWidth) - 1 do begin
1521     ini.WriteInteger('BBSColumnWidth', 'ID' + IntToStr(i), FBBSColumnWidth[i]);
1522     end;
1523     for i := 0 to Length(FCategoryColumnWidth) - 1 do begin
1524     ini.WriteInteger('CategoryColumnWidth', 'ID' + IntToStr(i), FCategoryColumnWidth[i]);
1525     end;
1526     for i := 0 to Length(FBoardColumnWidth) - 1 do begin
1527     ini.WriteInteger('BoardColumnWidth', 'ID' + IntToStr(i), FBoardColumnWidth[i]);
1528     end;
1529    
1530 yoffy 1.66 wkList := TStringList.Create;
1531     try
1532     // ?????眼?????鴻????綺?span>
1533     ini.ReadSection( 'BBSColumnOrder', wkList );
1534     for i := wkList.Count - 1 downto 0 do
1535     ini.DeleteKey( 'BBSColumnOrder', wkList[ i ] );
1536     for i := 0 to FBBSColumnOrder.Count - 1 do
1537     ini.WriteInteger( 'BBSColumnOrder', 'ID' + IntToStr( i ), Ord( FBBSColumnOrder[ i ] ) );
1538    
1539     // ?帥???鴻????綺?span>
1540     ini.ReadSection( 'CategoryColumnOrder', wkList );
1541     for i := wkList.Count - 1 downto 0 do
1542     ini.DeleteKey( 'CategoryColumnOrder', wkList[ i ] );
1543     for i := 0 to FCategoryColumnOrder.Count - 1 do
1544     ini.WriteInteger( 'CategoryColumnOrder', 'ID' + IntToStr( i ), Ord( FCategoryColumnOrder[ i ] ) );
1545    
1546     // ?鴻?????鴻????綺?span>
1547     ini.ReadSection( 'BoardColumnOrder', wkList );
1548     for i := wkList.Count - 1 downto 0 do
1549     ini.DeleteKey( 'BoardColumnOrder', wkList[ i ] );
1550     for i := 0 to FBoardColumnOrder.Count - 1 do
1551     ini.WriteInteger( 'BoardColumnOrder', 'ID' + IntToStr( i ), Ord( FBoardColumnOrder[ i ] ) );
1552     finally
1553     wkList.Free;
1554     end;
1555 yoffy 1.64
1556 hi_ 1.1 //?泣???潟??
1557     for i := 0 to GetSoundCount - 1 do begin
1558     if not FileExists(SoundFileName[i]) then
1559     SoundFileName[i] := '';
1560     ini.WriteString('Sound', SoundName[i], SoundFileName[i]);
1561     end;
1562    
1563     //CoolBar
1564     ini.EraseSection('MainCoolBar');
1565     for i := 0 to MAIN_COOLBAND_COUNT - 1 do begin
1566     CoolSet := MainCoolSet[i];
1567     ini.WriteInteger('MainCoolBar', 'ID' + IntToStr(i), CoolSet.FCoolID);
1568     ini.WriteInteger('MainCoolBar', 'Width' + IntToStr(i), CoolSet.FCoolWidth);
1569     ini.WriteBool('MainCoolBar', 'Break' + IntToStr(i), CoolSet.FCoolBreak);
1570     end;
1571 yoffy 1.2 ini.EraseSection('ListCoolBar');
1572 yoffy 1.14 ini.WriteInteger( 'ListCoolBar', 'SelectWidth', FSelectComboBoxWidth );
1573 hi_ 1.1 for i := 0 to LIST_COOLBAND_COUNT - 1 do begin
1574     CoolSet := ListCoolSet[i];
1575     ini.WriteInteger('ListCoolBar', 'ID' + IntToStr(i), CoolSet.FCoolID);
1576     ini.WriteInteger('ListCoolBar', 'Width' + IntToStr(i), CoolSet.FCoolWidth);
1577     ini.WriteBool('ListCoolBar', 'Break' + IntToStr(i), CoolSet.FCoolBreak);
1578     end;
1579     ini.EraseSection('BrowserCoolBar');
1580     for i := 0 to BROWSER_COOLBAND_COUNT - 1 do begin
1581     CoolSet := BrowserCoolSet[i];
1582     ini.WriteInteger('BrowserCoolBar', 'ID' + IntToStr(i), CoolSet.FCoolID);
1583     ini.WriteInteger('BrowserCoolBar', 'Width' + IntToStr(i), CoolSet.FCoolWidth);
1584     ini.WriteBool('BrowserCoolBar', 'Break' + IntToStr(i), CoolSet.FCoolBreak);
1585     end;
1586 h677 1.3
1587 h677 1.9 //???若????
1588     ini.WriteBool('Abon','Deleterlo',FAbonDeleterlo);
1589     ini.WriteBool('Abon','Replaceul',FAbonReplaceul);
1590 yoffy 1.14 ini.WriteBool('Abon','Popup',FPopUpAbon);
1591 h677 1.9 ini.WriteBool('Abon','ShowNGLines',FShowNGLinesNum);
1592     ini.WriteBool('Abon','AddResAnchor',FAddResAnchor);
1593 yoffy 1.40 ini.WriteBool('Abon','DeleteSyria',FDeleteSyria);
1594    
1595     // ?????c??/span>
1596     ini.WriteBool( 'Editor', 'SpaceToNBSP', FSpaceToNBSP );
1597 yoffy 1.41 ini.WriteBool( 'Editor', 'AmpToCharRef', FAmpToCharRef );
1598 hi_ 1.1
1599 genyakun 1.71 //?帥??????篆?絖?
1600 h677 1.67 ini.WriteBool('TabAuto', 'TabAutoLoadSave', FTabAutoLoadSave);
1601 genyakun 1.71 //荅括完荐??
1602     ini.WriteInteger('OptionDialog', 'KuroutTabIndex', FKuroutSettingTabIndex);
1603 h677 1.67
1604 genyakun 1.71 //???<????茯?罅???罘???/span>
1605 genyakun 1.77 ini.WriteBool('2chSupport', 'Support', F2chSupport);
1606 genyakun 1.52
1607 yoffy 1.75 // ?????鴻?吾?с?鴻???c?若??篏睡??????????????
1608     ini.WriteBool( 'Guesture', 'Enabled', FGestureEnabled );
1609    
1610 genyakun 1.77 //FusianaTrap
1611 h677 1.78 ini.WriteBool('Trap', 'LocalTrap', FLocalTrapAtt);
1612     ini.WriteBool('Trap', 'RemoteTrap', FRemoteTrapAtt);
1613 genyakun 1.77
1614     ini.UpdateFile;
1615 hi_ 1.1 finally
1616     ini.Free;
1617     end;
1618     end;
1619    
1620     //荐?????<?ゃ???絖?(name & mail)
1621     procedure TSetting.WriteNameMailSettingFile();
1622     var
1623     i: Integer;
1624     ini: TMemIniFile;
1625     begin
1626     ini := TMemIniFile.Create(GetFileName());
1627     try
1628     ini.EraseSection('Name');
1629     ini.EraseSection('Mail');
1630     ini.EraseSection('SelectText');
1631     for i := 0 to FNameList.Count - 1 do begin
1632     ini.WriteString('Name', Format('%.2d', [i + 1]), FNameList[i]);
1633     if i >= 39 then
1634     Break;
1635     end;
1636     for i := 0 to FMailList.Count - 1 do begin
1637     ini.WriteString('Mail', Format('%.2d', [i + 1]), FMailList[i]);
1638     if i >= 39 then
1639     Break;
1640     end;
1641     for i := 0 to FSelectTextList.Count - 1 do begin
1642     ini.WriteString('SelectText', Format('%.2d', [i + 1]), FSelectTextList[i]);
1643     if i >= 39 then
1644     Break;
1645     end;
1646     ini.UpdateFile;
1647     finally
1648     ini.Free;
1649     end;
1650     end;
1651    
1652     procedure TSetting.WriteFolderSettingFile();
1653     var
1654     ini: TMemIniFile;
1655     begin
1656     ini := TMemIniFile.Create(GetFileName());
1657     try
1658     if ExtractFilePath(Application.ExeName) + 'Log' = NewLogFolder then
1659     ini.DeleteKey('Folder', 'LogFolder')
1660     else
1661     ini.WriteString('Folder', 'LogFolder', NewLogFolder);
1662     ini.UpdateFile;
1663     finally
1664     ini.Free;
1665     end;
1666     end;
1667 h677 1.11 //?炊?贋?亥??oardURL??篆?絖?
1668     procedure TSetting.WriteBoardURLSettingFile();
1669     var
1670     ini: TMemIniFile;
1671 yoffy 1.14 i : Integer;
1672     oldcount : Integer;
1673 h677 1.11 begin
1674     ini := TMemIniFile.Create(GetBoardURLFileName());
1675     try
1676 yoffy 1.14 oldcount := ini.ReadInteger('URL','count',FBoardURLs.Count);
1677     ini.WriteInteger('URL','count',FBoardURLs.Count);
1678     ini.WriteInteger('URL','selected',BoardURLSelected);
1679     for i := 0 to FBoardURLs.Count -1 do begin
1680     ini.WriteString('URL',IntToStr(i+1),FBoardURLs.Strings[i]);
1681     end;
1682     if oldcount > FBoardURLs.Count then begin
1683     for i := FBoardURLs.Count to oldcount do begin
1684     ini.DeleteKey('URL',IntToStr(i+1));
1685     end;
1686     end;
1687 h677 1.11 ini.UpdateFile;
1688     finally
1689     ini.Free;
1690     end;
1691     end;
1692 hi_ 1.1
1693 yoffy 1.28 {$R-}
1694 hi_ 1.1 //???鴻????????????????/span>
1695     function TSetting.GetBBSColumnWidth(index: Integer): Integer;
1696     begin
1697     Result := IfThen(index in [0..Length(FBBSColumnWidth) - 1], FBBSColumnWidth[index], 0);
1698     end;
1699    
1700     function TSetting.GetCategoryColumnWidth(index: Integer): Integer;
1701     begin
1702     Result := IfThen(index in [0..Length(FCategoryColumnWidth) - 1], FCategoryColumnWidth[index], 0);
1703     end;
1704    
1705     function TSetting.GetBoardColumnWidth(index: Integer): Integer;
1706     begin
1707     Result := IfThen(index in [0..Length(FBoardColumnWidth) - 1], FBoardColumnWidth[index], 0);
1708     end;
1709 yoffy 1.28 {$IFDEF DEBUG}
1710     {$R+}
1711     {$ENDIF}
1712 hi_ 1.1
1713     procedure TSetting.SetBBSColumnWidth(index: Integer; value: Integer);
1714     begin
1715     if index in [0..Length(FBBSColumnWidth) - 1] then
1716     FBBSColumnWidth[index] := value;
1717     end;
1718    
1719     procedure TSetting.SetCategoryColumnWidth(index: Integer; value: Integer);
1720     begin
1721     if index in [0..Length(FCategoryColumnWidth) - 1] then
1722     FCategoryColumnWidth[index] := value;
1723     end;
1724    
1725     procedure TSetting.SetBoardColumnWidth(index: Integer; value: Integer);
1726     begin
1727     if index in [0..Length(FBoardColumnWidth) - 1] then
1728     FBoardColumnWidth[index] := value;
1729     end;
1730    
1731     function TSetting.GetSoundCount: Integer;
1732     begin
1733     Result := Length(SOUND_NAME);
1734     end;
1735    
1736     function TSetting.GetSoundName(Index: Integer): string;
1737     begin
1738     if (Index < GetSoundCount) and (Index >= 0) then
1739     Result := SOUND_NAME[Index].Name
1740     else
1741     Result := '';
1742     end;
1743    
1744     function TSetting.GetSoundViewName(Index: Integer): string;
1745     begin
1746     if (Index < GetSoundCount) and (Index >= 0) then
1747     Result := SOUND_NAME[Index].ViewName
1748     else
1749     Result := '';
1750     end;
1751    
1752     function TSetting.GetSoundFileName(Index: Integer): string;
1753     begin
1754     if (Index < GetSoundCount) and (Index >= 0) then
1755     Result := SOUND_NAME[Index].FileName
1756     else
1757     Result := '';
1758     end;
1759    
1760     procedure TSetting.SetSoundFileName(Index: Integer; value: string);
1761     begin
1762     if (Index < GetSoundCount) and (Index >= 0) then
1763     SOUND_NAME[Index].FileName := value;
1764     end;
1765    
1766     function TSetting.FindSoundFileName(Name: string): string;
1767     var
1768     i: Integer;
1769     begin
1770     for i := 0 to GetSoundCount - 1 do begin
1771     if SoundName[i] = Name then begin
1772     Result := SoundFileName[i];
1773     Exit;
1774     end;
1775     end;
1776     Result := '';
1777     end;
1778    
1779     function TSetting.Encrypt(s: string): string;
1780     var
1781     cryptObj: THogeCryptAuto;
1782     inputStream, outputStream: TStringStream;
1783     begin
1784     inputStream := TStringStream.Create(s);
1785     outputStream := TStringStream.Create('');
1786     cryptObj := THogeCryptAuto.Create;
1787     try
1788     // ???桁??
1789     cryptObj.Encrypt(inputStream, GIKO_ENCRYPT_TEXT, outputStream);
1790    
1791     // ???ゃ?????????у?荀?????????????鴻???????
1792     Result := HogeBase64Encode(outputStream.DataString);
1793     finally
1794     cryptObj.Free;
1795     outputStream.Free;
1796     inputStream.Free;
1797     end;
1798     end;
1799    
1800     function TSetting.Decrypt(s: string): string;
1801     var
1802     cryptObj: THogeCryptAuto;
1803     inputStream, outputStream: TStringStream;
1804     begin
1805     try
1806     inputStream := TStringStream.Create(HogeBase64Decode(s));
1807     except
1808     Result := '';
1809     Exit;
1810     end;
1811     outputStream := TStringStream.Create('');
1812     cryptObj := THogeCryptAuto.Create;
1813     try
1814     // 緇??/span>
1815     cryptObj.Decrypt(inputStream, GIKO_ENCRYPT_TEXT, outputStream);
1816     Result := outputStream.DataString;
1817     finally
1818     cryptObj.Free;
1819     outputStream.Free;
1820     inputStream.Free;
1821     end;
1822     end;
1823    
1824     function TSetting.GetMainCoolSet(Index: Integer): TCoolSet;
1825     begin
1826     if Index in [0..MAIN_COOLBAND_COUNT - 1] then
1827     Result := FMainCoolBar[Index]
1828     else begin
1829     Result.FCoolID := -1;
1830     Result.FCoolWidth := -1;
1831     Result.FCoolBreak := False;
1832     end;
1833     end;
1834    
1835     function TSetting.GetBoardCoolSet(Index: Integer): TCoolSet;
1836     begin
1837     if Index in [0..LIST_COOLBAND_COUNT - 1] then
1838     Result := FListCoolBar[Index]
1839     else begin
1840     Result.FCoolID := -1;
1841     Result.FCoolWidth := -1;
1842     Result.FCoolBreak := False;
1843     end;
1844     end;
1845    
1846     function TSetting.GetBrowserCoolSet(Index: Integer): TCoolSet;
1847     begin
1848     if Index in [0..BROWSER_COOLBAND_COUNT - 1] then
1849     Result := FBrowserCoolBar[Index]
1850     else begin
1851     Result.FCoolID := -1;
1852     Result.FCoolWidth := -1;
1853     Result.FCoolBreak := False;
1854     end;
1855     end;
1856    
1857     procedure TSetting.SetMainCoolSet(Index: Integer; CoolSet: TCoolSet);
1858     begin
1859     if Index in [0..MAIN_COOLBAND_COUNT - 1] then
1860     FMainCoolBar[Index] := CoolSet;
1861     end;
1862    
1863     procedure TSetting.SetBoardCoolSet(Index: Integer; CoolSet: TCoolSet);
1864     begin
1865     if Index in [0..LIST_COOLBAND_COUNT - 1] then
1866     FListCoolBar[Index] := CoolSet;
1867     end;
1868    
1869     procedure TSetting.SetBrowserCoolSet(Index: Integer; CoolSet: TCoolSet);
1870     begin
1871     if Index in [0..BROWSER_COOLBAND_COUNT - 1] then
1872     FBrowserCoolBar[Index] := CoolSet;
1873     end;
1874    
1875 h677 1.11 //url.ini????????????????????
1876     procedure TSetting.MakeURLIniFile();
1877     var
1878     ini: TMemIniFile;
1879     begin
1880     ini := TMemIniFile.Create(GetBoardURLFileName());
1881     try
1882 yoffy 1.14 ini.WriteInteger('URL','count',2);
1883     ini.WriteInteger('URL','selected',2);
1884     ini.WriteString('URL','1',DEFAULT_2CH_BOARD_URL1);
1885     ini.WriteString('URL','2',DEFAULT_2CH_BOARD_URL2);
1886 h677 1.11 ini.UpdateFile;
1887     finally
1888     ini.Free;
1889     end;
1890 yoffy 1.14 end;
1891    
1892     (*************************************************************************
1893     *???若?????<?ゃ??????緇?鐚????刻????<?ゃ????鐚?
1894     *************************************************************************)
1895     function TSetting.GetBoardFileName: string;
1896     begin
1897     Result := GetAppDir + CONFIG_DIR_NAME + '\' + BOARD_FILE_NAME;
1898     end;
1899    
1900     (*************************************************************************
1901     *???若?????<?ゃ??????緇?鐚????刻????<?ゃ????鐚?
1902     *************************************************************************)
1903     function TSetting.GetCustomBoardFileName: string;
1904     begin
1905     Result := GetAppDir + CONFIG_DIR_NAME + '\' + CUSTOMBOARD_FILE_NAME;
1906 yoffy 1.18 end;
1907    
1908     (*************************************************************************
1909     *???若?????c??????????
1910     *************************************************************************)
1911     function TSetting.GetBoardDir: string;
1912     begin
1913     Result := GetAppDir + CONFIG_DIR_NAME + '\' + BOARD_DIR_NAME + '\';
1914 yoffy 1.14 end;
1915    
1916     (*************************************************************************
1917     *???潟???????????????弱????緇?
1918     *************************************************************************)
1919     function TSetting.GetHtmlTempFileName: string;
1920     begin
1921     Result := TEMP_FOLDER;
1922     end;
1923    
1924    
1925     (*************************************************************************
1926     *絎?茵????<?ゃ????????????緇?
1927     *************************************************************************)
1928     function TSetting.GetAppDir: string;
1929     begin
1930     Result := ExtractFilePath(Application.ExeName);
1931     end;
1932    
1933     (*************************************************************************
1934     *TempHtml???<?ゃ??????緇?鐚????刻????<?ゃ????鐚?
1935     *************************************************************************)
1936     function TSetting.GetTempFolder: string;
1937     begin
1938     Result := GetAppDir + TEMP_FOLDER;
1939     end;
1940    
1941     (*************************************************************************
1942     *sent.ini???<?ゃ??????緇?鐚????刻????<?ゃ????鐚?
1943     *************************************************************************)
1944     function TSetting.GetSentFileName: string;
1945     begin
1946     Result := GetAppDir + SENT_FILE_NAME;
1947     end;
1948    
1949     (*************************************************************************
1950     *outbox.ini???<?ゃ??????緇?鐚????刻????<?ゃ????鐚?
1951     *************************************************************************)
1952     function TSetting.GetOutBoxFileName: string;
1953     begin
1954     Result := GetAppDir + OUTBOX_FILE_NAME;
1955     end;
1956    
1957     (*************************************************************************
1958     *Config??????????緇?
1959     *************************************************************************)
1960     function TSetting.GetConfigDir: string;
1961     begin
1962     Result := IncludeTrailingPathDelimiter(GetAppDir + CONFIG_DIR_NAME);
1963     end;
1964    
1965     function TSetting.GetStyleSheetDir: string;
1966     begin
1967     Result := IncludeTrailingPathDelimiter(GetConfigDir + CSS_DIR_NAME);
1968     end;
1969    
1970     function TSetting.GetSkinDir: string;
1971     begin
1972     Result := IncludeTrailingPathDelimiter(GetConfigDir + SKIN_DIR_NAME);
1973     end;
1974    
1975     function TSetting.GetSkinHeaderFileName: string;
1976     begin
1977     Result := CSSFileName + SKIN_HEADER_FILE_NAME;
1978     end;
1979    
1980     function TSetting.GetSkinFooterFileName: string;
1981     begin
1982     Result := CSSFileName + SKIN_FOOTER_FILE_NAME;
1983     end;
1984    
1985     function TSetting.GetSkinNewResFileName: string;
1986     begin
1987     Result := CSSFileName + SKIN_NEWRES_FILE_NAME;
1988     end;
1989    
1990     function TSetting.GetSkinResFileName: string;
1991     begin
1992     Result := CSSFileName + SKIN_RES_FILE_NAME;
1993     end;
1994    
1995     function TSetting.GetSkinBookmarkFileName: string;
1996     begin
1997     Result := CSSFileName + SKIN_BOOKMARK_FILE_NAME;
1998     end;
1999    
2000     function TSetting.GetSkinNewmarkFileName: string;
2001     begin
2002     Result := CSSFileName + SKIN_NEWMARK_FILE_NAME;
2003 yoffy 1.15 end;
2004    
2005     function TSetting.GetNGWordsDir: string;
2006     begin
2007 yoffy 1.16 Result := IncludeTrailingPathDelimiter(GetConfigDir + NGWORDs_DIR_NAME);
2008     end;
2009    
2010     function TSetting.GetBoardPlugInDir: string;
2011     begin
2012     Result := IncludeTrailingPathDelimiter(GetConfigDir + BOARD_PLUGIN_DIR_NAME);
2013 yoffy 1.14 end;
2014    
2015     procedure TSetting.SetUseCSS( value: Boolean );
2016     begin
2017    
2018     FUseCSS := value;
2019    
2020     FUseSkin :=
2021     UseCSS and
2022     (Pos( GetSkinDir, CSSFileName ) > 0) and
2023     FileExists( GetSkinHeaderFileName );
2024    
2025     end;
2026    
2027     procedure TSetting.SetCSSFileName( fileName: string );
2028     begin
2029    
2030     FCSSFileName := fileName;
2031    
2032     FUseSkin :=
2033     UseCSS and
2034     (Pos( GetSkinDir, CSSFileName ) > 0) and
2035     FileExists( GetSkinHeaderFileName );
2036    
2037 h677 1.11 end;
2038 hi_ 1.1
2039 h677 1.31 function TSetting.GetSambaFileName: string;
2040     begin
2041     Result := GetAppDir + SAMBATIME_FILE_NAME;
2042     end;
2043 h677 1.35 //?炊?贋?育?ゅ??????眼?????鴻??篆?絖????<?ゃ??/span>
2044     function TSetting.GetIgnoreFileName: string;
2045     begin
2046     Result := GetConfigDir + IGNORE_FILE_NAME;
2047     end;
2048    
2049 yoffy 1.74 //! ?????鴻?吾?с?鴻???c?若???<?ゃ??????/span>
2050     function TSetting.GetGestureFileName: string;
2051     begin
2052     Result := GetConfigDir + GESTURE_FILE_NAME;
2053     end;
2054    
2055 yoffy 1.79 //! ?鴻???????c???水?膺?絮ユ????<?ゃ??????/span>
2056     function TSetting.GetSpamFilterFileName: string;
2057     begin
2058     Result := GetConfigDir + SPAMFILTER_FILE_NAME;
2059     end;
2060    
2061 hi_ 1.1 end.
2062 h677 1.35
2063 hi_ 1.1

Back to OSDN">Back to OSDN
ViewVC Help
Powered by ViewVC 1.1.26