/[winpt]/trunk/PTD/PTD.cpp
ViewVC logotype

Diff of /trunk/PTD/PTD.cpp

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 32 by twoaday, Mon Oct 24 08:03:48 2005 UTC revision 46 by werner, Fri Oct 28 12:57:05 2005 UTC
# Line 1  Line 1 
1  /* PTD.cpp - Privacy Tray Dynamic  /* PTD.cpp - Privacy Tray Dynamic
2   *      Copyright (C) 2002-2005 Timo Schulz   *      Copyright (C) 2002-2005 Timo Schulz
3   *   *
4   * This file is part of WinPT.   * This file is part of WinPT.
5   *   *
6   * WinPT is free software; you can redistribute it and/or modify   * WinPT is free software; you can redistribute it and/or modify
7   * it under the terms of the GNU General Public License as published by   * it under the terms of the GNU General Public License as published by
8   * the Free Software Foundation; either version 2 of the License, or   * the Free Software Foundation; either version 2 of the License, or
9   * (at your option) any later version.   * (at your option) any later version.
10   *   *
11   * WinPT is distributed in the hope that it will be useful,   * WinPT is distributed in the hope that it will be useful,
12   * but WITHOUT ANY WARRANTY; without even the implied warranty of   * but WITHOUT ANY WARRANTY; without even the implied warranty of
13   * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the   * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14   * GNU General Public License for more details.   * GNU General Public License for more details.
15   *   *
16   * You should have received a copy of the GNU General Public License   * You should have received a copy of the GNU General Public License
17   * along with WinPT; if not, write to the Free Software Foundation,   * along with WinPT; if not, write to the Free Software Foundation,
18   * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA   * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
19   */   */
20    
21  #include <windows.h>  #ifdef HAVE_CONFIG_H
22  #include <stdio.h>  #include <config.h>
23  #include <ocidl.h>  #endif
24  #include <olectl.h>  
25    #include <windows.h>
26  #include "wptJPG.h"  #include <windows.h>
27    #include <stdio.h>
28  HINSTANCE glob_hinst;  #include <ocidl.h>
29    #include <olectl.h>
30  /* We need a special section in the DLL for storing our shared data */  
31  #pragma data_seg(".SHARDAT")  #include "wptJPG.h"
32  static HHOOK cbt_hook = NULL;  
33  static DWORD tray_proc_id = 0;  HINSTANCE glob_hinst;
34  static HWND shell_traywnd = 0;  
35  static HWND curr_focus = NULL;  /* We need a special section in the DLL for storing our shared data */
36  static HWND rebar_w32 = NULL;  #pragma data_seg(".SHARDAT")
37  static HWND mstask_swc = NULL;  static HHOOK    cbt_hook = NULL;    /* CTB hook handle. */
38  static HWND systab_c32 = NULL;  static DWORD    tray_proc_id = 0;   /* WinPT PID */
39  #pragma data_seg()  static HWND     shell_traywnd = 0;  /* Tray window handle. */
40    static HWND     curr_focus = NULL;  /* Current window focus handle. */
41  static unsigned * journ_keys = 0;  static HWND     rebar_w32 = NULL;
42  static unsigned key_idx = 0;  static HWND     mstask_swc = NULL;
43  static unsigned nkeys = 0;  static HWND     systab_c32 = NULL;
44  static HHOOK journ_hook = NULL;  #pragma data_seg()
45    
46    static unsigned *journ_keys = 0;
47  static LRESULT CALLBACK  static unsigned key_idx = 0;
48  PTD_CBT_proc (int code, WPARAM wparam, LPARAM lparam)  static unsigned nkeys = 0;
49  {  static HHOOK journ_hook = NULL;     /* Journaling hook  handle. */
50      HWND curr_hwnd = NULL;        
51      DWORD proc_id = 0;  
52        static LRESULT CALLBACK
53      if (code >= 0 && code == HCBT_SETFOCUS) {  PTD_CBT_proc (int code, WPARAM wparam, LPARAM lparam)
54          /* A window is about to receive the keyboard focus */            {
55                HWND curr_hwnd = NULL;      
56          curr_hwnd = (HWND)wparam;      DWORD proc_id = 0;
57          GetWindowThreadProcessId( curr_hwnd, &proc_id );      
58          /* Only if the current window is different from this window list,      if (code >= 0 && code == HCBT_SETFOCUS) {
59             we set the new focus. For more information read the hint in          /* A window is about to receive the keyboard focus */          
60             PTD_initialize. */          
61          if ((proc_id != tray_proc_id)          curr_hwnd = (HWND)wparam;
62               && (curr_hwnd != NULL)          GetWindowThreadProcessId( curr_hwnd, &proc_id );
63               && (curr_hwnd != curr_focus)          /* Only if the current window is different from this window list,
64               && (curr_hwnd != shell_traywnd)             we set the new focus. For more information read the hint in
65               && (curr_hwnd != systab_c32)             PTD_initialize. */
66               && (curr_hwnd != mstask_swc)          if ((proc_id != tray_proc_id)
67               && (curr_hwnd != rebar_w32)) {               && (curr_hwnd != NULL)
68              curr_focus = curr_hwnd;               && (curr_hwnd != curr_focus)
69          }               && (curr_hwnd != shell_traywnd)
70      }               && (curr_hwnd != systab_c32)
71                     && (curr_hwnd != mstask_swc)
72      return  CallNextHookEx (cbt_hook , code, wparam, lparam);               && (curr_hwnd != rebar_w32)) {
73  }              curr_focus = curr_hwnd;
74            }
75        }
76  /* Return the last selected window */      
77  HWND      return  CallNextHookEx (cbt_hook , code, wparam, lparam);
78  PTD_get_curr_hwnd (void)  }
79  {  
80      return curr_focus;  
81  }  /* Return the last selected window */
82    extern "C" HWND
83    PTD_get_curr_hwnd (void)
84  /* Initialize CTB hook and try to find the system windows. */  {
85  BOOL      return curr_focus;
86  PTD_initialize (void)  }
87  {  
88      tray_proc_id = GetCurrentProcessId ();  
89      cbt_hook = SetWindowsHookEx (WH_CBT, PTD_CBT_proc, glob_hinst, 0);  /* Initialize CTB hook and try to find the system windows. */
90      if (cbt_hook == NULL)  extern "C" BOOL
91          return FALSE;  PTD_initialize (void)
92        {
93      /* Okay, what are we doing here:      tray_proc_id = GetCurrentProcessId ();
94       * In the past I used the Spy++ application to find out why the old current window      cbt_hook = SetWindowsHookEx (WH_CBT, PTD_CBT_proc, glob_hinst, 0);
95       * doesn't work on so much systems. Now we try to use the computer based training      if (cbt_hook == NULL)
96       * hook, more precise the HCBT_SETFOCUS to find out the last window focus. But to          return FALSE;
97       * succeed we need to ignore some windows because otherwise our own window or a      
98       * window from the taskbar would be recognized.      /* Okay, what are we doing here:
99       *       * In the past I used the Spy++ application to find out why the old current
100       * Here is what the Spy++ says about the windows order:       * window doesn't work on so much systems. Now we try to use the computer
101       * Shell_TrayWnd       * based training hook, more precise the HCBT_SETFOCUS to find out the
102       *  \ ReBarWindow32       * last window focus. But to succeed we need to ignore some windows
103       *                \ MSTaskSwWClass       * because otherwise our own window or a window from the taskbar
104       *                               \ SysTabControl32       * would be recognized.
105       *       *
106       * As a result we need to ignore those windows to prevent failured in the code.       * Here is what the Spy++ says about the windows order:
107       */       * Shell_TrayWnd
108      shell_traywnd = FindWindowEx (NULL, NULL, "Shell_TrayWnd", NULL);       *  \ ReBarWindow32
109      rebar_w32 = FindWindowEx (shell_traywnd, NULL, "ReBarWindow32", NULL);       *                \ MSTaskSwWClass
110      mstask_swc = FindWindowEx (rebar_w32, NULL, "MSTaskSwWClass", NULL);       *                               \ SysTabControl32
111      systab_c32 = FindWindowEx (mstask_swc, NULL, "SysTabControl32", NULL);       *
112             * As a result we need to ignore those windows to prevent failured
113      /*_log_box ("tray_proc_id=%u cbt_hook=%p shell_traywnd=%p rebar_w32=%p "       * in the code.
114                  "mstask_swc=%p systab_c32=%p",       */
115                  tray_proc_id, cbt_hook, shell_traywnd, rebar_w32,      shell_traywnd = FindWindowEx (NULL, NULL, "Shell_TrayWnd", NULL);
116                  mstask_swc, systab_c32);*/      rebar_w32 = FindWindowEx (shell_traywnd, NULL, "ReBarWindow32", NULL);
117            mstask_swc = FindWindowEx (rebar_w32, NULL, "MSTaskSwWClass", NULL);
118      return TRUE;      systab_c32 = FindWindowEx (mstask_swc, NULL, "SysTabControl32", NULL);
119  }      
120        /*log_foo ("tray_proc_id=%u cbt_hook=%p shell_traywnd=%p rebar_w32=%p "
121                   "mstask_swc=%p systab_c32=%p",
122  /* Remove the CTB hook from the system and reset all variables. */                 tray_proc_id, cbt_hook, shell_traywnd, rebar_w32,
123  void                 mstask_swc, systab_c32);*/
124  PTD_delete (void)      
125  {      return TRUE;
126      if (!cbt_hook)  }
127          return;  
128      UnhookWindowsHookEx (cbt_hook);  
129      cbt_hook = NULL;  /* Remove the CTB hook from the system and reset all variables. */
130      shell_traywnd = NULL;  extern "C" void
131      tray_proc_id = 0;  PTD_delete (void)
132  }  {
133        if (!cbt_hook)
134            return;
135  /* Return if the CTB hook is currently used. */      UnhookWindowsHookEx (cbt_hook);
136  int      cbt_hook = NULL;
137  PTD_is_used (void)      shell_traywnd = NULL;
138  {      tray_proc_id = 0;
139      return shell_traywnd && cbt_hook;  }
140  }  
141    
142    /* Return if the CTB hook is currently used. */
143  static LRESULT CALLBACK  extern "C" int
144  PTD_playback_proc (int code, WPARAM wparam, LPARAM lparam)  PTD_is_used (void)
145  {  {
146      LPEVENTMSG em;      return shell_traywnd && cbt_hook;
147        }
148      if (code == HC_SKIP) {  
149          key_idx++;  
150          if (key_idx == nkeys) {  static LRESULT CALLBACK
151              UnhookWindowsHookEx (journ_hook);  PTD_playback_proc (int code, WPARAM wparam, LPARAM lparam)
152              journ_hook = NULL;  {
153          }      LPEVENTMSG em;
154          return 0;      
155      }      if (code == HC_SKIP) {
156      else if (code == HC_GETNEXT) {          key_idx++;
157          /* Here is an overview what the event message struct can contain:          if (key_idx == nkeys) {
158           * message - WM_KEYUP, WM_KEYDOWN, WM_SYSKEYUP, WM_SYSKEYDOWN:              UnhookWindowsHookEx (journ_hook);
159           * paramL - specifies the virtual key code of the key that was pressed.              journ_hook = NULL;
160           * paramH - specifies the scan code.                                      }
161           */          return 0;
162          em = (LPEVENTMSG )lparam;      }
163          if (journ_keys[key_idx] & 0x8000)      else if (code == HC_GETNEXT) {
164              em->message = journ_keys[key_idx] & 0x4000 ? WM_SYSKEYDOWN : WM_KEYDOWN;          /* Here is an overview what the event message struct can contain:
165          else           * message - WM_KEYUP, WM_KEYDOWN, WM_SYSKEYUP, WM_SYSKEYDOWN:
166              em->message = journ_keys[key_idx] & 0x4000 ? WM_SYSKEYUP : WM_KEYUP;           * paramL - specifies the virtual key code of the key that was pressed.
167          em->paramL = LOBYTE( journ_keys[key_idx] )           * paramH - specifies the scan code.                            
168              | (MapVirtualKey (LOBYTE (journ_keys[key_idx]), 0) << 8);           */
169          em->paramH = 1;          em = (LPEVENTMSG )lparam;
170          em->time = GetTickCount ();          if (journ_keys[key_idx] & 0x8000)
171          return 0;              em->message = journ_keys[key_idx] & 0x4000 ? WM_SYSKEYDOWN : WM_KEYDOWN;
172      }          else
173                    em->message = journ_keys[key_idx] & 0x4000 ? WM_SYSKEYUP : WM_KEYUP;
174      return CallNextHookEx (journ_hook, code, wparam, lparam);          em->paramL = LOBYTE( journ_keys[key_idx] )
175  } /* PTD_Playback_proc */              | (MapVirtualKey (LOBYTE (journ_keys[key_idx]), 0) << 8);
176            em->paramH = 1;
177            em->time = GetTickCount ();
178            return 0;
179  BOOL      }
180  PTD_keyb_send (UINT *keys, UINT n_keys)      
181  {      return CallNextHookEx (journ_hook, code, wparam, lparam);
182      MSG msg;  } /* PTD_Playback_proc */
183      journ_keys = keys;  
184      key_idx = 0;  
185      nkeys =  n_keys;      
186        extern "C" BOOL
187      if (journ_hook)  PTD_keyb_send (UINT *keys, UINT n_keys)
188          return FALSE;  {
189            MSG msg;
190      while (GetAsyncKeyState (VK_MENU) & 0x8000      journ_keys = keys;
191              || GetAsyncKeyState (VK_SHIFT) & 0x8000      key_idx = 0;
192              || GetAsyncKeyState (VK_CONTROL) & 0x8000) {      nkeys =  n_keys;    
193          if (PeekMessage (&msg, NULL, 0, 0, PM_REMOVE)) {      
194              if (msg.message == WM_QUIT) {      if (journ_hook)
195                  PostMessage (msg.hwnd, msg.message, msg.wParam, msg.lParam);          return FALSE;
196                  return FALSE;      
197              }      while (GetAsyncKeyState (VK_MENU) & 0x8000
198              TranslateMessage (&msg);              || GetAsyncKeyState (VK_SHIFT) & 0x8000
199              DispatchMessage (&msg);              || GetAsyncKeyState (VK_CONTROL) & 0x8000) {
200          }          if (PeekMessage (&msg, NULL, 0, 0, PM_REMOVE)) {
201      }              if (msg.message == WM_QUIT) {
202      journ_hook = SetWindowsHookEx (WH_JOURNALPLAYBACK,                  PostMessage (msg.hwnd, msg.message, msg.wParam, msg.lParam);
203                                     (HOOKPROC)PTD_playback_proc,                  return FALSE;
204                                     glob_hinst, 0);              }
205      if (journ_hook == NULL)              TranslateMessage (&msg);
206          return FALSE;              DispatchMessage (&msg);
207                }
208      while (journ_hook) {      }
209          if (PeekMessage (&msg, NULL, 0, 0, PM_REMOVE)) {      journ_hook = SetWindowsHookEx (WH_JOURNALPLAYBACK,
210              if (msg.message == WM_QUIT) {                                     (HOOKPROC)PTD_playback_proc,
211                  if (journ_hook)                                     glob_hinst, 0);
212                      UnhookWindowsHookEx (journ_hook);      if (journ_hook == NULL)
213                  PostMessage (msg.hwnd, msg.message, msg.wParam, msg.wParam);          return FALSE;
214              }      
215              TranslateMessage (&msg);      while (journ_hook) {
216              DispatchMessage (&msg);          if (PeekMessage (&msg, NULL, 0, 0, PM_REMOVE)) {
217          }              if (msg.message == WM_QUIT) {
218      }                  if (journ_hook)
219                            UnhookWindowsHookEx (journ_hook);
220      return TRUE;                  PostMessage (msg.hwnd, msg.message, msg.wParam, msg.wParam);
221  }              }
222                TranslateMessage (&msg);
223                DispatchMessage (&msg);
224  const char *          }
225  PTD_get_version (void)      }
226  {      
227      return "0.8.1";      return TRUE;
228  }  }
229    
230    
231  /* Display a JPG picture in the given window at the given point. */  /* Return version of the PTD library. */
232  int  extern "C" const char *
233  PTD_jpg_show (HWND hwnd, POINT *p, LPCSTR name)  PTD_get_version (void)
234  {  {
235      CJPG jpg;      return PACKAGE_VERSION;
236      HDC hdc;  }
237      POINT p2;  
238      BOOL rc;  
239    /* Display a JPG picture in the given window at the given point. */
240      rc = jpg.Load (name);  extern "C" int
241      if (!rc)  PTD_jpg_show (HWND hwnd, POINT *p, LPCSTR name)
242          return -1;  {
243      hdc = GetWindowDC (hwnd);      CJPG jpg;
244      rc = jpg.UpdateSizeOnDC (hdc);      HDC hdc;
245      if (!rc) {      POINT p2;
246          ReleaseDC (hwnd, hdc);      BOOL rc;
247          return -2;  
248      }      rc = jpg.load (name);
249        if (!rc)
250      p2.x = jpg.m_Width;          return -1; /* XXX: use real return code. */
251      p2.y = jpg.m_Height;      hdc = GetWindowDC (hwnd);
252      rc = jpg.Show (hdc, p, &p2, 0, 0);      rc = jpg.updateSizeOnDC (hdc);
253        if (!rc) {
254      ReleaseDC (hwnd, hdc);          ReleaseDC (hwnd, hdc);
255      jpg.FreePictureData ();          return -2; /* XXX: use real return code. */
256      return rc;      }
257  }  
258        p2.x = jpg.m_Width;
259        p2.y = jpg.m_Height;
260                        rc = jpg.show (hdc, p, &p2, 0, 0);
261  BOOL WINAPI  
262  DllMain (HINSTANCE hinst, DWORD reason, LPVOID reserv)      ReleaseDC (hwnd, hdc);
263  {      jpg.freePictureData ();
264      switch (reason)  {      return rc;
265      case DLL_PROCESS_ATTACH:  }
266          glob_hinst = hinst;  
267          break;  
268      case DLL_THREAD_ATTACH:                    
269          break;  BOOL WINAPI
270      case DLL_THREAD_DETACH:    DllMain (HINSTANCE hinst, DWORD reason, LPVOID reserv)
271          break;  {
272      case DLL_PROCESS_DETACH:      switch (reason)  {
273          break;      case DLL_PROCESS_ATTACH:
274      }          glob_hinst = hinst;
275      return TRUE;          break;
276  }      case DLL_THREAD_ATTACH:  
277            break;
278        case DLL_THREAD_DETACH:  
279            break;
280        case DLL_PROCESS_DETACH:
281            break;
282        }
283        return TRUE;
284    }
285    

Legend:
Removed from v.32  
changed lines
  Added in v.46

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26