OSDN Git Service

HTMLを除く保存処理で、保存確認フラグをfalseに。
[winbottle/winbottle.git] / bottleclient / LogForm.pas
1 unit LogForm;
2
3 interface
4
5 uses
6   Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
7   ComCtrls, ToolWin, StdCtrls, ExtCtrls, SsParser, BottleDef, Menus,
8   Clipbrd, Logs, ShellAPI, Commctrl, DirectSstp, Contnrs, StrUtils,
9   TalkShowFrame, SppList, HtmlOutputConfig, HtmlOutputProgress,
10   SearchLog, IniFiles, BRegExp, RegexUtils;
11
12 type
13   // \83\8d\83O\82Ì\95Û\91\95û\96@
14   TSaveLogType = (stLog, stLogWithChannels, stText, stXML);
15
16   // \83\8a\83X\83g\83r\83\85\81[\82Ì\83X\83N\83\8d\81[\83\8b\95û\8cü
17   TLVScrollDir = (lvScrollUp, lvScrollDown);
18
19   TfrmLog = class(TForm)
20     ToolBar: TToolBar;
21     tbtnClear: TToolButton;
22     pnlUpper: TPanel;
23     SsParser: TSsParser;
24     StatusBar: TStatusBar;
25     tbtnSaveLog: TToolButton;
26     PopupMenuPreview: TPopupMenu;
27     mnPopCopy: TMenuItem;
28     tbtnVoteMessage: TToolButton;
29     PopupMenuListView: TPopupMenu;
30     mnPopUpVoteMessage: TMenuItem;
31     SaveDialog: TSaveDialog;
32     pnlPanel: TPanel;
33     Splitter: TSplitter;
34     mnPopUpCopyScript: TMenuItem;
35     PopupMenuSaveLog: TPopupMenu;
36     mnSaveLog: TMenuItem;
37     mnSaveLogChannel: TMenuItem;
38     mnSaveLogScript: TMenuItem;
39     mnSaveLogXML: TMenuItem;
40     ToolButton1: TToolButton;
41     mnJumpURL: TMenuItem;
42     mnPopUpAgreeMessage: TMenuItem;
43     tbtnAgreeMessage: TToolButton;
44     ToolButton2: TToolButton;
45     tbtnPreviewStyle: TToolButton;
46     PopupMenuPreviewStyle: TPopupMenu;
47     mnPreviewStyleConversation: TMenuItem;
48     mnPreviewStyleScript: TMenuItem;
49     mnPreviewStyleScriptWithLineBreak: TMenuItem;
50     Panel1: TPanel;
51     tabBottleLog: TTabControl;
52     lvwLog: TListView;
53     tbtnDownloadLog: TToolButton;
54     PopupMenuTab: TPopupMenu;
55     mnCloseTab: TMenuItem;
56     tbtnFindBottle: TToolButton;
57     tbtnOpenLog: TToolButton;
58     OpenDialog: TOpenDialog;
59     tbtnInsertCue: TToolButton;
60     mnInsertCue: TMenuItem;
61     PopupMenuListPreviewStyle: TPopupMenu;
62     mnListPreviewStyleNormal: TMenuItem;
63     mnListPreviewStyleTagStripped: TMenuItem;
64     tbtnListPreviewStyle: TToolButton;
65     mnListPreviewStyleNoColor: TMenuItem;
66     SsParserForTalkShow: TSsParser;
67     mnPreviewStyleConversationImage: TMenuItem;
68     pnlPreviewArea: TPanel;
69     TalkShowFrame: TfrmTalkShow;
70     edtScript: TRichEdit;
71     tbtnSendEditor: TToolButton;
72     mnSendEditor: TMenuItem;
73     timScrollTimer: TTimer;
74     mnChangeTabName: TMenuItem;
75     N1: TMenuItem;
76     N2: TMenuItem;
77     mnDeleteLogItem: TMenuItem;
78     mnTabSaveXMLLog: TMenuItem;
79     mnSaveHTML: TMenuItem;
80     mnPopupCopyGhost: TMenuItem;
81     procedure tbtnClearClick(Sender: TObject);
82     procedure FormCreate(Sender: TObject);
83     procedure lvwLogChange(Sender: TObject; Item: TListItem;
84       Change: TItemChange);
85     procedure lvwLogDblClick(Sender: TObject);
86     procedure lvwLogKeyPress(Sender: TObject; var Key: Char);
87     procedure FormDestroy(Sender: TObject);
88     procedure lvwLogClick(Sender: TObject);
89     procedure mnSaveLogClick(Sender: TObject);
90     procedure lvwLogColumnClick(Sender: TObject; Column: TListColumn);
91     procedure mnPopUpCopyScriptClick(Sender: TObject);
92     procedure mnSaveLogChannelClick(Sender: TObject);
93     procedure mnSaveLogScriptClick(Sender: TObject);
94     procedure mnSaveLogXMLClick(Sender: TObject);
95     procedure lvwLogData(Sender: TObject; Item: TListItem);
96     procedure PopupMenuListViewPopup(Sender: TObject);
97     procedure lvwLogCustomDrawItem(Sender: TCustomListView;
98       Item: TListItem; State: TCustomDrawState; var DefaultDraw: Boolean);
99     procedure PopupMenuPreviewStylePopup(Sender: TObject);
100     procedure mnPreviewStyleClick(Sender: TObject);
101     procedure tbtnPreviewStyleClick(Sender: TObject);
102     procedure tabBottleLogChange(Sender: TObject);
103     procedure tabBottleLogChanging(Sender: TObject;
104       var AllowChange: Boolean);
105     procedure tabBottleLogContextPopup(Sender: TObject; MousePos: TPoint;
106       var Handled: Boolean);
107     procedure mnCloseTabClick(Sender: TObject);
108     procedure tbtnFindBottleClick(Sender: TObject);
109     procedure tbtnOpenLogClick(Sender: TObject);
110     procedure tabBottleLogMouseDown(Sender: TObject; Button: TMouseButton;
111       Shift: TShiftState; X, Y: Integer);
112     procedure tabBottleLogDragOver(Sender, Source: TObject; X, Y: Integer;
113       State: TDragState; var Accept: Boolean);
114     procedure tabBottleLogDragDrop(Sender, Source: TObject; X, Y: Integer);
115     procedure tabBottleLogEndDrag(Sender, Target: TObject; X, Y: Integer);
116     procedure lvwLogDrawItem(Sender: TCustomListView; Item: TListItem;
117       Rect: TRect; State: TOwnerDrawState);
118     procedure mnListPreviewStyleClick(Sender: TObject);
119     procedure tbtnListPreviewStyleClick(Sender: TObject);
120     procedure PopupMenuListPreviewStylePopup(Sender: TObject);
121     procedure lvwLogDragOver(Sender, Source: TObject; X, Y: Integer;
122       State: TDragState; var Accept: Boolean);
123     procedure lvwLogDragDrop(Sender, Source: TObject; X, Y: Integer);
124     procedure timScrollTimerTimer(Sender: TObject);
125     procedure mnChangeTabNameClick(Sender: TObject);
126     procedure lvwLogStartDrag(Sender: TObject;
127       var DragObject: TDragObject);
128     procedure lvwLogEndDrag(Sender, Target: TObject; X, Y: Integer);
129     procedure mnTabSaveXMLLogClick(Sender: TObject);
130     procedure mnSaveHTMLClick(Sender: TObject);
131     procedure mnPopupCopyGhostClick(Sender: TObject);
132   private
133     { Private \90é\8c¾ }
134     FLastScript: String; //\83X\83N\83\8a\83v\83g\8dÄ\95`\89æ\97}\90§\97p
135     FBottleLogList: TObjectList;
136     //
137     FDragTabIndex: integer; //\83^\83u\83h\83\89\83b\83O\83h\83\8d\83b\83v\8aÖ\98A
138     FDragTabDest: integer;  //\83h\83\8d\83b\83v\82·\82é\88Ê\92u(\82·\82®\89E\82É\82­\82é\83^\83u\82Ì\83C\83\93\83f\83b\83N\83X)
139     //
140     // \83\8a\83X\83g\83r\83\85\81[\83h\83\89\83b\83O\83h\83\8d\83b\83v\8aÖ\98A
141     FLVScrollDir: TLVScrollDir; // \83X\83N\83\8d\81[\83\8b\95û\8cü
142     FLVDragDest: integer;    //\83h\83\8d\83b\83v\82·\82é\88Ê\92u(\82·\82®\89º\82É\82­\82é\83A\83C\83e\83\80\82ÌIndex)
143     //
144     procedure UpdateScript(const Script: String);
145     procedure UpdateScriptConversationColor(const Script: String);
146     procedure UpdateScriptScript(const Script: String);
147     procedure mnURLClick(Sender: TObject);
148     procedure ExtractURLs(Script: String; Result: TStrings);
149     function GetDefaultFileName(const Name: String; const Ext: String): String;
150     function BottleLogTitled(const LogName: String): TBottleLogList;
151     procedure DrawSingleLineScript(LogItem: TLogItem; Rect: TRect;
152       Item: TListItem);
153     procedure PreviewStyleChange;
154     procedure DrawListViewDragBorder(const Rect: TRect);
155     function DoSaveLogXML(Log: TBottleLogList): integer;
156     procedure DoCloseTab(const Index: integer);
157     function DoSearchLog(Condition: TSearchCond): TBottleLogList;
158     procedure SearchLogIndivisual(Condition: TSearchCond;
159       LogList, Result: TBottleLogList; UntilIndex: integer = -1);
160     function CheckLogSave(const Index: integer): integer;
161   protected
162     procedure CreateParams(var Params: TCreateParams); override;
163   public
164     { Public \90é\8c¾ }
165     function SelectedBottleLog: TBottleLogList;
166     property BottleLogList: TObjectList read FBottleLogList;
167     procedure AddCurrentScriptLog(const LogName, Script, Channel, MID, Ghost: String;
168       const LogTime: TDateTime; const Vote, Agree: integer);
169     procedure AddCurrentSystemLog(const LogName, MessageString: String);
170     procedure VoteLog(const MID: String; const Vote: integer);
171     procedure AgreeLog(const MID: String; const Agree: integer);
172     procedure SetBottleState(const MID: String; State: TLogState);
173     procedure AllBottleOpened;
174     procedure LogLoaded(Sender: TObject);
175     procedure LogLoadFailure(Sender: TObject; const Message: String);
176     procedure LogLoadWork(Sender: TObject);
177     procedure HTMLOutputWork(Sender: TObject; const Count: integer;
178       var Canceled: boolean);
179     procedure UpdateTab;
180     procedure UpdateWindow;
181     procedure SelAndFocusMessage(const MID: String);
182     function CheckLog(Sender: TObject): integer;
183   end;
184
185   TBottleLogDragObject = class(TDragControlObjectEx)
186   private
187     FBottleLogList: TBottleLogList;
188     FLogItem: TLogItem;
189     procedure SetBottleLogList(const Value: TBottleLogList);
190     procedure SetLogItem(const Value: TLogItem);
191   protected
192     function GetDragImages: TDragImageList; override;
193   public
194     property BottleLogList: TBottleLogList read FBottleLogList write SetBottleLogList;
195     property LogItem: TLogItem read FLogItem write SetLogItem;
196   end;
197
198 var
199   frmLog: TfrmLog;
200
201 const
202   IconBottle    = 17;
203   IconOpened    = 30;
204   IconPlaying   = 31;
205   IconSystemLog = 26;
206   IconURL       = 43;
207   SubChannel    = 0;
208   SubGhost      = 1;
209   SubVotes      = 2;
210   SubAgrees     = 3;
211   SubScript     = 4;
212
213 implementation
214
215 uses MainForm;
216
217 {$R *.DFM}
218
219 { TfrmLog }
220
221 procedure TfrmLog.AddCurrentScriptLog(const LogName, Script, Channel, MID, Ghost: String;
222   const LogTime: TDateTime; const Vote, Agree: integer);
223 var Sel: integer;
224 begin
225   BottleLogTitled(LogName).AddScriptLog(Script, Channel, MID, Ghost, LogTime, Vote, Agree);
226   BottleLogTitled(LogName).LogModified := true; // \82±\82Ì\83\8a\83X\83g\82Í\95Ï\8dX\82³\82ê\82½
227   if SelectedBottleLog <> BottleLogTitled(LogName) then Exit;
228   lvwLog.OnChange := nil; //\83C\83x\83\93\83g\94­\90¶(\82¢\82ë\82¢\82ë\8dÄ\95`\89æ\82ª\8bN\82«\82é)\82Ì\97}\90§
229   if lvwLog.Selected <> nil then Sel := lvwLog.Selected.Index else Sel := -1;
230   lvwLog.Items.Count := SelectedBottleLog.Count;
231   UpdateWindow;
232   if Sel >= 0 then begin
233     lvwLog.Selected := lvwLog.Items[Sel + 1];
234     lvwLog.Selected.Focused := true;
235   end;
236   if not lvwLog.Focused then
237     ListView_Scroll(lvwLog.Handle, 0, High(integer));
238   lvwLog.OnChange := lvwLogChange;
239 end;
240
241 procedure TfrmLog.AddCurrentSystemLog(const LogName, MessageString: String);
242 var Sel: integer;
243 begin
244   BottleLogTitled(LogName).AddSystemLog(MessageString);
245   if SelectedBottleLog <> BottleLogTitled(LogName) then Exit;
246   lvwLog.OnChange := nil;
247   if lvwLog.Selected <> nil then Sel := lvwLog.Selected.Index else Sel := -1;
248   lvwLog.Items.Count := SelectedBottleLog.Count;
249   UpdateWindow;
250   if Sel >= 0 then begin
251     lvwLog.Selected := lvwLog.Items[Sel + 1];
252     lvwLog.Selected.Focused := true;
253   end;
254   if not lvwLog.Focused then
255     ListView_Scroll(lvwLog.Handle, 0, High(integer));
256   lvwLog.OnChange := lvwLogChange;
257 end;
258
259
260
261 procedure TfrmLog.tbtnClearClick(Sender: TObject);
262 begin
263   if SelectedBottleLog = nil then Exit;
264   DoCloseTab(tabBottleLog.TabIndex);
265 end;
266
267 procedure TfrmLog.FormCreate(Sender: TObject);
268 var i: integer;
269 begin
270   FLVDragDest := -1; // \83\8a\83X\83g\83r\83\85\81[\82Ì\83h\83\89\83b\83O\92\86\82Å\82Í\82È\82¢
271   FBottleLogList := TObjectList.Create;
272
273   SsParser.TagPattern.Assign(frmSender.SsParser.TagPattern);
274   SsParser.MetaPattern.Assign(frmSender.SsParser.MetaPattern);
275
276   with Pref.LogWindowPosition do begin
277     Self.Left   := Left;
278     Self.Top    := Top;
279     Self.Width  := Right - Left + 1;
280     Self.Height := Bottom - Top + 1;
281   end;
282   lvwLog.DoubleBuffered := true;
283   pnlPreviewArea.Height := Pref.LogWindowDividerPos;
284
285   i := 0;
286   while Token(Pref.LogWindowColumnWidth, ',', i) <> '' do begin
287     lvwLog.Columns[i].Width := StrToIntDef(Token(Pref.LogWindowColumnWidth, ',', i), 100);
288     Inc(i);
289   end;
290
291   SsParserForTalkShow.TagPattern.Assign(SsParser.TagPattern);
292   SsParserForTalkShow.MetaPattern.Assign(SsParser.MetaPattern);
293   SsParserForTalkShow.EscapeInvalidMeta := false;
294   SsParserForTalkShow.LeaveEscape := false;
295   TalkShowFrame.SsParser := self.SsParserForTalkShow;
296
297   TalkShowFrame.SetPreviewFont(edtScript.Font);
298   TalkShowFrame.PrevControl := lvwLog;
299
300   PreviewStyleChange;
301   UpdateWindow; // Reset window color and enabled status of some buttons
302 end;
303
304 procedure TfrmLog.FormDestroy(Sender: TObject);
305 var i: integer;
306     WidthStr: String;
307 begin
308   WidthStr := '';
309   for i := 0 to lvwLog.Columns.Count-1 do begin
310     if i > 0 then WidthStr := WidthStr + ',';
311     WidthStr := WidthStr + IntToStr(lvwLog.Column[i].Width);
312   end;
313   Pref.LogWindowColumnWidth := WidthStr;
314
315   with Pref.LogWindowPosition do begin
316     Left   := Self.Left;
317     Top    := Self.Top;
318     Right  := Self.Left + Self.Width - 1;
319     Bottom := Self.Top + Self.Height - 1;
320   end;
321   Pref.LogWindowDividerPos := pnlPreviewArea.Height;
322
323   FreeAndNil(FBottleLogList);
324 end;
325
326 procedure TfrmLog.lvwLogChange(Sender: TObject; Item: TListItem;
327   Change: TItemChange);
328 var Script, Text: String;
329     Log: TLogItem;
330     Selected, IsNormalBottle: boolean;
331 begin
332   Selected := false;
333   IsNormalBottle := false;
334   if SelectedBottleLog <> nil then begin
335     if Change = ctState then begin
336       Script := '';
337       if lvwLog.Selected <> nil then begin
338         Selected := true;
339         StatusBar.Panels[0].Text := Format('%d/%d\8c\8f', [lvwLog.Selected.Index+1,
340           SelectedBottleLog.Count]);
341         Log := SelectedBottleLog.Bottles[lvwLog.Selected.Index];
342 //        if (Log.LogType = ltBottle) and not frmSender.Connecting then begin
343         if Log.LogType = ltBottle then begin
344           IsNormalBottle := true;
345           Script := Log.Script;
346           Text := Format('%d\83o\83C\83g/%d\95b - \83_\83u\83\8b\83N\83\8a\83b\83N\82Å\8dÄ\90¶',
347             [Length(Log.Script), frmSender.SsPlayTime.PlayTime(Log.Script) div 1000]);
348           StatusBar.Panels[1].Text := Text;
349           if Pref.LogWindowPreviewStyle = psImageConversation then
350             TalkShowFrame.View(Log)
351           else
352             UpdateScript(Script);
353         end else begin
354           StatusBar.Panels[1].Text := '';
355           UpdateScript(''); // \83\8d\83O\83v\83\8c\83r\83\85\81[\95\94\82ð\83N\83\8a\83A
356         end;
357       end else begin
358         StatusBar.Panels[0].Text := IntToStr(SelectedBottleLog.Count) + '\8c\8f';
359         StatusBar.Panels[1].Text := '';
360         UpdateScript(Script); // \83\8d\83O\83v\83\8c\83r\83\85\81[\95\94\83N\83\8a\83A
361       end;
362     end;
363     tbtnSaveLog.Enabled := lvwLog.Items.Count > 0;
364   end else begin
365     StatusBar.Panels[0].Text := '';
366     UpdateScript(''); // \83\8d\83O\83v\83\8c\83r\83\85\81[\95\94\83N\83\8a\83A
367   end;
368   frmSender.actVoteMessage.Enabled := Selected and IsNormalBottle;
369   frmSender.actAgreeMessage.Enabled := Selected and IsNormalBottle;
370   frmSender.actSendToEditor.Enabled := Selected and IsNormalBottle;
371   frmSender.actInsertCue.Enabled := Selected;
372   frmSender.actDeleteLogItem.Enabled := Selected;
373   mnPopUpCopyScript.Enabled := Selected and IsNormalBottle;
374   mnPopupCopyGhost.Enabled := Selected and IsNormalBottle;
375 end;
376
377 procedure TfrmLog.lvwLogDblClick(Sender: TObject);
378 var Script, ErrorMes: String;
379     Log, CueItem: TLogItem;
380     Res: integer;
381 begin
382   if lvwLog.Selected = nil then
383     Exit;
384   Log := SelectedBottleLog.Bottles[lvwLog.Selected.Index];
385   if Log = nil then Exit;
386   if Log.LogType <> ltBottle then
387     Exit;
388   //\92P\91Ì\83A\83N\83V\83\87\83\93\82ª\97L\8cø\82Å\82 \82ê\82Î\83X\83N\83\8a\83v\83g\82Ì\95Ï\8a·\82µ\82È\82¢
389   if Pref.LogOneAction then
390   begin
391     Script :=  Log.Script;
392     ErrorMes := '';
393   end else
394     Script := frmSender.ScriptTransForSSTP(Log.Script, ErrorMes);
395
396   if ErrorMes <> '' then
397   begin
398     Res := MessageDlg('\96â\91è\82Ì\82 \82é\83X\83N\83\8a\83v\83g\82Å\82·\81B\8dÄ\90\82Å\82«\82Ü\82¹\82ñ\81B'#13#10+
399         ErrorMes + #13#10 +
400         '\8b­\90§\93I\82É\8dÄ\90\82µ\82Ü\82·\82©?'#13#10,
401         mtWarning, mbOkCancel, 0
402       );
403     if Res = mrCancel then
404       Exit;
405   end;
406
407   CueItem := TLogItem.Create(Log);
408   try
409     //\83A\83N\83V\83\87\83\93\82ª\97L\8cø\82Å\82 \82ê\82Î\92Ê\8fí\8f\88\97\9d\8fÈ\97ª
410     if Pref.LogOneAction then
411       //\8c^\95Ï\8a·\82Æ\8eó\90M
412       frmSender.BottleCnv(CueItem)
413     else
414     begin
415       //\83`\83\83\83\93\83l\83\8b\83S\81[\83X\83g\91Î\8dô
416       if CueItem.Ghost = '' then
417         if ChannelList.Channel[CueItem.Channel] <> nil then
418           CueItem.Ghost := ChannelList.Channel[CueItem.Channel].Ghost;
419       CueItem.Script := Script;
420       frmSender.BottleSstp.Unshift(CueItem);
421     end;
422   except
423     CueItem.Free;
424   end;
425 end;
426
427 procedure TfrmLog.UpdateScriptConversationColor(const Script: String);
428 var i: integer;
429     scr: String;
430     UnyuTalking, Talked, InSynchronized: boolean;
431 begin
432   scr := Script;
433   frmSender.DoTrans(scr, [toConvertURL]);
434   SsParser.LeaveEscape := false;
435   SsParser.InputString := scr;
436   UnyuTalking := false;
437   Talked := false; //'\h\u\h\u'\82Ì\82æ\82¤\82È\83X\83N\83\8a\83v\83g\82Å\8bó\82«\8ds\82ð\8dì\82ç\82È\82¢\82½\82ß\82Ì\91[\92u
438   InSynchronized := false;
439   edtScript.Text := '';
440   edtScript.Color := Pref.BgColor;
441   for i := 0 to SsParser.Count-1 do begin
442     if (SsParser[i] = '\_s') and not InSynchronized then begin
443       InSynchronized := true;
444       if Talked then begin
445         edtScript.SelText := #13#10;
446         Talked := false;
447       end;
448     end else if (SsParser[i] = '\_s') and InSynchronized then begin
449       InSynchronized := false;
450       if Talked then begin
451         edtScript.SelText := #13#10;
452         Talked := false;
453       end;
454     end;
455     if (SsParser[i] = '\u') and not UnyuTalking then begin
456       UnyuTalking := true;
457       if Talked then begin
458         edtScript.SelText := #13#10;
459         Talked := false;
460       end;
461     end;
462     if (SsParser[i] = '\h') and UnyuTalking then begin
463       UnyuTalking := false;
464       if Talked then begin
465         edtScript.SelText := #13#10;
466         Talked := false;
467       end;
468     end;
469     if SsParser.MarkUpType[i] = mtStr then begin
470       if InSynchronized then
471         edtScript.SelAttributes.Color := Pref.TalkColorS
472       else if UnyuTalking then
473         edtScript.SelAttributes.Color := Pref.TalkColorU
474       else
475         edtScript.SelAttributes.Color := Pref.TalkColorH;
476       edtScript.SelText := SsParser[i];
477       Talked := true;
478     end;
479     if SsParser.MarkUpType[i] = mtMeta then begin
480       edtScript.SelAttributes.Color := Pref.MetaWordColor;
481       edtScript.SelText := SsParser[i];
482       Talked := true;
483     end;
484   end;
485 end;
486
487 procedure TfrmLog.lvwLogKeyPress(Sender: TObject; var Key: Char);
488 begin
489   if Key = #13 then lvwLogDblClick(Sender);
490 end;
491
492 procedure TfrmLog.CreateParams(var Params: TCreateParams);
493 begin
494   inherited;
495   Params.ExStyle := Params.ExStyle or WS_EX_APPWINDOW;
496 end;
497
498 procedure TfrmLog.lvwLogClick(Sender: TObject);
499 begin
500   //\89E\83N\83\8a\83b\83N\82Å\83\81\83j\83\85\81[\8fo\82·\82Æ\82«\82É\94­\90\82·\82é\95s\8bï\8d\87\91Î\8dô
501   with lvwLog do
502     Selected := Selected;
503 end;
504
505 procedure TfrmLog.lvwLogColumnClick(Sender: TObject; Column: TListColumn);
506 var SortType: TBottleLogSortType;
507     SelectedMID: String;
508     SortColumn: integer;
509 begin
510   if SelectedBottleLog = nil then
511     Exit;
512   if lvwLog.Selected <> nil then
513     SelectedMID := SelectedBottleLog.Bottles[lvwLog.Selected.Index].MID
514   else
515     SelectedMID := '';
516
517   SortColumn := Column.Index;
518   case SortColumn-1 of
519     -1: SortType := stLogTime;
520     subChannel: SortType := stChannel;
521     subGhost:   SortType := stGhost;
522     subVotes:   SortType := stVote;
523     subAgrees:  SortType := stAgree;
524     subScript:  SortType := stScript;
525   else
526     SortType := stLogTime;
527   end;
528
529   SelectedBottleLog.SortBottles(SortType);
530   lvwLog.Invalidate;
531   if Length(SelectedMID) > 0 then
532     SelAndFocusMessage(SelectedMID);
533 end;
534
535
536 procedure TfrmLog.mnPopUpCopyScriptClick(Sender: TObject);
537 var
538   Log: TLogItem;
539   Clip: TClipBoard;
540 begin
541   Log := SelectedBottleLog.Bottles[frmLog.lvwLog.Selected.Index];
542   if Log = nil then Exit;
543   Clip := ClipBoard();
544   Clip.SetTextBuf(PChar(Log.Script));
545 end;
546
547 procedure TfrmLog.SetBottleState(const MID: String; State: TLogState);
548 var i: integer;
549     Bottle: TLogItem;
550 begin
551   for i := 0 to FBottleLogList.Count-1 do begin
552     Bottle := (FBottleLogList[i] as TBottleLogList).Bottle(MID);
553     if Bottle <> nil then begin
554       Bottle.State := State;
555       lvwLog.OnChange := nil;
556       lvwLog.Invalidate;
557       lvwLog.OnChange := lvwLogChange;
558     end;
559   end;
560 end;
561
562 procedure TfrmLog.mnSaveLogClick(Sender: TObject);
563 begin
564   if SelectedBottleLog = nil then Exit;
565   SaveDialog.FileName := GetDefaultFileName(SelectedBottleLog.Title, '.log');
566   SaveDialog.InitialDir := ExtractFileDir(Application.ExeName);
567   SaveDialog.DefaultExt := 'log';
568   SaveDialog.FilterIndex := 1;
569   if SaveDialog.Execute then
570     SelectedBottleLog.SaveToSstpLog(SaveDialog.FileName, false);
571 end;
572
573 procedure TfrmLog.mnSaveLogChannelClick(Sender: TObject);
574 begin
575   if SelectedBottleLog = nil then Exit;
576   SaveDialog.FileName := GetDefaultFileName(SelectedBottleLog.Title, '.log');
577   SaveDialog.InitialDir := ExtractFileDir(Application.ExeName);
578   SaveDialog.DefaultExt := 'log';
579   SaveDialog.FilterIndex := 1;
580   if SaveDialog.Execute then
581     SelectedBottleLog.SaveToSstpLog(SaveDialog.FileName, true);
582 end;
583
584 procedure TfrmLog.mnSaveLogScriptClick(Sender: TObject);
585 begin
586   if SelectedBottleLog = nil then Exit;
587   SaveDialog.FileName := GetDefaultFileName(SelectedBottleLog.Title, '.txt');
588   SaveDialog.InitialDir := ExtractFileDir(Application.ExeName);
589   SaveDialog.DefaultExt := 'txt';
590   SaveDialog.FilterIndex := 2;
591   if SaveDialog.Execute then
592     SelectedBottleLog.SaveToText(SaveDialog.FileName);
593 end;
594
595 procedure TfrmLog.mnSaveLogXMLClick(Sender: TObject);
596 begin
597   if SelectedBottleLog = nil then Exit;
598   DoSaveLogXML(SelectedBottleLog);
599 end;
600
601 procedure TfrmLog.lvwLogData(Sender: TObject; Item: TListItem);
602 var i: integer;
603     Log: TLogItem;
604 begin
605   if Item = nil then Exit;
606   i := Item.Index;
607   Log := SelectedBottleLog.Bottles[i];
608   with Item do begin
609     Caption := FormatDateTime('yy/mm/dd hh:nn:ss', Log.LogTime);
610     SubItems.Clear;
611     SubItems.Add(Log.Channel);
612     SubItems.Add(Log.Ghost);
613     if Log.LogType = ltBottle then begin
614       if Log.Votes > 0 then
615         SubItems.Add(IntToStr(Log.Votes))
616       else
617         SubItems.Add('');
618       if Log.Agrees > 0 then
619         SubItems.Add(IntToStr(Log.Agrees))
620       else
621         SubItems.Add('');
622     end else begin
623       // \83V\83X\83e\83\80\83\8d\83O\82È\82Ç\82Í\93\8a\95[\81E\93¯\88Ó\82ð\95\\8e¦\82µ\82È\82¢
624       SubItems.Add('');
625       SubItems.Add('');
626     end;
627     SubItems.Add(Log.Script);
628
629     if Log.LogType = ltBottle then begin
630       case Log.State of
631         lsUnopened: ImageIndex := IconBottle;
632         lsPlaying:  ImageIndex := IconPlaying;
633         lsOpened:   ImageIndex := IconOpened;
634       end;
635     end else
636       ImageIndex := IconSystemLog;
637   end;
638 end;
639
640 procedure TfrmLog.UpdateWindow;
641 var EnabledFlag: boolean;
642 begin
643   lvwLog.Color := Pref.BgColor;
644   lvwLog.Font.Color := Pref.TextColor;
645   if SelectedBottleLog <> nil then begin
646     Caption := '\83\8d\83O - ' + SelectedBottleLog.Title;
647     StatusBar.Panels[0].Text := IntToStr(SelectedBottleLog.Count) + '\8c\8f';
648     lvwLog.Items.Count := SelectedBottleLog.Count;
649   end else begin
650     Caption := '\83\8d\83O';
651     StatusBar.Panels[0].Text := '';
652     StatusBar.Panels[1].Text := '';
653     lvwLog.Items.Count := 0;
654   end;
655
656   EnabledFlag := SelectedBottleLog <> nil;
657   tbtnClear.Enabled := EnabledFlag;
658   tbtnSaveLog.Enabled := EnabledFlag;
659   tbtnFindBottle.Enabled := EnabledFlag;
660
661   lvwLog.Invalidate;
662 end;
663
664 procedure TfrmLog.PopupMenuListViewPopup(Sender: TObject);
665 var Log: TLogItem;
666     Child: TMenuItem;
667     Urls: TStringList;
668     i: integer;
669 begin
670   for i := mnJumpURL.Count-1 downto 0 do begin
671     mnJumpURL.Items[i].Free;
672   end;
673   mnJumpURL.Enabled := false;
674   if lvwLog.Selected = nil then Exit;
675   Log := SelectedBottleLog.Bottles[lvwLog.Selected.Index];
676   if Log = nil then Exit;
677   Urls := TStringList.Create;
678   try
679     ExtractURLs(Log.Script, Urls);
680     for i := 0 to Urls.Count-1 do begin
681       Child := TMenuItem.Create(Self);
682       with Child do begin
683         Caption := Format('(&%d) %s', [i+1, StringReplace(Urls[i], '&', '&&', [rfReplaceAll])]);
684         Tag := i;
685         OnClick := mnURLClick;
686         AutoHotkeys := maManual;
687         mnJumpURL.Add(Child);
688       end;
689     end;
690     mnJumpURL.Enabled := Urls.Count > 0;
691   finally
692     Urls.Free;
693   end;
694 end;
695
696 procedure TfrmLog.mnURLClick(Sender: TObject);
697 var LogItem: TLogItem;
698     URL: string;
699     Urls: TStringList;
700     Command: string;
701
702 begin
703   if (lvwLog.Selected = nil) or (SelectedBottleLog = nil) then Exit;
704   LogItem := SelectedBottleLog[lvwLog.Selected.Index] as TLogItem;
705   Urls := TStringList.Create;
706   try
707     ExtractURLs(LogItem.Script, Urls);
708     URL := Urls[(Sender as TMenuItem).Tag];
709     if Pref.BrowserExeName='' then
710     begin
711       ShellExecute(Handle, 'open', PChar(URL), nil, nil, SW_SHOW);
712     end else
713     begin
714       Command := Pref.BrowserExeName+' '+URL;
715       WinExec(PChar(Command), SW_SHOW);
716     end;
717
718   finally
719     Urls.Free;
720   end;
721 end;
722
723 procedure TfrmLog.ExtractURLs(Script: String; Result: TStrings);
724 var i, u, j: integer;
725     s: String;
726 begin
727   Result.Clear;
728   SsParser.InputString := Script;
729   SsParser.LeaveEscape := true;
730   for i := 0 to SsParser.Count-1 do begin
731     if (SsParser.Match(SsParser[i], '\URL%b') > 0)
732     and (SsParser.MarkUpType[i] = mtTag) then
733     begin
734       for u := 7 downto 1 do begin
735         if (SsParser.Match(SsParser[i],
736             '\URL%b'+StringReplace(StringOfChar('-', u*2),
737             '-', '%b', [rfReplaceAll]))) > 0 then begin
738           for j := 1 to u do begin
739             s := SsParser.GetParam(SsParser[i], j*2);
740             if Pos('http://', s) > 0 then Result.Add(s);
741           end;
742           Break;
743         end;
744       end;
745       if SsParser.Match(SsParser[i], '\URL%b%b') = 0 then begin //\8aÈ\88Õ\94ÅURL\95Ï\8a·
746         //\8aÈ\88Õ\8c`\8e®\URL\83^\83O\95Ï\8a·
747         s := SsParser.GetParam(SsParser[i], 1);
748         if Pos('http://', s) > 0 then Result.Add(s);
749       end;
750     end;
751   end;
752 end;
753
754 procedure TfrmLog.SelAndFocusMessage(const MID: String);
755 var i: integer;
756     Log: TLogItem;
757 begin
758   for i := 0 to SelectedBottleLog.Count-1 do begin
759     Log := SelectedBottleLog.Items[i] as TLogItem;
760     if Log.MID = MID then begin
761       lvwLog.Items[i].Selected := true;
762       lvwLog.Items[i].Focused := true;
763     end;
764   end;
765 end;
766
767 procedure TfrmLog.lvwLogCustomDrawItem(Sender: TCustomListView;
768   Item: TListItem; State: TCustomDrawState; var DefaultDraw: Boolean);
769 begin
770   //
771 end;
772
773 procedure TfrmLog.UpdateScript(const Script: String);
774 begin
775   if Script <> FLastScript then begin
776     if Pref.LogWindowPreviewStyle = psConversation then begin
777       UpdateScriptConversationColor(Script);
778     end else begin
779       UpdateScriptScript(Script);
780     end;
781     SendMessage(edtScript.Handle, EM_LINESCROLL, Low(integer), Low(integer)); //\83X\83N\83\8d\81[\83\8b\96ß\82µ
782     FLastScript := Script;
783   end;
784 end;
785
786 procedure TfrmLog.PopupMenuPreviewStylePopup(Sender: TObject);
787 var i: integer;
788 begin
789   with PopupMenuPreviewStyle do
790     for i := 0 to Items.Count-1 do
791       Items[i].Checked := Items[i].Tag = Ord(Pref.LogWindowPreviewStyle)
792 end;
793
794 procedure TfrmLog.mnPreviewStyleClick(Sender: TObject);
795 var i: integer;
796 begin
797   with PopupMenuPreviewStyle do
798     for i := 0 to Items.Count-1 do
799       Items[i].Checked := (Sender as TMenuItem).Tag = Items[i].Tag;
800   Pref.LogWindowPreviewStyle := TLogWindowPreviewStyle((Sender as TMenuItem).Tag);
801   PreviewStyleChange;
802   FLastScript := '';
803   lvwLogChange(self, lvwLog.Selected, ctState);
804 end;
805
806 procedure TfrmLog.UpdateScriptScript(const Script: String);
807 var
808   UnyuTalking, InSynchronized: boolean;
809   i: integer;
810 begin
811   edtScript.Color := Pref.BgColor;
812   SsParser.LeaveEscape := true;
813   SsParser.InputString := Script;
814   edtScript.Text := '';
815   edtScript.SelAttributes.Color := clWindowText;
816   UnyuTalking := false;
817   InSynchronized := false;
818   for i := 0 to SsParser.Count-1 do begin
819     case SsParser.MarkUpType[i] of
820       mtStr: begin
821         if InSynchronized then
822           edtScript.SelAttributes.Color := Pref.TalkColorS
823         else if UnyuTalking then
824           edtScript.SelAttributes.Color := Pref.TalkColorU
825         else
826           edtScript.SelAttributes.Color := Pref.TalkColorH;
827       end;
828       mtTag: begin
829         edtScript.SelAttributes.Color := Pref.MarkUpColor;
830         if SsParser[i] = '\h' then
831           UnyuTalking := false
832         else if SsParser[i] = '\u' then
833           UnyuTalking := true
834         else if SsParser[i] = '\_s' then
835           InSynchronized := not InSynchronized;
836       end;
837       mtMeta:   edtScript.SelAttributes.Color := Pref.MetaWordColor;
838       mtTagErr: edtScript.SelAttributes.Color := Pref.MarkErrorColor;
839     end;
840     edtScript.SelText := SsParser[i];
841     if (SsParser[i] = '\n') and (Pref.LogWindowPreviewStyle = psScriptWithLineBreak) then
842       edtScript.SelText := #13#10;
843   end;
844 end;
845
846 procedure TfrmLog.tbtnPreviewStyleClick(Sender: TObject);
847 var sel: integer;
848 begin
849   sel := Ord(Pref.LogWindowPreviewStyle);
850   sel := sel + 1;
851   if sel > Ord(High(TLogWindowPreviewStyle)) then sel := 0;
852   Pref.LogWindowPreviewStyle := TLogWindowPreviewStyle(sel);
853   FLastScript := '';
854   PreviewStyleChange;
855   lvwLogChange(self, lvwLog.Selected, ctState);
856 end;
857
858 function TfrmLog.SelectedBottleLog: TBottleLogList;
859 begin
860   if tabBottleLog.TabIndex >= 0 then
861     Result := FBottleLogList.Items[tabBottleLog.TabIndex] as TBottleLogList
862   else
863     Result := nil;
864 end;
865
866 procedure TfrmLog.tabBottleLogChange(Sender: TObject);
867 begin
868   // StatusBar\82Ì\8c\8f\90\94\95\\8e¦\82âListView.Items.Count\82ð\8dX\90V\82·\82é
869   UpdateWindow;
870   // \83A\83C\83e\83\80\82Ì\91I\91ð\8fó\91Ô\82ð\95\9c\8bA\82·\82é
871   with SelectedBottleLog do
872     if (SelectedIndex >= 0) and (Count > SelectedIndex) then
873     begin
874       lvwLog.Items[SelectedIndex].Selected := true;
875       if lvwLog.Focused then lvwLog.Selected.Focused := true;
876     end;
877   lvwLogChange(Self, nil, ctState);
878 end;
879
880 procedure TfrmLog.LogLoaded(Sender: TObject);
881 begin
882   if SelectedBottleLog = Sender then begin
883     UpdateWindow;
884   end;
885 end;
886
887 procedure TfrmLog.UpdateTab;
888 var i, cur: integer;
889 begin
890   cur := tabBottleLog.tabIndex;
891   tabBottleLog.Tabs.Clear;
892   for i := 0 to FBottleLogList.Count - 1 do begin
893     tabBottleLog.Tabs.Add((FBottleLogList[i] as TBottleLogList).Title);
894   end;
895   if FBottleLogList.Count > 0 then begin
896     if cur < FBottleLogList.Count then
897       tabBottleLog.TabIndex := cur
898     else
899       tabBottleLog.TabIndex := FBottleLogList.Count-1;
900   end;
901 end;
902
903 procedure TfrmLog.LogLoadFailure(Sender: TObject; const Message: String);
904 begin
905   Beep;
906   ShowMessage(Message);
907   if Sender = SelectedBottleLog then UpdateWindow;
908 end;
909
910 procedure TfrmLog.AgreeLog(const MID: String; const Agree: integer);
911 var i: integer;
912     flag: boolean;
913 begin
914   flag := false;
915   for i := 0 to FBottleLogList.Count - 1 do begin
916     if (FBottleLogList[i] as TBottleLogList).Bottle(MID) <> nil then begin
917       (FBottleLogList[i] as TBottleLogList).Bottle(MID).Agrees := Agree;
918       flag := true;
919     end;
920   end;
921   if flag then lvwLog.Invalidate;
922 end;
923
924 procedure TfrmLog.VoteLog(const MID: String; const Vote: integer);
925 var i: integer;
926     flag: boolean;
927 begin
928   flag := false;
929   for i := 0 to FBottleLogList.Count - 1 do begin
930     if (FBottleLogList[i] as TBottleLogList).Bottle(MID) <> nil then begin
931       (FBottleLogList[i] as TBottleLogList).Bottle(MID).Votes := Vote;
932       flag := true;
933     end;
934   end;
935   if flag then lvwLog.Invalidate;
936 end;
937
938 procedure TfrmLog.tabBottleLogChanging(Sender: TObject;
939   var AllowChange: Boolean);
940 begin
941   // \8c»\8dÝ\91I\91ð\82³\82ê\82Ä\82¢\82é\83\8d\83O\82Ì\91I\91ð\8fó\91Ô\82ð\95Û\91
942   if SelectedBottleLog = nil then Exit;
943   if lvwLog.Selected <> nil then
944     SelectedBottleLog.SelectedIndex := lvwLog.Selected.Index
945   else
946     SelectedBottleLog.SelectedIndex := -1;
947 end;
948
949 procedure TfrmLog.tabBottleLogContextPopup(Sender: TObject;
950   MousePos: TPoint; var Handled: Boolean);
951 begin
952   with tabBottleLog do begin
953     Tag := IndexOfTabAt(MousePos.X, MousePos.Y);
954     if Tag < 0 then Handled := true;
955   end;
956 end;
957
958 procedure TfrmLog.mnCloseTabClick(Sender: TObject);
959 begin
960   DoCloseTab(tabBottleLog.Tag);
961 end;
962
963 procedure TfrmLog.tbtnFindBottleClick(Sender: TObject);
964 var ResultLog: TBottleLogList;
965     Cond: TSearchCond;
966     i: integer;
967     CList, GList: THashedStringList;
968 begin
969   Application.CreateForm(TfrmSearchLog, frmSearchLog);
970   Cond := TSearchCond.Create(nil);
971   try
972     try
973       with frmSearchLog do
974       begin
975         // \8c»\8dÝ\83\8d\83O\82É\82 \82é\83S\81[\83X\83g\82Æ\83`\83\83\83\93\83l\83\8b\82Ì\83\8a\83X\83g\82ð\8eæ\93¾
976         // \8fd\82½\82¢\82©\82à??
977         CList := THashedStringList.Create;
978         GList := THashedStringList.Create;
979         try
980           for i := 0 to BottleLogList.Count-1 do
981           begin
982             with BottleLogList[i] as TBottleLogList do
983             begin
984               ExtractUniqueChannels(CList);
985               ExtractUniqueGhosts(GList);
986             end;
987           end;
988           CList.Sort;
989           GList.Sort;
990           ChannelList := CList;
991           GhostList   := GList;
992         finally
993           CList.Free;
994           GList.Free;
995         end;
996         if not Execute then
997           Exit
998         else
999           Cond.Assign(Condition);
1000       end;
1001     finally
1002       frmSearchLog.Release;
1003     end;
1004     // \8c\9f\8dõ\8eÀ\8ds
1005     ResultLog := DoSearchLog(Cond);
1006     // \90V\83^\83u\82ð\8dì\90¬\82µ\82Ä\89æ\96Ê\8dX\90V
1007     BottleLogList.Add(ResultLog);
1008     UpdateTab;
1009     tabBottleLog.TabIndex := BottleLogList.Count-1;
1010     UpdateWindow;
1011   finally
1012     Cond.Free;
1013   end;
1014 end;
1015
1016 procedure TfrmLog.tbtnOpenLogClick(Sender: TObject);
1017 var BottleLog: TBottleLogList;
1018     i, Index: integer;
1019 begin
1020   Index := -1;
1021   if OpenDialog.Execute then begin
1022     for i := 0 to OpenDialog.Files.Count-1 do begin
1023       BottleLog := TBottleLogList.Create(ExtractFileName(OpenDialog.Files[i]));
1024       try
1025         with BottleLog do
1026         begin
1027           OnLoaded := LogLoaded;
1028           OnLoadFailure := LogLoadFailure;
1029           OnLoadWork := LogLoadWork;
1030           BottleLog.LoadFromXMLFile(OpenDialog.Files[i]);
1031         end;
1032         Index := BottleLogList.Add(BottleLog); // \8dÅ\8cã\82É\8aJ\82¢\82½\83\8d\83O\82Ì\88Ê\92u\82ð\8bL\89¯
1033       except
1034         BottleLog.Free;
1035       end;
1036     end;
1037     UpdateTab;
1038     if Index >= 0 then tabBottleLog.TabIndex := Index;
1039     UpdateWindow;
1040   end;
1041 end;
1042
1043 function TfrmLog.GetDefaultFileName(const Name, Ext: String): String;
1044 begin
1045   Result := StringReplace(Name, '/', '', [rfReplaceAll]);
1046   Result := StringReplace(Result, ' ', '', [rfReplaceAll]);
1047   Result := SafeFileName(Result);
1048   Result := ChangeFileExt(Result, Ext);
1049 end;
1050
1051 function TfrmLog.BottleLogTitled(const LogName: String): TBottleLogList;
1052 var i: integer;
1053 begin
1054   for i := 0 to FBottleLogList.Count-1 do begin
1055     if (FBottleLogList[i] as TBottleLogList).Title = LogName then begin
1056       Result := (FBottleLogList[i] as TBottleLogList);
1057       Exit;
1058     end;
1059   end;
1060   // \8c©\82Â\82©\82ç\82È\82¢\8fê\8d\87
1061   Result := TBottleLogList.Create(LogName); // \90V\82µ\82­\8dì\82é
1062   FBottleLogList.Add(Result);
1063   UpdateTab;
1064   if FBottleLogList.Count = 1 then tabBottleLog.TabIndex := 0;
1065 end;
1066
1067 procedure TfrmLog.AllBottleOpened;
1068 var i, j: integer;
1069     Log: TBottleLogList;
1070 begin
1071   for i := 0 to FBottleLogList.Count-1 do begin
1072     Log  := FBottleLogList[i] as TBottleLogList;
1073     for j := 0 to Log.Count-1 do begin
1074       Log.Bottles[j].State := lsOpened;
1075     end;
1076   end;
1077 end;
1078
1079 procedure TfrmLog.tabBottleLogMouseDown(Sender: TObject;
1080   Button: TMouseButton; Shift: TShiftState; X, Y: Integer);
1081 var Index: integer;
1082 begin
1083   if Button = mbMiddle then
1084   begin
1085     //\92\86\83{\83^\83\93\83N\83\8a\83b\83N\82Å\83^\83u\8dí\8f\9c
1086     DoCloseTab(tabBottleLog.IndexOfTabAt(X, Y));
1087   end else
1088   begin
1089     with tabBottleLog do begin
1090       Index := IndexOfTabAt(X, Y);
1091       if Index = -1 then Exit; //\83^\83u\82ª\82È\82¢\82Ì\82Å\83h\83\89\83b\83O\82Å\82«\82È\82¢
1092       if Button = mbLeft then begin
1093         FDragTabIndex := Index; //\83h\83\89\83b\83O\82·\82é\83^\83u\82Ì\83C\83\93\83f\83b\83N\83X\82ð\95Û\91
1094         BeginDrag(False);
1095         FDragTabDest := -1;     //\83h\83\89\83b\83O\98g\90ü\95`\89æ\83t\83\89\83O\83N\83\8a\83A\82Ì\82½\82ß
1096       end;
1097     end;
1098   end;
1099 end;
1100
1101 procedure TfrmLog.tabBottleLogDragOver(Sender, Source: TObject; X,
1102   Y: Integer; State: TDragState; var Accept: Boolean);
1103 var TargetRect: TRect;
1104     OldDest, Index: integer;
1105     dummy: boolean;
1106 begin
1107   // \83^\83u\82Ì\83h\83\89\83b\83O(\83^\83u\82Ì\8f\87\94Ô\93ü\82ê\91Ö\82¦)\82Ü\82½\82Í\81A
1108   // \83\8d\83O\83A\83C\83e\83\80\82Ì\83h\83\89\83b\83O(\83\8d\83O\82ð\95Ê\82Ì\83^\83u\82É\88Ú\93®)\82Ì
1109   // \97¼\95û\82Ì\83h\83\89\83b\83O\82ð\8eó\82¯\95t\82¯\82é
1110   Accept := false;
1111   if Source = tabBottleLog then
1112   begin
1113     // \83^\83u\82Ì\8f\87\94Ô\93ü\82ê\91Ö\82¦\82Ì\8fê\8d\87
1114     Accept := true;
1115     with tabBottleLog do begin
1116       OldDest := FDragTabDest;
1117       FDragTabDest := IndexOfTabAt(X, Y);
1118       if FDragTabDest = -1 then begin
1119         Accept := false; //\82±\82Ì\8fê\8d\87\82Í\83h\83\8d\83b\83v\82ð\94F\82ß\82È\82¢
1120         Exit;
1121       end;
1122       with Canvas do begin
1123         Pen.Mode := pmNot;
1124         Pen.Width := 3;
1125       end;
1126       if (OldDest <> FDragTabDest) and (OldDest >= 0) then begin
1127         //\88È\91O\82Ì\98g\90ü\8fÁ\8b\8e
1128         TargetRect := TabRect(OldDest);
1129         with Canvas do begin
1130           Brush.Style := bsClear;
1131           Rectangle(TargetRect.Left, TargetRect.Top,
1132                     TargetRect.Right, TargetRect.Bottom);
1133         end;
1134       end;
1135       if (OldDest <> FDragTabDest) then begin
1136         //\90V\82µ\82¢\98g\90ü\95`\89æ
1137         TargetRect := TabRect(FDragTabDest);
1138         with Canvas do begin
1139           Brush.Style := bsClear;
1140           Rectangle(TargetRect.Left, TargetRect.Top,
1141                     TargetRect.Right, TargetRect.Bottom);
1142         end;
1143       end;
1144     end;
1145   end else if Source is TBottleLogDragObject then
1146   begin
1147     // \83\8d\83O\8d\80\96Ú\82Ì\83h\83\89\83b\83O(\83\8d\83O\82ð\95Ê\82Ì\83^\83u\82É\88Ú\93®\82·\82é)\82Ì\8fê\8d\87
1148     Index := tabBottleLog.IndexOfTabAt(X, Y);
1149     if tabBottleLog.TabIndex <> Index then
1150     begin
1151       FLVDragDest := -1; // \98g\90ü\82Í\82Ü\82¾\95\\8e¦\82³\82ê\82È\82¢\82Í\82¸
1152       // \83^\83u\82ð\90Ø\91Ö\82¦\82é
1153       tabBottleLogChanging(Self, dummy);
1154       tabBottleLog.TabIndex := Index;
1155       UpdateWindow;
1156     end;
1157   end;
1158 end;
1159
1160 procedure TfrmLog.tabBottleLogDragDrop(Sender, Source: TObject; X,
1161   Y: Integer);
1162 var DestIndex: integer;
1163 begin
1164   with tabBottleLog do begin
1165     DestIndex := IndexOfTabAt(X, Y);
1166     Tabs.Move(FDragTabIndex, DestIndex);
1167     FBottleLogList.Move(FDragTabIndex, DestIndex);
1168   end;
1169 end;
1170
1171 procedure TfrmLog.tabBottleLogEndDrag(Sender, Target: TObject; X,
1172   Y: Integer);
1173 begin
1174   //\8b­\90§\93I\82É\83^\83u\82ð\8dÄ\95`\89æ\82³\82¹\82é\81B\98g\90ü\8fÁ\82µ\91Î\8dô
1175   tabBottleLog.Tabs.BeginUpdate;
1176   tabBottleLog.Tabs.EndUpdate;
1177 end;
1178
1179 procedure TfrmLog.LogLoadWork(Sender: TObject);
1180 begin
1181   if Sender = SelectedBottleLog then
1182   begin
1183     lvwLog.Invalidate;
1184     lvwLog.Items.Count := SelectedBottleLog.Count;
1185   end;
1186 end;
1187
1188 procedure TfrmLog.lvwLogDrawItem(Sender: TCustomListView; Item: TListItem;
1189   Rect: TRect; State: TOwnerDrawState);
1190 var
1191   DestRect: TRect;
1192   Script: String;
1193   Ico: TIcon;
1194   sub, Ex: integer;
1195   Bottle: TLogItem;
1196   DummyStr: TStringList;
1197 begin
1198   Bottle := SelectedBottleLog.Bottles[Item.Index];
1199   if Bottle.HasURL = huUndefined then
1200   begin
1201     DummyStr := TStringList.Create;
1202     try
1203       ExtractURLs(Bottle.Script, DummyStr);
1204       if DummyStr.Count > 0 then
1205         Bottle.HasURL := huYes
1206       else
1207         Bottle.HasURL := huNo;
1208     finally
1209       DummyStr.Free;
1210     end;
1211   end;
1212
1213   // \94w\8ci\8fÁ\8b\8e
1214   ListView_GetItemRect(lvwLog.Handle, Item.Index, DestRect, LVIR_BOUNDS);
1215
1216   // \94w\8ci\82Ì\90F\82Í\91I\91ð\8fó\91Ô\81E\91I\91ð\94ñ\83A\83N\83e\83B\83u\8fó\91Ô\81E\92Ê\8fí\8fó\91Ô\82Ì3\92Ê\82è
1217   lvwLog.Canvas.Brush.Style := bsSolid;
1218   if Item.Selected then begin
1219     if lvwLog.Focused then
1220       lvwLog.Canvas.Brush.Color := clHighlight
1221     else
1222       lvwLog.Canvas.Brush.Color := clBtnFace;
1223   end else begin
1224     lvwLog.Canvas.Brush.Color := Pref.BgColor;
1225   end;
1226   lvwLog.Canvas.FillRect(DestRect);
1227   lvwLog.Canvas.Brush.Style := bsClear;
1228   // \83t\83H\81[\83J\83X\82ª\82 \82é\8fê\8d\87\82É\82Í\83t\83H\81[\83J\83X\82Ì\98g\90ü\82ð\88ø\82­
1229   if Item.Focused and lvwLog.Focused then
1230     lvwLog.Canvas.DrawFocusRect(DestRect);
1231
1232   // \83h\83\89\83b\83O\92\86\82È\82ç\98g\90ü\82ð\95`\89æ\82·\82é
1233   if FLVDragDest = Item.Index then
1234   begin
1235     DestRect := Item.DisplayRect(drBounds);
1236     DrawListViewDragBorder(DestRect);
1237   end;
1238
1239   if Item.Selected then
1240   begin
1241     if lvwLog.Focused then
1242       lvwLog.Canvas.Font.Color := clHighlightText
1243     else
1244       lvwLog.Canvas.Font.Color := clWindowText;
1245   end else
1246   lvwLog.Canvas.Font.Color := Pref.TextColor;
1247   lvwLog.Canvas.Refresh;
1248
1249   // \83L\83\83\83v\83V\83\87\83\93(\93ú\95t)
1250   ListView_GetItemRect(lvwLog.Handle, Item.Index, DestRect, LVIR_LABEL);
1251   Inc(DestRect.Left, 2);
1252   Inc(DestRect.Top, 2);
1253   Dec(DestRect.Right, 2);
1254   DrawTextEx(lvwLog.Canvas.Handle, PChar(Item.Caption), -1, DestRect,
1255     DT_SINGLELINE or DT_RIGHT, nil);
1256   ListView_GetItemRect(lvwLog.Handle, Item.Index, DestRect, LVIR_ICON);
1257   Ico := TIcon.Create;
1258   try
1259     lvwLog.SmallImages.GetIcon(Item.ImageIndex, Ico);
1260     lvwLog.Canvas.Draw(DestRect.Left, DestRect.Top, Ico);
1261   finally
1262     Ico.Free;
1263   end;
1264   // \83L\83\83\83v\83V\83\87\83\93\82Å\82à\83X\83N\83\8a\83v\83g\82Å\82à\82È\82¢\82à\82Ì
1265   for sub := 0 to Item.SubItems.Count-1 do
1266   begin
1267     if sub = SubScript then Continue;
1268     ListView_GetSubItemRect(lvwLog.Handle, Item.Index, sub + 1,
1269       LVIR_BOUNDS, @DestRect);
1270     if DestRect.Right - DestRect.Left <= 16 then
1271     begin
1272       // \8b·\82·\82¬\82é\8fê\8d\87\82Í\95\8e\9a\97ñ\82ð\95`\89æ\82µ\82È\82¢\81B
1273       // 16\82Æ\82¢\82¤\90\94\8e\9a\82Í\8eÀ\91ª\92l\81B\89½\82©\82Ì\83o\83O\82Á\82Û
1274       lvwLog.Canvas.FillRect(DestRect);
1275       Continue;
1276     end;
1277     Inc(DestRect.Left, 2);
1278     Inc(DestRect.Top, 2);
1279     Dec(DestRect.Right, 2);
1280     Ex := DT_NOPREFIX or DT_SINGLELINE or DT_END_ELLIPSIS;
1281     if lvwLog.Columns[sub+1].Alignment = taRightJustify then
1282       Ex := Ex or DT_RIGHT;
1283     DrawTextEx(lvwLog.Canvas.Handle, PChar(Item.SubItems[sub]), -1, DestRect,
1284       Ex, nil);
1285   end;
1286   // \83X\83N\83\8a\83v\83g
1287   ListView_GetSubItemRect(lvwLog.Handle, Item.Index, SubScript + 1,
1288     LVIR_BOUNDS, @DestRect);
1289   Script := Item.SubItems[SubScript];
1290   DrawSingleLineScript(Bottle, DestRect, Item);
1291
1292 end;
1293
1294 procedure TfrmLog.DrawSingleLineScript(LogItem: TLogItem;
1295   Rect: TRect; Item: TListItem);
1296 var
1297   i, x, w: integer;
1298   UnyuTalking, Synchronized, Spaced: boolean;
1299   Mark: TSsMarkUpType;
1300   Script: String;
1301   Ico: TIcon;
1302   procedure ScopeChange;
1303   begin
1304     if (not Spaced) and (Pref.LogListPreviewStyle = psTagStripped) then
1305     begin
1306       Inc(x, 7);
1307       Spaced := true;
1308     end;
1309   end;
1310 begin
1311   Script := LogItem.Script;
1312   x := 3;
1313
1314   if LogItem.HasURL = huYes then
1315   begin
1316     Ico := TIcon.Create;
1317     try
1318       lvwLog.SmallImages.GetIcon(IconURL, Ico);
1319       lvwLog.Canvas.Draw(Rect.Left + x, Rect.Top, Ico);
1320       Inc(x, 20);
1321     finally
1322       Ico.Free;
1323     end;
1324   end;
1325
1326   if Pref.LogListPreviewStyle = psNoColor then
1327   begin
1328     Inc(Rect.Left, x);
1329     Inc(Rect.Top, 2);
1330     Dec(Rect.Right, 2);
1331     DrawTextEx(lvwLog.Canvas.Handle, PChar(Script), -1, Rect,
1332       DT_SINGLELINE or DT_END_ELLIPSIS or DT_NOPREFIX, nil);
1333     Exit;
1334   end;
1335
1336   SsParser.LeaveEscape := Pref.LogListPreviewStyle = psNormal;
1337   SsParser.InputString := Script;
1338
1339   UnyuTalking := false;
1340   Synchronized := false;
1341   Spaced := true; // \83^\83O\8fÈ\97ª\95\\8e¦\8e\9e\82É\95s\95K\97v\82É\83X\83R\81[\83v\95Ï\8a·\8e\9e\82Ì\83X\83y\81[\83X\82ð\8bó\82¯\82È\82¢
1342                   // \82½\82ß\82Ì\83t\83\89\83O
1343   for i := 0 to SsParser.Count - 1 do begin
1344     if SsParser[i] = '\h' then
1345     begin
1346       UnyuTalking := false;
1347       ScopeChange;
1348     end else if SsParser[i] = '\u' then
1349     begin
1350       UnyuTalking := true;
1351       ScopeChange;
1352     end else if SsParser[i] = '\_s' then
1353     begin
1354       Synchronized := not Synchronized;
1355       ScopeChange;
1356     end else if (Pos('\n', SsParser[i]) = 1) or (SsParser[i] = '\c') then
1357     begin
1358       ScopeChange;
1359     end;
1360     Mark := SsParser.MarkUpType[i];
1361     case Mark of
1362       mtMeta:
1363         begin
1364           lvwLog.Canvas.Font.Color := Pref.MetaWordColor;
1365           Spaced := false;
1366         end;
1367       mtTag:
1368         if Pref.LogListPreviewStyle = psNormal then
1369           lvwLog.Canvas.Font.Color := Pref.MarkUpColor
1370         else
1371         begin
1372           Continue;
1373         end;
1374       mtTagErr:
1375         lvwLog.Canvas.Font.Color := Pref.MarkErrorColor;
1376       else begin
1377         Spaced := false;
1378         if Synchronized then
1379           lvwLog.Canvas.Font.Color := Pref.TalkColorS
1380         else if UnyuTalking then
1381           lvwLog.Canvas.Font.Color := Pref.TalkColorU
1382         else
1383           lvwLog.Canvas.Font.Color := Pref.TalkColorH;
1384       end;
1385     end;
1386     if Item.Selected then
1387     begin
1388       if lvwLog.Focused then
1389         lvwLog.Canvas.Font.Color := clHighlightText
1390       else
1391         lvwLog.Canvas.Font.Color := clWindowText;
1392     end;
1393     lvwLog.Canvas.Refresh;
1394     w := lvwLog.Canvas.TextWidth(SsParser[i]);
1395     lvwLog.Canvas.TextRect(Rect, Rect.Left + x, Rect.Top + 2, SsParser[i]);
1396     x := x + w;
1397     if Rect.Right - Rect.Left < x then Break;
1398   end;
1399 end;
1400
1401 procedure TfrmLog.mnListPreviewStyleClick(Sender: TObject);
1402 var i: integer;
1403 begin
1404   with PopupMenuListPreviewStyle do
1405     for i := 0 to Items.Count-1 do
1406       Items[i].Checked := (Sender as TMenuItem).Tag = Items[i].Tag;
1407   Pref.LogListPreviewStyle := TLogListPreviewStyle((Sender as TMenuItem).Tag);
1408   lvwLog.Invalidate;
1409 end;
1410
1411 procedure TfrmLog.tbtnListPreviewStyleClick(Sender: TObject);
1412 var sel: integer;
1413 begin
1414   sel := Ord(Pref.LogListPreviewStyle);
1415   sel := sel + 1;
1416   if sel > Ord(High(TLogListPreviewStyle)) then sel := 0;
1417   Pref.LogListPreviewStyle := TLogListPreviewStyle(sel);
1418   lvwLog.Invalidate;
1419 end;
1420
1421 procedure TfrmLog.PopupMenuListPreviewStylePopup(Sender: TObject);
1422 var i: integer;
1423 begin
1424   with PopupMenuListPreviewStyle do
1425     for i := 0 to Items.Count-1 do
1426       Items[i].Checked := Items[i].Tag = Ord(Pref.LogListPreviewStyle)
1427 end;
1428
1429 procedure TfrmLog.PreviewStyleChange;
1430 begin
1431   if Pref.LogWindowPreviewStyle = psImageConversation then
1432   begin
1433     if Spps.Count = 0 then
1434       ShowMessage('\83T\81[\83t\83B\83X\83v\83\8c\83r\83\85\81[\97p\83v\83\89\83O\83C\83\93\82ª\91\8dÝ\82µ\82Ü\82¹\82ñ\81B');
1435     edtScript.Visible := false;
1436     TalkShowFrame.Visible := true;
1437   end else
1438   begin
1439     edtScript.Visible := true;
1440     TalkShowFrame.Visible := false;
1441   end;
1442 end;
1443
1444 procedure TfrmLog.lvwLogDragOver(Sender, Source: TObject; X, Y: Integer;
1445   State: TDragState; var Accept: Boolean);
1446 var
1447   Target: TListItem;
1448   OldDest: integer;
1449   Rec: TRect; // \83_\83~\81[\81B
1450 begin
1451   Accept := False;
1452   // \82Æ\82è\82 \82¦\82¸\8eó\82¯\95t\82¯\82é\89Â\94\\90«\82ª\82 \82é\82Ì\82ÍTBottleLogDragObject\82¾\82¯
1453   if not (Source is TBottleLogDragObject) then
1454     Exit;
1455
1456   Target := lvwLog.GetItemAt(X, Y);
1457
1458   // \82±\82ê\88È\91O\82É\95`\89æ\82³\82ê\82Ä\82¢\82½\98g\82Ì\83C\83\93\83f\83b\83N\83X
1459   OldDest := FLVDragDest;
1460
1461   // \83h\83\8d\83b\83v\88Ê\92u\82É Item \82ª\82 \82ê\82Î\83h\83\8d\83b\83v\82ð\8b\96\89Â\82·\82é
1462   if Target <> nil then
1463   begin
1464     Accept := true;
1465     FLVDragDest := Target.Index;
1466   end else
1467   begin
1468     Accept := true;
1469     FLVDragDest := -1;
1470   end;
1471
1472   // \88È\91O\82Ì\98g\90ü\82ð\8dí\8f\9c
1473   if (OldDest > -1) and (FLVDragDest <> OldDest) then
1474   begin
1475     Rec := lvwLog.Items[OldDest].DisplayRect(drBounds);
1476     DrawListViewDragBorder(Rec);
1477   end;
1478   // \83h\83\89\83b\83O\90æ\82Ì\98g\90ü\82ð\95`\89æ
1479   if (Target <> nil) and (FLVDragDest <> OldDest) then
1480   begin
1481     Rec := Target.DisplayRect(drBounds);
1482     DrawListViewDragBorder(Rec);
1483   end;
1484
1485   // \83X\83N\83\8d\81[\83\8b\8aÖ\8cW
1486   if lvwLog.Items.Count > 0 then
1487   begin
1488     if (lvwLog.topItem <> nil) and (Y - lvwLog.TopItem.Top < 10) then
1489     begin
1490       FLVScrollDir := lvScrollDown;
1491       if not timScrollTimer.Enabled then
1492         timScrollTimer.Enabled := true;
1493     end else if (lvwLog.Height - Y) < 10 then
1494     begin
1495       FLVScrollDir := lvScrollUp;
1496       if not timScrollTimer.Enabled then
1497         timScrollTimer.Enabled := true;
1498     end
1499     else
1500       timScrollTimer.Enabled := false;
1501   end else
1502     timScrollTimer.Enabled := false;
1503 end;
1504
1505 procedure TfrmLog.lvwLogDragDrop(Sender, Source: TObject; X, Y: Integer);
1506 var
1507   TargetItem: integer;
1508   Src: TBottleLogDragObject;
1509   SrcLog: TObject;
1510 begin
1511   timScrollTimer.Enabled := false;
1512
1513   if not (Source is TBottleLogDragObject) then
1514     Exit;
1515   Src := Source as TBottleLogDragObject;
1516
1517   if lvwLog.GetItemAt(X, Y) <> nil then
1518     TargetItem := lvwLog.GetItemAt(X, Y).Index
1519   else
1520     TargetItem := -1;
1521
1522   lvwLog.Items.BeginUpdate; // \83h\83\8d\83b\83v\92\86\82Í\95\\8e¦\82ð\97}\8e~\82·\82é\81@\8fd\97v\81I
1523   try
1524     // \83h\83\8d\83b\83v\88Ê\92u\82É Item \82ð\88Ú\93®\82·\82é
1525     if (GetAsyncKeyState(VK_CONTROL) and $8000) > 0 then
1526     begin // \83R\83s\81[\88Ú\93®\82Ì\8fê\8d\87
1527       SrcLog := TLogItem.Create(Src.LogItem);
1528       SelectedBottleLog.LogModified := true; // \95Ï\8dX\88µ\82¢\82É\82·\82é
1529     end else // \88Ú\93®\82¾\82¯\82·\82é\8fê\8d\87
1530     begin
1531       SrcLog := Src.BottleLogList.Extract(Src.LogItem);
1532       // \88Ú\93®\8c³\82Æ\88Ú\93®\90æ\82ª\88á\82Á\82Ä\82¢\82ê\82Î\97¼\95û\82Ì\83t\83\89\83O\82ð\97§\82Ä\82é
1533       if SelectedBottleLog.SelectedIndex <> Src.BottleLogList.SelectedIndex then
1534       begin
1535         Src.BottleLogList.LogModified := true; // \88Ú\93®\8c³
1536         SelectedBottleLog.LogModified := true; // \88Ú\93®\90æ
1537       end;
1538     end;
1539     if TargetItem >= 0 then
1540     begin
1541       // \82·\82Å\82É\91\8dÝ\82·\82é\83A\83C\83e\83\80\82Ì\8fã\82É\83h\83\8d\83b\83v\82µ\82½\8fê\8d\87
1542       SelectedBottleLog.Insert(TargetItem, SrcLog);
1543     end else
1544     begin
1545       // ListView\82Ì\97]\94\92\82É\83h\83\8d\83b\83v\82µ\82½\8fê\8d\87(Insert\82Å\82«\82È\82¢)
1546       TargetItem := SelectedBottleLog.Add(SrcLog);
1547     end;
1548     lvwLog.Items[TargetItem].Selected := true;
1549     lvwLog.Items[TargetItem].Focused := true;
1550   finally
1551     lvwLog.Items.EndUpdate;
1552     UpdateWindow;
1553   end;
1554 end;
1555
1556 procedure TfrmLog.timScrollTimerTimer(Sender: TObject);
1557 var
1558   ScrollHeight: Integer;
1559 begin
1560   // \83X\83N\83\8d\81[\83\8b\97Ê\82ð\8b\81\82ß\82é
1561   ScrollHeight := 0;
1562   if lvwLog.Items.Count > 2 then
1563   begin
1564     ScrollHeight := lvwLog.Items[1].Top - lvwLog.Items[0].Top;
1565   end;
1566
1567   case FLVScrollDir of
1568     lvScrollUp: lvwLog.Scroll(0, ScrollHeight);
1569     lvSCrollDown: lvwLog.Scroll(0, -ScrollHeight);
1570   end;
1571   lvwLog.Invalidate;  // \8dÅ\90V\82Ì\8fó\91Ô\82É\8dÄ\95`\89æ\82·\82é
1572   lvwLog.Update;
1573 end;
1574
1575 procedure TfrmLog.mnChangeTabNameClick(Sender: TObject);
1576 var Name: String;
1577 begin
1578   Name := (FBottleLogList[tabBottleLog.Tag] as TBottleLogList).Title;
1579   InputQuery('\96¼\91O\82Ì\95Ï\8dX', '\90V\82µ\82¢\83^\83u\82Ì\96¼\91O', Name);
1580   (FBottleLogList[tabBottleLog.Tag] as TBottleLogList).Title := Name;
1581   UpdateTab;
1582 end;
1583
1584 procedure TfrmLog.lvwLogStartDrag(Sender: TObject;
1585   var DragObject: TDragObject);
1586 var Drag: TBottleLogDragObject;
1587 begin
1588   // \92Ê\8fí\82ÌListView\97p\82Ì\83h\83\89\83b\83O\83I\83u\83W\83F\83N\83g\82Í
1589   // OS\82É\82æ\82Á\82Ä\82Í\81A\88Ú\93®\82·\82é\82Æ\82«\82É\83A\83C\83e\83\80\82Ì\83C\83\81\81[\83W\82ð\94¼\93§\96¾\82Å\95`\89æ\82µ\82Ä\82µ\82Ü\82¤\81B
1590   // TDragObject\82©\82ç\92¼\90Ú\8cp\8f³\82µ\82½\82¾\82¯\82Ì\82à\82Ì(\83C\83\81\81[\83W\82ð\8e\9d\82Á\82Ä\82¢\82È\82¢)\82ð\8eg\82¤\82Æ
1591   // \94¼\93§\96¾\83C\83\81\81[\83W\82Ì\95`\89æ\82Í\97}\90§\82Å\82«\82é\81B
1592   Drag := TBottleLogDragObject.Create(lvwLog);
1593   Drag.BottleLogList := SelectedBottleLog;
1594   Drag.LogItem := SelectedBottleLog.Bottles[lvwLog.Selected.Index];
1595   DragObject := Drag;
1596 end;
1597
1598 procedure TfrmLog.lvwLogEndDrag(Sender, Target: TObject; X, Y: Integer);
1599 begin
1600   // \98g\90ü\8fÁ\82µ\97p\82É\8b­\90§\93I\82É\8dÄ\95`\89æ\82³\82¹\82é
1601   timScrollTimer.Enabled := false;
1602   FLVDragDest := -1;
1603   UpdateWindow;
1604 end;
1605
1606 procedure TfrmLog.DrawListViewDragBorder(const Rect: TRect);
1607 var Rec: TRect;
1608 begin
1609   Rec := Rect;
1610   InflateRect(Rec, -1, -1);
1611   with lvwLog.Canvas do
1612   begin
1613     Pen.Mode := pmNot;
1614     Pen.Width := 3;
1615     Brush.Style := bsClear;
1616     Refresh; // \95K\97v
1617     Rectangle(Rec);
1618   end;
1619 end;
1620
1621 function TfrmLog.DoSaveLogXML(Log: TBottleLogList): integer;
1622 var
1623   Res: integer;
1624 begin
1625   Res := idYes;
1626   SaveDialog.FileName := GetDefaultFileName(Log.Title, '.xml');
1627   SaveDialog.InitialDir := ExtractFileDir(Application.ExeName);
1628   SaveDialog.DefaultExt := 'xml';
1629   SaveDialog.FilterIndex := 3;
1630   if SaveDialog.Execute then
1631     Log.SaveToXmlFile(SaveDialog.FileName)
1632   else
1633     Res := idCancel;
1634   Result := Res;
1635 end;
1636
1637 procedure TfrmLog.DoCloseTab(const Index: integer);
1638 var
1639   Confirm: String;
1640   PrevSelection: TBottleLogList; // \95Â\82\82½\82Æ\82«\83^\83u\82ª\82¸\82ê\82È\82¢\82æ\82¤\82É\82·\82é\8f\88\97\9d\97p
1641   i: integer;
1642 begin
1643   if CheckLogSave(Index) = idCancel then exit; // \83\8d\83O\82Ì\95Û\91\8am\94F
1644   if Pref.ConfirmOnTabClose then
1645   begin
1646     Confirm := Format('\83^\83u"%s"\82ð\95Â\82\82Ü\82·\82©?', [(FBottleLogList[Index] as TBottleLogList).Title]);
1647     if MessageDlg(Confirm, mtConfirmation, mbOkCancel, 0) = mrCancel then
1648       Exit;
1649   end;
1650   PrevSelection := SelectedBottleLog;
1651   FBottleLogList.Delete(Index);
1652   UpdateTab;
1653   // \83^\83u\82¸\82ê\96h\8e~\8f\88\97\9d
1654   for i := 0 to FBottleLogList.Count-1 do
1655     if FBottleLogList[i] = PrevSelection then
1656       tabBottleLog.TabIndex := i;
1657   UpdateWindow;
1658   lvwLogChange(Self, nil, ctState);
1659 end;
1660
1661 procedure TfrmLog.HTMLOutputWork(Sender: TObject; const Count: integer;
1662   var Canceled: boolean);
1663 begin
1664   frmHTMLOutputProgress.ProgressBar.Position := Count;
1665   Application.ProcessMessages;
1666   if frmHTMLOutputProgress.Canceled then
1667     Canceled := true;
1668 end;
1669
1670 function TfrmLog.DoSearchLog(Condition: TSearchCond): TBottleLogList;
1671 var i, UntilIndex: integer;
1672 begin
1673   Result := TBottleLogList.Create('\8c\9f\8dõ\8c\8b\89Ê');
1674   if Condition.SearchLogRange in [srSelectedLogList, srAboveSelectedLog] then
1675   begin
1676     if SelectedBottleLog = nil then
1677     begin
1678       ShowMessage('\8c\9f\8dõ\91Î\8fÛ\82ª\82 \82è\82Ü\82¹\82ñ');
1679       Result.Free;
1680       Result := nil;
1681       Exit;
1682     end else
1683     begin
1684       if Condition.SearchLogRange = srSelectedLogList then
1685         UntilIndex := -1
1686       else if lvwLog.Selected = nil then
1687         UntilIndex := -1
1688       else
1689         UntilIndex := lvwLog.Selected.Index;
1690       SearchLogIndivisual(Condition, SelectedBottleLog, Result, UntilIndex);
1691     end;
1692   end else if Condition.SearchLogRange = srAllLogLists then
1693   begin
1694     for i := 0 to BottleLogList.Count-1 do
1695     begin
1696       SearchLogIndivisual(Condition, BottleLogList[i] as TBottleLogList,
1697         Result);
1698     end;
1699   end;
1700
1701   if Result.Count = 0 then
1702     Result.AddSystemLog('\8c©\82Â\82©\82è\82Ü\82¹\82ñ\82Å\82µ\82½\81B');
1703 end;
1704
1705 procedure TfrmLog.SearchLogIndivisual(Condition: TSearchCond; LogList,
1706   Result: TBottleLogList; UntilIndex: integer = -1);
1707 var
1708   i, Max: integer;
1709   Bottle, New: TLogItem;
1710   Ok: boolean;
1711 begin
1712   // 1\8cÂ\82Ì\83\8d\83O\83^\83u\82É\91Î\82µ\82Ä\8c\9f\8dõ\82ð\82©\82¯\82é\81BUntilIndex\82Å\94Í\88Í\8ew\92è(\8fÈ\97ª\8e\9e\82»\82Ì\83^\83u\91S\91Ì)
1713   if UntilIndex >= 0 then
1714     Max := UntilIndex
1715   else
1716     Max := LogList.Count-1;
1717   for i := 0 to Max do
1718   begin
1719     // \8fð\8c\8f\94»\92è
1720     Bottle := LogList.Bottles[i];
1721     if Bottle.LogType <> ltBottle then
1722       Continue;
1723     Ok := true;
1724     // \83X\83N\83\8a\83v\83g\83p\83^\81[\83\93\82Å\89ð\90Í
1725     if Condition.ScriptPattern <> '' then
1726     begin
1727       if Condition.ScriptRegExp then
1728       begin
1729         try
1730           if not RegExp.Match(Condition.ScriptPattern, Bottle.Script) then
1731             Ok := false;
1732         except
1733           on EBRegExpError do
1734             Ok := false; //\96­\82È\90³\8bK\95\\8c»\82ð\8fR\82é
1735         end;
1736       end else
1737       begin
1738         if not AnsiContainsText(Bottle.Script, Condition.ScriptPattern) then
1739           Ok := false;
1740       end;
1741     end;
1742     // \83`\83\83\83\93\83l\83\8b\96¼\81A\83S\81[\83X\83g\96¼\81A\93\8a\95[\93¯\88Ó
1743     if Condition.Channel <> '' then
1744       if not AnsiContainsText(Bottle.Channel, Condition.Channel) then
1745         Ok := false;
1746     if Condition.Ghost <> '' then
1747       if not AnsiContainsText(Bottle.Ghost, Condition.Ghost) then
1748         Ok := false;
1749     if Condition.MinVote > Bottle.Votes then
1750       Ok := false;
1751     if Condition.MinAgree > Bottle.Agrees then
1752       Ok := false;
1753     // \8fð\8c\8f\82É\88ê\92v\82µ\82½\82à\82Ì\82ð\8c\8b\89Ê\83\8a\83X\83g\82É\92Ç\89Á
1754     if Ok then
1755     begin
1756       New := TLogItem.Create(Bottle); // \83R\83s\81[\83R\83\93\83X\83g\83\89\83N\83^
1757       New.State := lsOpened;
1758       Result.Add(New);
1759     end;
1760   end;
1761 end;
1762
1763 { TBottleLogDragObject }
1764
1765 function TBottleLogDragObject.GetDragImages: TDragImageList;
1766 begin
1767   // \92\86\93r\94¼\92[\82È\83h\83\89\83b\83O\83C\83\81\81[\83W\82ð\95\\8e¦\82µ\82È\82¢\82æ\82¤\82É\82·\82é
1768   Result := nil;
1769 end;
1770
1771 procedure TBottleLogDragObject.SetBottleLogList(
1772   const Value: TBottleLogList);
1773 begin
1774   FBottleLogList := Value;
1775 end;
1776
1777 procedure TBottleLogDragObject.SetLogItem(const Value: TLogItem);
1778 begin
1779   FLogItem := Value;
1780 end;
1781
1782 procedure TfrmLog.mnTabSaveXMLLogClick(Sender: TObject);
1783 begin
1784   DoSaveLogXML(FBottleLogList[tabBottleLog.Tag] as TBottleLogList);
1785 end;
1786
1787 procedure TfrmLog.mnSaveHTMLClick(Sender: TObject);
1788 var
1789   LogList, SB: TBottleLogList;
1790   i: integer;
1791   Options: THTMLOutputOptions;
1792 begin
1793   SB := SelectedBottleLog;
1794   if SB = nil then
1795     Exit;
1796   if SB.Count = 0 then
1797     Exit;
1798   Application.CreateForm(TfrmHTMLOutputConfig, frmHTMLOutputConfig);
1799   with frmHTMLOutputConfig do
1800     try
1801       // Show HTML save option dialog
1802       if not Execute then
1803         Exit;
1804       LogList := TBottleLogList.Create('');
1805       try
1806         case Range of
1807           orAll:
1808             for i := SB.Count-1 downto 0 do
1809               if SB.Bottles[i].LogType = ltBottle then
1810                 LogList.Add(TLogItem.Create(SB.Bottles[i]));
1811           orSelected:
1812             if SB.Bottles[lvwLog.Selected.Index].LogType = ltBottle then
1813               LogList.Add(TLogItem.Create(SB.Bottles[lvwLog.Selected.Index]))
1814             else
1815               ShowMessage('\82±\82Ì\83\81\83b\83Z\81[\83W\82Í\95Û\91\82Å\82«\82Ü\82¹\82ñ');
1816           orUpward:
1817             for i := lvwLog.Selected.Index downto 0 do
1818               if SB.Bottles[i].LogType = ltBottle then
1819                 LogList.Add(TLogItem.Create(SB.Bottles[i]));
1820         end;
1821         Options.ImageDir := ImageDir;
1822         Options.UseColor := UseColor;
1823         Options.ImageType := ImageType;
1824         Application.CreateForm(TfrmHTMLOutputProgress, frmHTMLOutputProgress);
1825         try
1826           frmHTMLOutputProgress.Show;
1827           LogList.OnHTMLOutputWork := HTMLOutputWork;
1828           LogList.SaveToHTML(FileName, Options, SsParser);
1829         finally
1830           frmHTMLOutputProgress.Release;
1831         end;
1832       finally
1833         LogList.Free;
1834       end;
1835     finally
1836       Release;
1837     end;
1838 end;
1839
1840 procedure TfrmLog.mnPopupCopyGhostClick(Sender: TObject);
1841 var
1842   Log: TLogItem;
1843   Clip: TClipBoard;
1844 begin
1845   Log := SelectedBottleLog.Bottles[frmLog.lvwLog.Selected.Index];
1846   if Log = nil then Exit;
1847   Clip := ClipBoard();
1848   Clip.SetTextBuf(PChar(Log.Ghost));
1849 end;
1850
1851 function TfrmLog.CheckLog(Sender: TObject): integer;
1852 var
1853   i, Res: integer;
1854 begin
1855   // \91S\82Ä\82Ì\83\8a\83X\83g\81i\83^\83u\81j\83`\83F\83b\83N\82·\82é
1856   // frmSender\82©\82ç\8fI\97¹\8e\9e\82É\8cÄ\82Ñ\8fo\82³\82ê\82é
1857   Res := idNo;
1858   for i := 0 to BottleLogList.Count-1 do
1859   begin
1860     Res := CheckLogSave(i);
1861     if Res = idCancel then break;
1862   end;
1863   Result := Res;
1864 end;
1865
1866 function TfrmLog.CheckLogSave(const Index: integer): integer;
1867 var
1868   Res: integer;
1869   Confirm: string;
1870 begin
1871   // \83\8a\83X\83g\82ð\83`\83F\83b\83N\82µ\81A\95Û\91\8f\88\97\9d\82ð\8cÄ\82Ñ\8fo\82·
1872   Res := idNo;
1873   if (BottleLogList[Index] as TBottleLogList).LogModified then
1874   begin
1875     Confirm := Format('\83^\83u"%s"\82Ì\93à\97e\82Í\95Ï\8dX\82³\82ê\82Ä\82¢\82Ü\82·\81B'#13#10#13#10 +
1876       '\95Û\91\82µ\82Ü\82·\82©\81H', [(FBottleLogList[Index] as TBottleLogList).Title]);
1877     Res := MessageDlg(Confirm, mtConfirmation, mbYesNoCancel, 0);
1878     if Res = idYes then
1879       Res := DoSaveLogXML(FBottleLogList[Index] as TBottleLogList);
1880   end;
1881   Result := Res;
1882 end;
1883
1884 end.