OSDN Git Service

SearchLog Dialog implemented
[winbottle/winbottle.git] / bottleclient / SstpBottle.dpr
1 {*******************************************************}
2 {                                                       }
3 {       SSTP Bottle Client                              }
4 {                                                       }
5 {       Copyright (C) 2001-2003 naru/Mikage Sawatari    }
6 {                                                       }
7 {*******************************************************}
8
9
10 (********************************)
11 (* \82±\82ê\82Í\95s\8dK\82Ì\83\\81[\83X\82Å\82·\81B     *)
12 (* \82±\82Ì\83\\81[\83X\82ð\8c©\82½\90l\82Í\81A       *)
13 (* \88ê\8fT\8aÔ\88È\93à\82É\82U\82Â\82Ì\83o\83O\82ð     *)
14 (* \8eæ\82ç\82È\82¢\82Æ\8e\80\82É\82Ü\82·\81B         *)
15 (********************************)
16
17 { http://bottle.mikage.to/viewlog2.cgi?around=3eb34d9300000001 }
18
19 program SstpBottle;
20
21 {%ToDo 'SstpBottle.todo'}
22
23 uses
24   Forms,
25   MainForm in 'MainForm.pas' {frmSender},
26   BRegExp in 'BRegExp.pas',
27   BottleDef in 'BottleDef.pas',
28   ConstEditor in 'ConstEditor.pas' {frmConstEditor},
29   SendConfirm in 'SendConfirm.pas' {frmConfirmSend},
30   SettingForm in 'SettingForm.pas' {frmSetting},
31   LogForm in 'LogForm.pas' {frmLog},
32   HeadValue in 'HeadValue.pas',
33   ChannelListForm in 'ChannelListForm.pas' {frmChannelList},
34   MessageBox in 'MessageBox.pas' {frmMessageBox},
35   Logs in 'Logs.pas',
36   HttpThread in 'HttpThread.pas',
37   LogDownload in 'LogDownload.pas' {frmLogDownload},
38   ColorSettingFrame in 'ColorSettingFrame.pas' {frmColorSetting: TFrame},
39   ScriptConsts in 'ScriptConsts.pas',
40   BottleChainEvent in 'BottleChainEvent.pas',
41   BottleChainRule in 'BottleChainRule.pas',
42   BottleChainListFrame in 'BottleChainListFrame.pas' {frmBottleChainList: TFrame},
43   BottleChainRuleEditor in 'BottleChainRuleEditor.pas' {frmBottleChainRuleEditor},
44   MinMaxEditor in 'MinMaxEditor.pas' {frmMinMaxEditor},
45   StrListEditor in 'StrListEditor.pas' {frmStrListEditor},
46   MultipleChoiceEditor in 'MultipleChoiceEditor.pas' {frmMultipleChoiceEditor},
47   SakuraSeekerInstance in 'SakuraSeekerInstance.pas',
48   FMOExplorer in 'FMOExplorer.pas' {frmFMOExplorer},
49   OpenFileEditor in 'OpenFileEditor.pas' {frmOpenFileEditor},
50   BottleSstp in 'BottleSstp.pas',
51   SurfacePreview in 'SurfacePreview.pas' {frmSurfacePreview},
52   SppList in 'SppList.pas',
53   TalkShowFrame in 'TalkShowFrame.pas' {frmTalkShow: TFrame},
54   EditorTalkShow in 'EditorTalkShow.pas' {frmEditorTalkShow},
55   ProgressWindow in 'ProgressWindow.pas' {frmProgressWindow},
56   Plugins in 'Plugins.pas',
57   SpecialCharEditor in 'SpecialCharEditor.pas' {frmSpecialCharEditor},
58   HtmlOutputConfig in 'HtmlOutputConfig.pas' {frmHTMLOutputConfig},
59   HtmlOutputProgress in 'HtmlOutputProgress.pas' {frmHTMLOutputProgress},
60   SearchLog in 'SearchLog.pas' {frmSearchLog};
61
62 // \8c^\95t\82«\92è\90\94\82ð\95Ï\8dX\82Å\82«\82é\82æ\82¤\82É\82·\82é\83R\83\93\83p\83C\83\89\83I\83v\83V\83\87\83\93
63 // \88ê\95\94\82Ì\83R\83\93\83|\81[\83l\83\93\83g\82É\82±\82ê\82ª\95K\97v
64 {$J+}
65
66 {$R *.RES}
67
68 // WindowsXP\82ÌLuna\91Î\89\9e\81B\82½\82¾\82µDelphi7\82Ì\82Ý\81B
69 // Delphi6\82È\82ç\81A\82à\82µ\82©\82µ\82½\82ç$R\82µ\82Ä\82à\93®\82­\82©\82à\82µ\82ê\82Ü\82¹\82ñ\82ª\81A
70 // Delphi5Pro\82¾\82Æ ListView \82Ì\83J\83\89\83\80\83N\83\8a\83b\83N\82È\82Ç\82Å\95s\8bï\8d\87\82ª\8fo\82Ü\82·\82Ì\82Å\83_\83\81\82Å\82·\81B
71 {$IFDEF CONDITIONALEXPRESSIONS}
72   {$IF Declared(CompilerVersion)}
73       {$IF CompilerVersion >= 15.0} // Delphi7\88È\8fã\82È\82ç
74         {$R WindowsXP.RES}
75       {$IFEND}
76   {$IFEND}
77 {$ENDIF}
78
79 begin
80   // MemChk;
81   Application.Initialize;
82   Application.Title := 'SSTP Bottle Client';
83   Application.ShowMainForm := true;
84   Application.CreateForm(TfrmSender, frmSender);
85   Application.CreateForm(TfrmLog, frmLog);
86   Application.CreateForm(TfrmMessageBox, frmMessageBox);
87   Application.CreateForm(TfrmSurfacePreview, frmSurfacePreview);
88   if not Application.Terminated then frmSender.Show;
89   Application.Run;
90 end.