/[winpt]/trunk/Src/wptW32API.cpp
ViewVC logotype

Diff of /trunk/Src/wptW32API.cpp

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

revision 22 by twoaday, Wed Aug 10 11:33:35 2005 UTC revision 190 by twoaday, Mon Mar 27 10:05:14 2006 UTC
# Line 1  Line 1 
1  /* wptW32API.cpp - Common W32 API functions  /* wptW32API.cpp - Common W32 API functions
2   *      Copyright (C) 2001, 2002, 2003 Timo Schulz   *      Copyright (C) 2001, 2002, 2003, 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 <sys/types.h>  #endif
24  #include <sys/stat.h>  
25  #include <shellapi.h>  #include <windows.h>
26  #include <shlobj.h>  #include <stdio.h>
27  #include <commctrl.h>  #include <sys/types.h>
28    #include <sys/stat.h>
29  #include "wptNLS.h"  #include <shellapi.h>
30  #include "wptW32API.h"  #include <shlobj.h>
31  #include "wptErrors.h"  #include <commctrl.h>
32  #include "wptVersion.h"  #include <time.h>
33  #include "wptTypes.h"  
34    #include "wptNLS.h"
35    #include "wptW32API.h"
36  extern "C" void _SHFree (void *p);  #include "wptErrors.h"
37    #include "wptVersion.h"
38  /*  #include "wptTypes.h"
39   * The the text of a menu item.  
40   */  
41  void  extern "C" void _SHFree (void *p);
42  set_menu_text (HMENU menu, int m_uid, const char *text)  
43  {  
44      MENUITEMINFO mii;  static void
45      char menu_text[80];  set_menu_text_ext (HMENU menu, int by_pos, int m_uid, const char *text)
46        {
47      memset (&mii, 0, sizeof (mii));      MENUITEMINFO mii;
48      mii.cbSize = sizeof (mii);      
49      mii.fMask = MIIM_TYPE;      memset (&mii, 0, sizeof mii);
50      mii.dwTypeData = menu_text;      mii.cbSize = sizeof mii;
51      mii.cch = sizeof (menu_text);      mii.fMask = MIIM_TYPE;
52      GetMenuItemInfo (menu, m_uid, FALSE, &mii);      mii.fType = MFT_STRING;
53            mii.dwTypeData = (char *) text;
54      memset (&mii, 0, sizeof mii);      SetMenuItemInfo (menu, m_uid, by_pos? TRUE : FALSE, &mii);
55      mii.cbSize = sizeof mii;  }
56      mii.fMask = MIIM_TYPE;  
57      mii.fType = MFT_STRING;  
58      mii.dwTypeData = (char *) text;  /* Set the text of a menu item @m_uid to @text. */
59      SetMenuItemInfo (menu, m_uid, FALSE, &mii);  void
60  } /* set_menu_text */  set_menu_text (HMENU menu, UINT m_uid, const char *text)
61    {
62        set_menu_text_ext (menu, 0, m_uid, text);
63  void  }
64  set_menu_state (HMENU menu, int m_uid, int state)  
65  {        
66      MENUITEMINFO mii;  /* Set the text of a menu item with the position @pos to @text. */
67    void
68      memset( &mii, 0, sizeof (mii) );  set_menu_text_bypos (HMENU menu, UINT pos, const char *text)
69      mii.cbSize = sizeof (mii);  {
70      mii.fMask = MIIM_STATE;      set_menu_text_ext (menu, 1, pos, text);
71      mii.fState = state;  }
72      SetMenuItemInfo (menu, m_uid, FALSE, &mii);  
73  } /* set_menu_state */  
74    /* Set the state of a menu item @m_uid to @state. */
75    void
76    set_menu_state (HMENU menu, UINT m_uid, UINT state)
77  const char *  {      
78  get_filename_dlg (HWND hwnd, int id, const char * title,      MENUITEMINFO mii;
79                    const char * filter, const char * name)  
80  {      memset (&mii, 0, sizeof (mii));
81      static char file[512] = "";      mii.cbSize = sizeof (mii);
82      OPENFILENAME open;      mii.fMask = MIIM_STATE;
83            mii.fState = state;
84      if (name && strlen (name) < (sizeof (file)-1))      SetMenuItemInfo (menu, m_uid, FALSE, &mii);
85          strcpy (file, name);  }
86      else  
87          memset (file, 0, sizeof (file));  
88      if (!filter)  /* Retrieve the state of the menu item @m_uid and return it. */
89          filter = _("All Files (*.*)\0*.*");  UINT
90      memset (&open, 0, sizeof (open));  get_menu_state (HMENU menu, UINT m_uid)
91      open.lStructSize = sizeof (OPENFILENAME);  {
92      open.hInstance = glob_hinst;      MENUITEMINFO mii;
93      open.lpstrTitle = title;  
94      open.lpstrFilter = filter;      memset (&mii, 0, sizeof (mii));
95      open.hwndOwner = hwnd;      mii.cbSize = sizeof (mii);
96      open.lpstrFile = file;      mii.fMask = MIIM_STATE;
97      open.nMaxFile = sizeof (file) - 1;      GetMenuItemInfo (menu, m_uid, FALSE, &mii);
98      open.Flags = 0;      return mii.fState;
99    }
100      if (id == 0 && GetOpenFileName (&open))  
101          return open.lpstrFile;  
102      else if (id == 1 && GetSaveFileName (&open))  enum {
103          return open.lpstrFile;      CDLG_FILE_OPEN = 0,
104            CDLG_FILE_SAVE = 1
105      return NULL;  };
106  } /* get_filename_dlg */  
107    /* Use the common dialog to request a file from the user.
108       id can be either FILE_OPEN or FILE_SAVE.
109  const char *     The return value is the file name or NULL if cancel was chosen. */
110  get_folder_dlg (HWND hwnd, const char * title, const char * name)  const char *
111  {  get_filename_dlg (HWND hwnd, int id, const char * title,
112      static char folder[MAX_PATH] = "";                    const char * filter, const char * name)
113      BROWSEINFO bi;  {
114      ITEMIDLIST * il;      static char file[512] = "";
115        OPENFILENAME open;
116      memset (&bi, 0, sizeof (bi));      
117      bi.hwndOwner = hwnd;      if (name && strlen (name) < (sizeof (file)-1))
118      if (title)          strcpy (file, name);
119          bi.lpszTitle = title;      else
120      if (name && strlen (name) < MAX_PATH-1)          memset (file, 0, sizeof (file));
121          strcpy (folder, name);      if (!filter)
122      else          filter = "All Files (*.*)\0*.*\0\0";
123          memset (folder, 0, sizeof (folder));      /* XXX: problem with gettext because of the 'artificial'
124      il = SHBrowseForFolder (&bi);              double string termination!. */
125      if (il) {      memset (&open, 0, sizeof (open));
126          SHGetPathFromIDList (il, folder);      open.lStructSize = sizeof (OPENFILENAME);
127          _SHFree (il);      open.hInstance = glob_hinst;
128          return folder;      open.lpstrTitle = title;
129      }      open.lpstrFilter = filter;
130      return NULL;      open.hwndOwner = hwnd;
131  }      open.lpstrFile = file;
132        open.nMaxFile = sizeof (file) - 1;
133        if (id == CDLG_FILE_OPEN)
134  char*          open.Flags = OFN_FILEMUSTEXIST|OFN_PATHMUSTEXIST;
135  get_clip_text (HWND hwnd)      else
136  {          open.Flags = OFN_OVERWRITEPROMPT;
137      HANDLE clipmem;  
138      char *cliptxt, *p;        if (id == CDLG_FILE_OPEN && GetOpenFileName (&open))
139      int len;          return open.lpstrFile;
140            else if (id == CDLG_FILE_SAVE && GetSaveFileName (&open))
141      if (OpenClipboard (hwnd) == FALSE)          return open.lpstrFile;
142          return NULL;      
143      clipmem = GetClipboardData (CF_TEXT);      return NULL;
144      if (clipmem == NULL) {  }
145          p = NULL;  
146          goto leave;  const char*
147      }  get_filesave_dlg (HWND hwnd, const char *title,
148      cliptxt = (char *) GlobalLock (clipmem);                    const char *filter, const char *name)
149      if (cliptxt == NULL) {  {
150          p = NULL;      return get_filename_dlg (hwnd, CDLG_FILE_SAVE, title, filter, name);
151          goto leave;  }
152      }  
153        const char*
154      len =  strlen (cliptxt);  get_fileopen_dlg (HWND hwnd, const char *title, const char *filter,
155      p = new char[len + 1];                    const char *name)
156      if (!p)  {
157          BUG (NULL);      return get_filename_dlg (hwnd, CDLG_FILE_OPEN, title, filter, name);
158      memcpy (p, cliptxt, len);  }
159      p[len] = '\0';  
160      GlobalUnlock (clipmem);  
161        /* Use the common dialog to allow the user to select a folder.
162  leave:     The return value is either the folder path or NULL if cancel was chosen. */
163      CloseClipboard ();  const char*
164      return p;  get_folder_dlg (HWND hwnd, const char *title, const char *name)
165  } /* get_clip_text */  {
166        static char folder[MAX_PATH+1] = "";
167        BROWSEINFO bi;
168  int      ITEMIDLIST *il;
169  set_clip_text (HWND hwnd, const char *text, int nbytes)  
170  {          memset (&bi, 0, sizeof (bi));
171      HANDLE clipmem;      bi.hwndOwner = hwnd;
172      int rc = 0;      if (title)
173      char *p;          bi.lpszTitle = title;
174            if (name && strlen (name) < MAX_PATH-1)
175      if (OpenClipboard (hwnd) == FALSE)            strcpy (folder, name);
176          return WPTERR_CLIP_OPEN;      else
177      EmptyClipboard ();          memset (folder, 0, sizeof (folder));
178        il = SHBrowseForFolder (&bi);
179      clipmem = GlobalAlloc (GHND, nbytes + 1);      if (il) {
180      if (clipmem == NULL)          SHGetPathFromIDList (il, folder);
181          BUG (NULL);          _SHFree (il);
182      p = (char *) GlobalLock (clipmem);          return folder;
183      if (p == NULL) {      }
184          rc = WPTERR_GENERAL;;      return NULL;
185          goto leave;      }
186      }  
187      memcpy (p, text, nbytes);  
188      p[nbytes] = '\0';  /* Return the clipboard contents as a string or NULL
189           if the clipboard does not contain text. */
190      GlobalUnlock (clipmem);  char*
191      SetClipboardData (CF_TEXT, clipmem);  get_clip_text (HWND hwnd)
192        {
193  leave:      HANDLE clipmem;
194      CloseClipboard ();      char *cliptxt, *p;  
195      return rc;      int len;
196  } /* set_clip_text */      
197        if (OpenClipboard (hwnd) == FALSE)
198            return NULL;
199  int      clipmem = GetClipboardData (CF_TEXT);
200  set_clip_text2 (HWND hwnd, const char *text, int nbytes, int head_foot)      if (clipmem == NULL) {
201  {          p = NULL;
202      char *p, *new_text;          goto leave;
203        }
204      p = get_clip_text (hwnd);      cliptxt = (char *) GlobalLock (clipmem);
205      if (!p)      if (cliptxt == NULL) {
206          return WPTERR_CLIP_GET;          p = NULL;
207      new_text = new char [strlen (p)+strlen (text)+8];          goto leave;
208      if (!new_text)      }
209          BUG (0);      
210      if (head_foot == 0)      len =  strlen (cliptxt);
211          sprintf (new_text, "%s\r\n%s\r\n\r\n", text, p);      p = new char[len + 1];
212      else      if (!p)
213          sprintf (new_text, "%s\n%s\n\n", p, text);          BUG (NULL);
214      set_clip_text (hwnd, new_text, strlen (new_text)+1);      memcpy (p, cliptxt, len);
215      free_if_alloc (p);      p[len] = '\0';
216      free_if_alloc (new_text);      GlobalUnlock (clipmem);
217      return 0;      
218  }  leave:
219        CloseClipboard ();
220        return p;
221  char*  }
222  make_filename( const char *path, const char *file, const char *ext )  
223  {  
224      char *p;  /* Set @text as the new clipboard content. */
225      size_t size = 0;  int
226    set_clip_text (HWND hwnd, const char *text, int nbytes)
227      if( path && *path )  {    
228          size += strlen( path );      HANDLE clipmem;
229      if( file && *file )      int rc = 0;
230          size += strlen( file );      char *p;
231      if( ext && *ext )      
232          size += strlen( ext );      if (OpenClipboard (hwnd) == FALSE)  
233      p = new char[size + 4];          return WPTERR_CLIP_OPEN;
234      memset( p, 0, size );      EmptyClipboard ();
235      if( path ) {  
236          strcat( p, path );      clipmem = GlobalAlloc (GHND, nbytes + 1);
237          if( path[strlen( path ) -1] != '\\' )      if (clipmem == NULL)
238              strcat( p, "\\" );          BUG (NULL);
239      }      p = (char *) GlobalLock (clipmem);
240      if( file )      if (p == NULL) {
241          strcat( p, file );          rc = WPTERR_GENERAL;;
242      if( ext ) {          goto leave;    
243          strcat( p, "." );      }
244          strcat( p, ext );      memcpy (p, text, nbytes);
245      }      p[nbytes] = '\0';
246      return p;      
247  } /* make_filename */      GlobalUnlock (clipmem);
248        SetClipboardData (CF_TEXT, clipmem);
249        GlobalFree (clipmem);
250  /* return 0 if it exists, otherwise >0. */      
251  int  leave:
252  file_exist_check (const char * fname)      CloseClipboard ();
253  {            return rc;
254      HANDLE fh;    }
255    
256      fh = CreateFile( fname, GENERIC_READ, FILE_SHARE_READ,  
257                       NULL, OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, NULL );  /* Append or prepend some text to the clipboard contents.
258      if( fh == INVALID_HANDLE_VALUE )     If as_footer = 1, append the text otherwise prepend. */
259          return WPTERR_FILE_EXIST;  int
260      CloseHandle( fh );  set_clip_text2 (HWND hwnd, const char *text, int nbytes, int as_footer)
261      return 0;  {
262  } /* file_exist_check */      char *p, *new_text;
263    
264        p = get_clip_text (hwnd);
265  int      if (!p)
266  dir_exist_check( const char *dir )          return WPTERR_CLIP_GET;
267  {      new_text = new char [strlen (p)+strlen (text)+8];
268      struct stat statbuf;          if (!new_text)
269                BUG (0);
270      if( stat( dir, &statbuf ) == -1 )      if (as_footer == 0)
271          return WPTERR_GENERAL;          sprintf (new_text, "%s\r\n%s\r\n\r\n", text, p);
272      if( statbuf.st_mode & _S_IFDIR )      else
273          return 0;          sprintf (new_text, "%s\n%s\n\n", p, text);
274      return WPTERR_GENERAL;      set_clip_text (hwnd, new_text, strlen (new_text)+1);
275  } /* dir_exist_check */      free_if_alloc (p);
276        free_if_alloc (new_text);
277        return 0;
278  size_t  }
279  get_file_size( const char *fname )  
280  {  
281      size_t fsize;  /* Make a file name out of the path @path, the file @file and
282      HANDLE fh;     an extension. @ext.
283       Return value: the full file name on success. */
284      fh = CreateFile( fname, GENERIC_READ, FILE_SHARE_READ,  char*
285                      NULL, OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, NULL );  make_filename (const char *path, const char *file, const char *ext)
286      if( fh == INVALID_HANDLE_VALUE )  {
287          return 0;      char *p;
288      fsize = GetFileSize( fh, NULL );      size_t size = 0;
289      if( fsize == 0xFFFFFFFF )  
290          fsize = 0;      if( path && *path )
291      CloseHandle( fh );          size += strlen( path );
292      return fsize;      if( file && *file )
293  } /* get_file_size */          size += strlen( file );
294        if( ext && *ext )
295            size += strlen( ext );
296  int      p = new char[size + 4];
297  init_file_lock( LOCK *ctx, const char *file )      memset( p, 0, size );
298  {      if( path ) {
299                strcat( p, path );
300      ctx->size = get_file_size( file );          if( path[strlen( path ) -1] != '\\' )
301      ctx->file = m_strdup( file );              strcat( p, "\\" );
302      ctx->fh = CreateFile( file, GENERIC_READ, FILE_SHARE_READ, NULL,      }
303                           OPEN_ALWAYS, 0, NULL );      if( file )
304      if( ctx->fh == INVALID_HANDLE_VALUE )          strcat( p, file );
305          return WPTERR_GENERAL;      if( ext ) {
306      if( LockFile( ctx->fh, 0, 0, ctx->size, 0 ) == FALSE ) {          strcat( p, "." );
307          CloseHandle( ctx->fh );          strcat( p, ext );
308          ctx->fh = INVALID_HANDLE_VALUE;      }
309          ctx->size = 0;      return p;
310          free( ctx->file );  }
311          return WPTERR_GENERAL;  
312      }  
313      return 0;  /* Generate a file name from a special dirctory. */
314  } /* init_file_lock */  char*
315    make_special_filename (int folder, const char *file, const char *ext)
316    {
317  void      BOOL ec;
318  release_file_lock( LOCK *ctx )      char path[MAX_PATH], *p;
319  {      size_t n=0;
320      free_if_alloc( ctx->file );  
321      ctx->file = NULL;      /* MSDN: buf must be at least MAX_PATH=256 bytes */
322      ctx->size = 0;      ec = SHGetSpecialFolderPath (HWND_DESKTOP, path, folder, TRUE);
323      CloseHandle( ctx->fh );      if (ec != 1) {
324  } /* release_file_lock */          log_debug ("SHGetSpecialFolderPath() failed\r\n", (int)GetLastError ());
325            return NULL;
326        }
327  int  
328  dialog_box_param( HINSTANCE hinst, LPCTSTR name, HWND parent, DLGPROC fnc,      n = strlen (path)+1;
329                                    LPARAM param, LPCTSTR title, int title_id )      if (file)
330  {          n += strlen (file)+1;
331      #ifndef LANG_DE      if (ext)
332      if( FindWindowEx( GetDesktopWindow(), NULL, NULL, title ) )          n += strlen (ext)+1;
333          return -1;            p = new char[n+2];
334      #else      if (!p)
335      char strdesc[256];          BUG (0);
336      LoadString( glob_hinst, title_id, strdesc, sizeof (strdesc) -1 );      memset (p, 0, n+2);
337      if( FindWindowEx( GetDesktopWindow(), NULL, NULL, strdesc ) )      strcpy (p, path);    
338          return -1;      if (file) {
339      #endif          strcat (p, "\\");
340                strcat (p, file);
341      return DialogBoxParam( hinst, name, parent, fnc, param );      }
342  } /* dialog_box_param */      if (ext)
343            strcat (p, ext);
344        return p;
345  int  }
346  msg_box( HWND hwnd, const char *text, const char *title, int mode )  
347  {  
348      mode |= MB_SETFOREGROUND;  /* return 0 if the file @fname exists, otherwise >0. */
349      mode |= MB_TASKMODAL;  int
350      mode |= MB_TOPMOST;  file_exist_check (const char *fname)
351      return MessageBox(hwnd, text, title, mode);  {
352  } /* msg_box */      struct stat st;
353        if (stat (fname, &st) == -1)
354            return WPTERR_FILE_EXIST;
355  void      return 0;
356  set_active_window( HWND dlg )  }
357  {        
358      activ_hwnd = dlg;  
359  } /* set_active_window */  /* Check if the current folder exists.
360       Return 0 for success. */
361  void  int
362  reset_active_window( void )  dir_exist_check (const char *dir)
363  {        {
364      activ_hwnd = NULL;      struct stat statbuf;    
365  } /* reset_active_window */      
366        if (stat (dir, &statbuf) == -1)
367            return WPTERR_GENERAL;
368  static DWORD CALLBACK      if (statbuf.st_mode & _S_IFDIR)
369  reminder_thread( void *ctx )          return 0;
370  {      return WPTERR_GENERAL;
371      reminder_ctx_s *c = (reminder_ctx_s *)ctx;  }
372    
373      Sleep( c->msecs );  
374      SetForegroundWindow( activ_hwnd );  /* Return the file size of the given file @fname. */
375    DWORD
376      return 0;  get_file_size (const char *fname)
377  } /* reminder_thread */  {
378        DWORD fsize;
379  HANDLE      HANDLE fh;
380  window_reminder( struct reminder_ctx_s *ctx )  
381  {      fh = CreateFile (fname, GENERIC_READ, FILE_SHARE_READ,
382      DWORD tid = 0;                       NULL, OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, NULL);
383            if (fh == INVALID_HANDLE_VALUE)
384      return CreateThread( NULL, 0, reminder_thread, ctx, 0, &tid );          return 0;
385  } /* window_reminder */      fsize = GetFileSize (fh, NULL);
386        if (fsize == 0xFFFFFFFF)
387            fsize = 0;
388  char *      CloseHandle (fh);
389  m_strdup (const char *str)      return fsize;
390  {  }
391      char * p = new char[strlen (str) + 1];  
392      if (p)  
393          strcpy (p, str);  /* Start a dialog with the exception that before it is checked that the
394      return p;     dialog is not already openened. */
395  } /* m_strdup */  int
396    dialog_box_param (HINSTANCE hinst, LPCTSTR name, HWND parent, DLGPROC fnc,
397                      LPARAM param, LPCTSTR title, int title_id)
398  void  {
399  center_window2 (HWND hwndChild, HWND style)      if (FindWindowEx (GetDesktopWindow (), NULL, NULL, title))
400  {              return -1;
401      HWND hwndParent;      return DialogBoxParam (hinst, name, parent, fnc, param);
402      RECT rChild, rParent;      }
403      HDC hdc;  
404      int wChild, hChild, wParent, hParent;      
405      int wScreen, hScreen, xNew, yNew;  /* Wrapper for message box which forces the message box into the
406      int flags = SWP_NOSIZE | SWP_NOZORDER;     foreground and it is displayed always on top. */
407    int
408      hwndParent = GetDesktopWindow ();  msg_box (HWND hwnd, const char *text, const char *title, int mode)
409      GetWindowRect (hwndChild, &rChild);      {
410      wChild = rChild.right - rChild.left;          mode |= MB_SETFOREGROUND;
411      hChild = rChild.bottom - rChild.top;      mode |= MB_TASKMODAL;
412        mode |= MB_TOPMOST;
413      GetWindowRect (hwndParent, &rParent);          return MessageBox(hwnd, text, title, mode);
414      wParent = rParent.right - rParent.left;      }
415      hParent = rParent.bottom - rParent.top;        
416        
417      hdc = GetDC (hwndChild);      /* Safe strdup version (C++ version). */
418      wScreen = GetDeviceCaps (hdc, HORZRES);      char*
419      hScreen = GetDeviceCaps (hdc, VERTRES);      m_strdup (const char *str)
420      ReleaseDC (hwndChild, hdc);        {
421      xNew = rParent.left + ((wParent - wChild) /2);          char *p = new char[strlen (str) + 1];
422      if (xNew < 0)      if (!p)
423          xNew = 0;          BUG (NULL);
424      else if ((xNew+wChild) > wScreen)      strcpy (p, str);
425          xNew = wScreen - wChild;      return p;
426      yNew = rParent.top  + ((hParent - hChild) /2);  }
427      if (yNew < 0)  
428          yNew = 0;  
429      else if ((yNew+hChild) > hScreen)  /* Center the hwndChild relative to parent.
430          yNew = hScreen - hChild;     The style param allows to specificy additional styles (like topmost). */
431      if (style == HWND_TOPMOST || style == HWND_NOTOPMOST)  void
432          flags = SWP_NOMOVE | SWP_NOSIZE;  center_window2 (HWND hwndChild, HWND parent, HWND style)
433      SetWindowPos (hwndChild, style? style : NULL, xNew, yNew, 0, 0, flags);  {    
434  }      HWND hwndParent;
435        RECT rChild, rParent;    
436        HDC hdc;
437  void      int wChild, hChild, wParent, hParent;    
438  center_window (HWND hwndChild)      int wScreen, hScreen, xNew, yNew;
439  {      int flags = SWP_NOSIZE | SWP_NOZORDER;
440      center_window2 (hwndChild, NULL);  
441  }      hwndParent = parent;
442        if (hwndParent == NULL)
443            hwndParent = GetDesktopWindow ();
444        GetWindowRect (hwndChild, &rChild);    
445        wChild = rChild.right - rChild.left;    
446        hChild = rChild.bottom - rChild.top;
447    
448        GetWindowRect (hwndParent, &rParent);    
449        wParent = rParent.right - rParent.left;    
450        hParent = rParent.bottom - rParent.top;      
451        
452        hdc = GetDC (hwndChild);    
453        wScreen = GetDeviceCaps (hdc, HORZRES);    
454        hScreen = GetDeviceCaps (hdc, VERTRES);    
455        ReleaseDC (hwndChild, hdc);      
456        xNew = rParent.left + ((wParent - wChild) /2);    
457        if (xNew < 0)
458            xNew = 0;
459        else if ((xNew+wChild) > wScreen)
460            xNew = wScreen - wChild;
461        yNew = rParent.top  + ((hParent - hChild) /2);
462        if (yNew < 0)
463            yNew = 0;
464        else if ((yNew+hChild) > hScreen)
465            yNew = hScreen - hChild;
466        if (style == HWND_TOPMOST || style == HWND_NOTOPMOST)
467            flags = SWP_NOMOVE | SWP_NOSIZE;
468        SetWindowPos (hwndChild, style? style : NULL, xNew, yNew, 0, 0, flags);
469    }
470    
471    
472    /* Center the given hwndChild window with no special style. */
473    void
474    center_window (HWND hwndChild, HWND hwndParent)
475    {
476        center_window2 (hwndChild, hwndParent, NULL);
477    }
478    
479    
480    /* Retrieve the product verion of the given file @fname.
481       Format: MAJOR.MINOR.PATCH1.PATCH2
482       Return value: 0 on success. */
483    int
484    get_file_version (const char *fname, WORD *major, WORD *minor,
485                      WORD *patch1, WORD *patch2)
486    {
487        VS_FIXEDFILEINFO *inf = {0};
488        char file[MAX_PATH+1] = {0};
489        LPVOID buf, data;
490        DWORD arg;
491        DWORD size;
492        UINT qlen;
493    
494        strncpy (file, fname, MAX_PATH);
495        size = GetFileVersionInfoSize (file, &arg);
496        if (!size)
497            return -1;
498        buf = (LPVOID)new CHAR[size];
499        if (!buf)
500            BUG (NULL);
501        GetFileVersionInfo (file, 0, size, buf);
502    
503        qlen=0;
504        VerQueryValue (buf, "\\", &data, &qlen);
505        if (!qlen) {
506            delete [] (char*)buf;
507            return -1;
508        }
509        inf = (VS_FIXEDFILEINFO*)data;
510    
511        if (major)
512            *major = HIWORD (inf->dwProductVersionMS);
513        if (minor)
514            *minor = LOWORD (inf->dwProductVersionMS);
515        if (patch1)
516            *patch1 = HIWORD (inf->dwProductVersionLS);    
517        if (patch2)
518            *patch2 = LOWORD (inf->dwProductVersionLS);
519    
520        delete [] (char*)buf;
521        return 0;
522    }
523    
524    
525    /* Return date in a format which complies with the
526       system locale settings. */
527    const char*
528    get_locale_date (long tm_t, char *buf, DWORD buflen)
529    {
530        SYSTEMTIME st;
531        struct tm *ptm;
532    
533        ptm = localtime (&tm_t);  
534        st.wYear = (WORD)ptm->tm_year;
535        st.wMonth = (WORD)ptm->tm_mon;
536        st.wDay = (WORD)ptm->tm_mday;
537        st.wYear += 1900;
538        st.wMonth += 1;
539        if (!GetDateFormat (LOCALE_USER_DEFAULT, DATE_SHORTDATE, &st,
540                            NULL, buf, buflen))
541            return NULL;
542        return buf;
543    }
544    
545    
546    /* Generate a temporary file name by using the users
547       temp path and optionally a name @name provided by the caller.
548       Return value: 0 on success. */
549    int
550    get_temp_name (char *buf, DWORD buflen, const char *name)
551    {
552        char tmp[32];
553    
554        if (!name) {
555            sprintf (tmp, "%08lX", GetTickCount ());
556            name = tmp;
557        }
558    
559        /* in the mobile mode we use a local temp folder
560           with the fixed name 'temp'. */
561        if (mobile_mode_active) {
562            _snprintf (buf, buflen-1, "temp\\%s", name);
563            return 0;
564        }
565    
566        if (!GetTempPath (buflen - strlen (name) -2, buf)) {
567            log_debug ("GetTempPath() failed ec=%d\n", (int)GetLastError ());
568            return -1;
569        }
570        strcat (buf, name);
571        return 0;
572    }
573    
574    
575    struct reminder_hd_s {
576        int msecs;
577        HWND dlg;
578        HANDLE hd;
579    };
580    
581    
582    static DWORD CALLBACK
583    foreground_reminder_thread (void *c)
584    {
585        struct reminder_hd_s *ctx = (struct reminder_hd_s *)c;
586        Sleep (ctx->msecs);
587        SetForegroundWindow (ctx->dlg);
588        CloseHandle (ctx->hd);
589        delete ctx;
590        ExitThread (0);
591        return 0;
592    }
593    
594    /* Try to force the window @dlg to the foreground.
595       On NT5 or later this will not work if the user
596       is working in another window (console for example). */
597    void
598    force_foreground_window (HWND dlg, int msecs)
599    {
600        struct reminder_hd_s *hd;
601        DWORD tid;
602    
603        hd = new reminder_hd_s;
604        hd->dlg = dlg;
605        hd->msecs = msecs;
606        hd->hd = CreateThread (NULL, 0, foreground_reminder_thread,
607                               hd, NULL, &tid);
608    }

Legend:
Removed from v.22  
changed lines
  Added in v.190

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26