summaryrefslogtreecommitdiff
path: root/plugins/Watrack/status/i_hotkey.inc
blob: e8f6ac3ea6695c7f5d07100ae22fb010436974e4 (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
{main hotkey code}
function InsertProc(wParam:WPARAM;lParam:LPARAM):int_ptr; cdecl;
var
  CurWin:HWND;
  s:pWideChar;
  p:PAnsiChar;
  isUnicode:boolean;
  i:integer;
  j:integer;
  tt:tTemplateType;
begin
  result:=0;
  if DisablePlugin=dsPermanent then
    exit;
  if LastStatus in [WAT_PLS_NOTFOUND,WAT_PLS_STOPPED] then
    exit;
//  i:=CallService(MS_WAT_GETMUSICINFO,0,0);
  if UseMessages=BST_CHECKED then
  begin
    CurWin:=GetFocus;
    if CurWin<>0 then
    begin
      j:=WndToContact(CurWin);
      p:=Proto_GetBaseAccountName(j);
      if DBReadByte(j,p,'ChatRoom',0)=1 then
      begin
        isUnicode:=false;
        tt:=tmpl_chat;
      end
      else
      begin
        isUnicode:=true;
        tt:=tmpl_pm;
      end;
      if SimpleMode<>BST_UNCHECKED then
        i:=0
      else
        i:=FindProto(p);
      s:=GetMacros(tt,i);
      // not empty and not disabled
      if (s<>nil) and (uint_ptr(s)<>uint_ptr(-1)) then
      begin
        if StrScanW(s,'{')<>nil then
          SendRTF(CurWin,s,isUnicode,UserCP)
        else
        begin
          if isUnicode then
            SendMessageW(CurWin,EM_REPLACESEL,0,tlparam(s))
          else
          begin
            SendMessageA(CurWin,EM_REPLACESEL,0,tlparam(WideToAnsi(s,p,UserCP)));
            mFreeMem(p);
          end;
        end;
        mFreeMem(s);
      end;
      result:=1;
    end;
  end;
end;