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.70 - (hide annotations) (download) (as text)
Sun Sep 19 05:43:09 2004 UTC (19 years, 7 months ago) by h677
Branch: MAIN
CVS Tags: v1_49_0_545
Changes since 1.69: +7 -7 lines
File MIME type: text/x-pascal
スレ一覧の板で最終更新日時をカラムに追加。
スレ取得時の音と描画ずれるのの対策

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

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