summaryrefslogtreecommitdiff
path: root/plugins/HistoryPlusPlus/hpp_external.pas
blob: 9c3dbb8ed7b6106ddac589969ba91818cd8bcfd1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
(*
    History++ plugin for Miranda IM: the free IM client for Microsoft* Windows*

    Copyright (C) 2006-2009 theMIROn, 2003-2006 Art Fedorov.
    History+ parts (C) 2001 Christian Kastner

    This program is free software; you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation; either version 2 of the License, or
    (at your option) any later version.

    This program is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.

    You should have received a copy of the GNU General Public License
    along with this program; if not, write to the Free Software
    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
*)

unit hpp_external;

interface

uses
  Classes, Windows,
  m_api,
  hpp_externalgrid;

type
  TExternalGrids = class(TObject)
  private
    FGrids: TList;
    procedure SetGroupLinked(Value: Boolean);
  public
    constructor Create;
    destructor Destroy; override;
    procedure Add(const ExtGrid: TExternalGrid);
    function Find(Handle: HWND): TExternalGrid;
    function Delete(Handle: HWND): Boolean;
    function Clear(): Boolean;
    procedure Perform(Msg: Cardinal; wParam: WPARAM; lParam: LPARAM);
    property GroupLinked: Boolean write SetGroupLinked;
  end;


const
  MS_HPP_EG_WINDOW         = 'History++/ExtGrid/NewWindow';
  MS_HPP_EG_EVENT	         = 'History++/ExtGrid/Event';
  MS_HPP_EG_NAVIGATE       = 'History++/ExtGrid/Navigate';
  ME_HPP_EG_OPTIONSCHANGED = 'History++/ExtGrid/OptionsChanged';

var
  ExternalGrids: TExternalGrids;

procedure RegisterExtGridServices;
procedure UnregisterExtGridServices;

implementation

uses
  hpp_global, hpp_database;

{$include m_ieview.inc}

var
  hExtOptChanged: THandle;

function ExtWindowNative(wParam:WPARAM; lParam: LPARAM): uint_ptr; cdecl;
var
  par: PIEVIEWWINDOW;
  ExtGrid: TExternalGrid;
begin
  Result := 0;

  par := PIEVIEWWINDOW(lParam);
  Assert(par <> nil, 'Empty IEVIEWWINDOW structure');
  case par.iType of
    IEW_CREATE: begin
      {$IFDEF DEBUG}
      OutputDebugString('IEW_CREATE');
      {$ENDIF}
      ExtGrid := TExternalGrid.Create(par.Parent);
      case par.dwMode of
        IEWM_MUCC,IEWM_CHAT: begin
          ExtGrid.ShowHeaders   := False;
          ExtGrid.GroupLinked   := False;
          ExtGrid.ShowBookmarks := False;
        end;
        IEWM_HISTORY:
          ExtGrid.GroupLinked := False;
      end;
      ExtGrid.SetPosition(par.x,par.y,par.cx,par.cy);
      ExternalGrids.Add(ExtGrid);
      par.Hwnd := ExtGrid.GridHandle;
    end;
    IEW_DESTROY: begin
      {$IFDEF DEBUG}
      OutputDebugString('IEW_DESTROY');
      {$ENDIF}
      ExternalGrids.Delete(par.Hwnd);
    end;
    IEW_SETPOS: begin
      {$IFDEF DEBUG}
      OutputDebugString('IEW_SETPOS');
      {$ENDIF}
      ExtGrid := ExternalGrids.Find(par.Hwnd);
      if ExtGrid <> nil then
        ExtGrid.SetPosition(par.x,par.y,par.cx,par.cy);
    end;
    IEW_SCROLLBOTTOM: begin
      {$IFDEF DEBUG}
      OutputDebugString('IEW_SCROLLBOTTOM');
      {$ENDIF}
      ExtGrid := ExternalGrids.Find(par.Hwnd);
      if ExtGrid <> nil then
        ExtGrid.ScrollToBottom;
    end;
  end;
end;

function ExtEventNative(wParam:WPARAM; lParam: LPARAM): uint_ptr; cdecl;
var
  event: PIEVIEWEVENT;
  customEvent: PIEVIEWEVENTDATA;
  UsedCodepage: Cardinal;
  hDBNext: THandle;
  eventCount: Integer;
  ExtGrid: TExternalGrid;
  CustomItem: TExtCustomItem;
begin
  Result := 0;

  {$IFDEF DEBUG}
  OutputDebugString('MS_IEVIEW_EVENT');
  {$ENDIF}
  event := PIEVIEWEVENT(lParam);
  Assert(event <> nil, 'Empty IEVIEWEVENT structure');
  ExtGrid := ExternalGrids.Find(event.Hwnd);
  if ExtGrid = nil then exit;
  case event.iType of
    IEE_LOG_DB_EVENTS: begin
      UsedCodepage := event.Codepage;
      eventCount := event.Count;
      hDBNext := event.Event.hDBEventFirst;
      ExtGrid.BeginUpdate;
      while (eventCount <> 0) and (hDBNext <> 0) do
      begin
        ExtGrid.AddEvent(event.hContact, hDBNext, UsedCodepage,
                         boolean(event.dwFlags and IEEF_RTL),
                         not boolean(event.dwFlags and IEEF_NO_SCROLLING));
        if eventCount > 0 then Dec(eventCount);
        if eventCount <> 0 then
          hDBNext := db_event_next(event.hContact,hDBNext);
      end;
      ExtGrid.EndUpdate;
    end;
    IEE_LOG_MEM_EVENTS: begin
      UsedCodepage := event.Codepage;
      eventCount := event.Count;
      customEvent := event.Event.eventData;
      ExtGrid.BeginUpdate;
      while (eventCount <> 0) and (customEvent <> nil) do
      begin
        if boolean(customEvent.dwFlags and IEEDF_UNICODE_TEXT) then
          SetString(CustomItem.Text,customEvent.Text.w,lstrlenW(customEvent.Text.w))
        else
          CustomItem.Text := AnsiToWideString(AnsiString(customEvent.Text.a),UsedCodepage);
        if boolean(customEvent.dwFlags and IEEDF_UNICODE_NICK) then
          SetString(CustomItem.Nick,customEvent.Nick.w,lstrlenW(customEvent.Nick.w))
        else
          CustomItem.Nick := AnsiToWideString(AnsiString(customEvent.Nick.a),UsedCodepage);
        CustomItem.Sent := boolean(customEvent.bIsMe);
        CustomItem.Time := customEvent.time;
        CustomItem.hEvent := customEvent.hEvent;
        ExtGrid.AddCustomEvent(event.hContact, CustomItem, UsedCodepage,
                           boolean(event.dwFlags and IEEF_RTL),
                           not boolean(event.dwFlags and IEEF_NO_SCROLLING));
        if eventCount > 0 then Dec(eventCount);
        customEvent := customEvent.next;
      end;
      ExtGrid.EndUpdate;
    end;
    IEE_CLEAR_LOG: begin
      ExtGrid.BeginUpdate;
      ExtGrid.Clear;
      ExtGrid.EndUpdate;
    end;
    IEE_GET_SELECTION: begin
      Result := uint_ptr(ExtGrid.GetSelection());
    end;
    IEE_SAVE_DOCUMENT: begin
      ExtGrid.SaveSelected;
    end;
  end;
end;

function ExtNavigate(wParam:WPARAM; lParam: LPARAM): uint_ptr; cdecl;
begin
  Result := 0;
  //try
    {$IFDEF DEBUG}
    OutputDebugString('MS_IEVIEW_NAVIGATE');
    {$ENDIF}
  //except
  //end;
end;

procedure RegisterExtGridServices;
begin
  ExternalGrids := TExternalGrids.Create;
  CreateServiceFunction(MS_HPP_EG_WINDOW,@ExtWindowNative);
  CreateServiceFunction(MS_HPP_EG_EVENT,@ExtEventNative);
  CreateServiceFunction(MS_HPP_EG_NAVIGATE,@ExtNavigate);
  hExtOptChanged := CreateHookableEvent(ME_HPP_EG_OPTIONSCHANGED);
end;

procedure UnregisterExtGridServices;
begin
  DestroyHookableEvent(hExtOptChanged);
  ExternalGrids.Destroy;
end;

constructor TExternalGrids.Create;
begin
  FGrids := TList.Create;
end;

destructor TExternalGrids.Destroy;
begin
  Clear;
  FGrids.Free;
  inherited;
end;

procedure TExternalGrids.Add(const ExtGrid: TExternalGrid);
begin
  FGrids.Add(ExtGrid);
end;

function TExternalGrids.Find(Handle: HWND): TExternalGrid;
var
  i: Integer;
  ExtGrid: TExternalGrid;
begin
  Result := nil;
  for i := 0 to FGrids.Count-1 do
  begin
    ExtGrid := TExternalGrid(FGrids.Items[i]);
    if ExtGrid.GridHandle = Handle then
    begin
      Result := ExtGrid;
      break;
    end;
  end;
end;

function TExternalGrids.Delete(Handle: HWND): Boolean;
var
  i: Integer;
  ExtGrid: TExternalGrid;
begin
  Result := True;
  for i := 0 to FGrids.Count-1 do
  begin
    ExtGrid := TExternalGrid(FGrids.Items[i]);
    if ExtGrid.GridHandle = Handle then
    begin
      try
        ExtGrid.Free;
      except
        Result := False;
      end;
      FGrids.Delete(i);
      break;
    end;
  end;
end;

function TExternalGrids.Clear: Boolean;
var
  i: Integer;
  ExtGrid: TExternalGrid;
begin
  Result := True;
  for i := 0 to FGrids.Count-1 do
  begin
    ExtGrid := TExternalGrid(FGrids.Items[i]);
    try
      ExtGrid.Free;
    except
      Result := False;
    end;
  end;
  FGrids.Clear;
end;

procedure TExternalGrids.Perform(Msg: Cardinal; wParam: WPARAM; lParam: LPARAM);
var
  i: Integer;
begin
  for i := FGrids.Count-1 downto 0 do
    TExternalGrid(FGrids.Items[i]).Perform(Msg,wParam,lParam);
end;

procedure TExternalGrids.SetGroupLinked(Value: Boolean);
var
  i: Integer;
begin
  for i := FGrids.Count-1 downto 0 do
    TExternalGrid(FGrids.Items[i]).GroupLinked := Value;
end;

end.