Win32 only: Enabling STRICT to fix a VC++ compile warning.
[privoxy.git] / w32log.c
1 const char w32log_rcs[] = "$Id: w32log.c,v 1.23 2002/03/26 22:57:10 jongfoster Exp $";
2 /*********************************************************************
3  *
4  * File        :  $Source: /cvsroot/ijbswa/current/w32log.c,v $
5  *
6  * Purpose     :  Functions for creating and destroying the log window,
7  *                ouputting strings, processing messages and so on.
8  *
9  * Copyright   :  Written by and Copyright (C) 2001-2002 members of
10  *                the Privoxy team.  http://www.privoxy.org/
11  *
12  *                Written by and Copyright (C) 1999 Adam Lock
13  *                <locka@iol.ie>
14  *
15  *                This program is free software; you can redistribute it 
16  *                and/or modify it under the terms of the GNU General
17  *                Public License as published by the Free Software
18  *                Foundation; either version 2 of the License, or (at
19  *                your option) any later version.
20  *
21  *                This program is distributed in the hope that it will
22  *                be useful, but WITHOUT ANY WARRANTY; without even the
23  *                implied warranty of MERCHANTABILITY or FITNESS FOR A
24  *                PARTICULAR PURPOSE.  See the GNU General Public
25  *                License for more details.
26  *
27  *                The GNU General Public License should be included with
28  *                this file.  If not, you can view it at
29  *                http://www.gnu.org/copyleft/gpl.html
30  *                or write to the Free Software Foundation, Inc., 59
31  *                Temple Place - Suite 330, Boston, MA  02111-1307, USA.
32  *
33  * Revisions   :
34  *    $Log: w32log.c,v $
35  *    Revision 1.23  2002/03/26 22:57:10  jongfoster
36  *    Web server name should begin www.
37  *
38  *    Revision 1.22  2002/03/24 12:48:23  jongfoster
39  *    Fixing doc links
40  *
41  *    Revision 1.21  2002/03/24 12:07:35  jongfoster
42  *    Consistern name for filters file
43  *
44  *    Revision 1.20  2002/03/24 12:03:47  jongfoster
45  *    Name change
46  *
47  *    Revision 1.19  2002/01/17 21:04:17  jongfoster
48  *    Replacing hard references to the URL of the config interface
49  *    with #defines from project.h
50  *
51  *    Revision 1.18  2001/11/30 23:37:24  jongfoster
52  *    Renaming the Win32 config file to config.txt - this is almost the
53  *    same as the corresponding UNIX name "config"
54  *
55  *    Revision 1.17  2001/11/16 00:46:31  jongfoster
56  *    Fixing compiler warnings
57  *
58  *    Revision 1.16  2001/08/01 19:58:12  jongfoster
59  *    Fixing documentation filenames in help menu, and making status
60  *    option work without needing the "Junkbuster Status.URL" file.
61  *
62  *    Revision 1.15  2001/07/30 22:08:36  jongfoster
63  *    Tidying up #defines:
64  *    - All feature #defines are now of the form FEATURE_xxx
65  *    - Permanently turned off WIN_GUI_EDIT
66  *    - Permanently turned on WEBDAV and SPLIT_PROXY_ARGS
67  *
68  *    Revision 1.14  2001/07/29 18:47:05  jongfoster
69  *    Adding missing #include "loadcfg.h"
70  *
71  *    Revision 1.13  2001/07/19 19:15:14  haroon
72  *    - Added a FIXME for EditFile but didn't fix :-)
73  *
74  *    Revision 1.12  2001/07/13 14:04:59  oes
75  *    Removed all #ifdef PCRS
76  *
77  *    Revision 1.11  2001/06/07 23:08:12  jongfoster
78  *    Forward and ACL edit options removed.
79  *
80  *    Revision 1.10  2001/05/31 21:37:11  jongfoster
81  *    GUI changes to rename "permissions file" to "actions file".
82  *
83  *    Revision 1.9  2001/05/31 17:33:13  oes
84  *
85  *    CRLF -> LF
86  *
87  *    Revision 1.8  2001/05/29 09:50:24  jongfoster
88  *    Unified blocklist/imagelist/permissionslist.
89  *    File format is still under discussion, but the internal changes
90  *    are (mostly) done.
91  *
92  *    Also modified interceptor behaviour:
93  *    - We now intercept all URLs beginning with one of the following
94  *      prefixes (and *only* these prefixes):
95  *        * http://i.j.b/
96  *        * http://ijbswa.sf.net/config/
97  *        * http://ijbswa.sourceforge.net/config/
98  *    - New interceptors "home page" - go to http://i.j.b/ to see it.
99  *    - Internal changes so that intercepted and fast redirect pages
100  *      are not replaced with an image.
101  *    - Interceptors now have the option to send a binary page direct
102  *      to the client. (i.e. ijb-send-banner uses this)
103  *    - Implemented show-url-info interceptor.  (Which is why I needed
104  *      the above interceptors changes - a typical URL is
105  *      "http://i.j.b/show-url-info?url=www.somesite.com/banner.gif".
106  *      The previous mechanism would not have intercepted that, and
107  *      if it had been intercepted then it then it would have replaced
108  *      it with an image.)
109  *
110  *    Revision 1.7  2001/05/26 01:26:34  jongfoster
111  *    New #define, WIN_GUI_EDIT, enables the (embryonic) Win32 GUI editor.
112  *    This #define cannot be set from ./configure - there's no point, it
113  *    doesn't work yet.  See feature request # 425722
114  *
115  *    Revision 1.6  2001/05/26 00:31:30  jongfoster
116  *    Fixing compiler warning about comparing signed/unsigned.
117  *
118  *    Revision 1.5  2001/05/26 00:28:36  jongfoster
119  *    Automatic reloading of config file.
120  *    Removed obsolete SIGHUP support (Unix) and Reload menu option (Win32).
121  *    Most of the global variables have been moved to a new
122  *    struct configuration_spec, accessed through csp->config->globalname
123  *    Most of the globals remaining are used by the Win32 GUI.
124  *
125  *    Revision 1.4  2001/05/22 18:56:28  oes
126  *    CRLF -> LF
127  *
128  *    Revision 1.3  2001/05/20 15:07:54  jongfoster
129  *    File is now ignored if _WIN_CONSOLE is defined.
130  *
131  *    Revision 1.2  2001/05/20 01:21:20  jongfoster
132  *    Version 2.9.4 checkin.
133  *    - Merged popupfile and cookiefile, and added control over PCRS
134  *      filtering, in new "permissionsfile".
135  *    - Implemented LOG_LEVEL_FATAL, so that if there is a configuration
136  *      file error you now get a message box (in the Win32 GUI) rather
137  *      than the program exiting with no explanation.
138  *    - Made killpopup use the PCRS MIME-type checking and HTTP-header
139  *      skipping.
140  *    - Removed tabs from "config"
141  *    - Moved duplicated url parsing code in "loaders.c" to a new funcition.
142  *    - Bumped up version number.
143  *
144  *    Revision 1.1.1.1  2001/05/15 13:59:07  oes
145  *    Initial import of version 2.9.3 source tree
146  *
147  *
148  *********************************************************************/
149 \f
150
151 #include "config.h"
152
153 #include <assert.h>
154 #include <stdio.h>
155
156 #ifndef STRICT
157 #define STRICT
158 #endif
159 #include <windows.h>
160 #include <richedit.h>
161
162 #include "project.h"
163 #include "w32log.h"
164 #include "w32taskbar.h"
165 #include "win32.h"
166 #include "w32res.h"
167 #include "jcc.h"
168 #include "miscutil.h"
169 #include "errlog.h"
170 #include "loadcfg.h"
171
172 const char w32res_h_rcs[] = W32RES_H_VERSION;
173
174 #ifdef __MINGW32__
175 #include "cygwin.h"
176 const char cygwin_h_rcs[] = CYGWIN_H_VERSION;
177 #endif
178
179 const char w32log_h_rcs[] = W32LOG_H_VERSION;
180
181 #ifndef _WIN_CONSOLE /* entire file */
182
183 /*
184  * Timers and the various durations
185  */
186 #define TIMER_ANIM_ID               1
187 #define TIMER_ANIM_TIME             100
188 #define TIMER_ANIMSTOP_ID           2
189 #define TIMER_ANIMSTOP_TIME         1000
190 #define TIMER_CLIPBUFFER_ID         3
191 #define TIMER_CLIPBUFFER_TIME       1000
192 #define TIMER_CLIPBUFFER_FORCE_ID   4
193 #define TIMER_CLIPBUFFER_FORCE_TIME 5000
194
195 /*
196  * Styles of text that can be output
197  */
198 #define STYLE_NONE      0
199 #define STYLE_HIGHLIGHT 1
200 #define STYLE_LINK      2
201 #define STYLE_HEADER    3
202
203 /*
204  * Number of frames of animation in tray activity sequence
205  */
206 #define ANIM_FRAMES 8
207
208 #define DEFAULT_MAX_BUFFER_LINES    200
209 #define DEFAULT_LOG_FONT_NAME       "MS Sans Serif"
210 #define DEFAULT_LOG_FONT_SIZE       8
211
212 /*
213  * These values affect the way the log window behaves, they should be read
214  * from a file but for the moment, they are hardcoded here. Some options are
215  * configurable through the UI.
216  */
217
218 /* Indicates whether task bar shows activity animation */
219 BOOL g_bShowActivityAnimation = 1;
220
221 /* Indicates if the log window appears on the task bar */
222 BOOL g_bShowOnTaskBar = 0;
223
224 /* Indicates whether closing the log window really just hides it */
225 BOOL g_bCloseHidesWindow = 1;
226
227 /* Indicates if messages are logged at all */
228 BOOL g_bLogMessages = 1;
229
230 /* Indicates whether log messages are highlighted */
231 BOOL g_bHighlightMessages = 1;
232
233 /* Indicates if buffer is limited in size */
234 BOOL g_bLimitBufferSize = 1;
235
236 /* Maximum number of lines allowed in buffer when limited */
237 int g_nMaxBufferLines = DEFAULT_MAX_BUFFER_LINES;
238
239 /* Font to use */
240 char g_szFontFaceName[255] = DEFAULT_LOG_FONT_NAME;
241
242 /* Size of font to use */
243 int g_nFontSize = DEFAULT_LOG_FONT_SIZE;
244
245
246 /* FIXME: this is a kludge */
247
248 const char * g_actions_file = NULL;
249 const char * g_re_filterfile = NULL;
250 #ifdef FEATURE_TRUST
251 const char * g_trustfile = NULL;
252 #endif /* def FEATURE_TRUST */
253
254 /* FIXME: end kludge */
255
256
257 #ifdef REGEX
258 /* Regular expression for detected URLs */
259 #define RE_URL "http:[^ \n\r]*"
260
261 /*
262  * Regular expressions that are used to perform highlight in the log window
263  */
264 static struct _Pattern
265 {
266    const char *str;
267    int style;
268    regex_t buffer;
269 } patterns_to_highlight[] =
270 {
271    /* url headers */
272    { RE_URL,                STYLE_LINK },
273 /* { "[a-zA-Z0-9]+\\.[a-zA-Z0-9]+\\.[a-zA-Z0-9]+\\.[^ \n\r]*", STYLE_LINK }, */
274    /* interesting text to highlight */
275    { "crunch!",           STYLE_HIGHLIGHT },
276    /* http headers */
277    { "referer:",            STYLE_HEADER },
278    { "proxy-connection:",   STYLE_HEADER },
279    { "proxy-agent:",        STYLE_HEADER },
280    { "user-agent:",         STYLE_HEADER },
281    { "host:",               STYLE_HEADER },
282    { "accept:",             STYLE_HEADER },
283    { "accept-encoding:",    STYLE_HEADER },
284    { "accept-language:",    STYLE_HEADER },
285    { "accept-charset:",     STYLE_HEADER },
286    { "accept-ranges:",      STYLE_HEADER },
287    { "date:",               STYLE_HEADER },
288    { "cache-control:",      STYLE_HEADER },
289    { "cache-last-checked:", STYLE_HEADER },
290    { "connection:",         STYLE_HEADER },
291    { "content-type",        STYLE_HEADER },
292    { "content-length",      STYLE_HEADER },
293    { "cookie",              STYLE_HEADER },
294    { "last-modified:",      STYLE_HEADER },
295    { "pragma:",             STYLE_HEADER },
296    { "server:",             STYLE_HEADER },
297    { "etag:",               STYLE_HEADER },
298    { "expires:",            STYLE_HEADER },
299    { "warning:",            STYLE_HEADER },
300    /* this is the terminator statement - do not delete! */
301    { NULL,                  STYLE_NONE }
302 };
303 #endif /* def REGEX */
304
305
306 /*
307  * Public variables
308  */
309 HWND g_hwndLogFrame;
310
311 /*
312  * Private variables
313  */
314 static CRITICAL_SECTION g_criticalsection;
315 static HWND g_hwndTray;
316 static HWND g_hwndLogBox;
317 static WNDPROC g_fnLogBox;
318 static HICON g_hiconAnim[ANIM_FRAMES];
319 static HICON g_hiconIdle;
320 static HICON g_hiconApp;
321 static int g_nAnimFrame;
322 static BOOL g_bClipPending = FALSE;
323 static int g_nRichEditVersion = 0;
324
325 /*
326  * Private functions
327  */
328 static HWND CreateLogWindow(HINSTANCE hInstance, int nCmdShow);
329 static HWND CreateHiddenLogOwnerWindow(HINSTANCE hInstance);
330 static LRESULT CALLBACK LogWindowProc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam);
331 static LRESULT CALLBACK LogOwnerWindowProc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam);
332 static LRESULT CALLBACK LogRichEditProc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam);
333 static BOOL InitRichEdit(void);
334 static void LogClipBuffer(void);
335 static void LogCreatePatternMatchingBuffers(void);
336 static void LogDestroyPatternMatchingBuffers(void);
337 static int LogPutStringNoMatch(const char *pszText, int style);
338
339
340 /*********************************************************************
341  *
342  * Function    :  InitLogWindow
343  *
344  * Description :  Initialise the log window.
345  *
346  * Parameters  :  None
347  *
348  * Returns     :  Always TRUE (there should be error checking on the resources).
349  *
350  *********************************************************************/
351 BOOL InitLogWindow(void)
352 {
353    int i;
354
355    /* Load the icons */
356    g_hiconIdle = LoadIcon(g_hInstance, MAKEINTRESOURCE(IDI_IDLE));
357    for (i = 0; i < ANIM_FRAMES; i++)
358    {
359       g_hiconAnim[i] = LoadIcon(g_hInstance, MAKEINTRESOURCE(IDI_ANIMATED1 + i));
360    }
361    g_hiconApp = LoadIcon(g_hInstance, MAKEINTRESOURCE(IDI_MAINICON));
362
363    /* Create the user interface */
364    g_hwndLogFrame = CreateLogWindow(g_hInstance, g_nCmdShow);
365    g_hwndTray = CreateTrayWindow(g_hInstance);
366    TrayAddIcon(g_hwndTray, 1, g_hiconApp, "Privoxy");
367
368    /* Create pattern matching buffers (for highlighting */
369    LogCreatePatternMatchingBuffers();
370
371    /* Create a critical section to protect multi-threaded access to certain things */
372    InitializeCriticalSection(&g_criticalsection);
373
374    return TRUE;
375
376 }
377
378
379 /*********************************************************************
380  *
381  * Function    :  TermLogWindow
382  *
383  * Description :  Cleanup the logwindow.
384  *
385  * Parameters  :  None
386  *
387  * Returns     :  N/A
388  *
389  *********************************************************************/
390 void TermLogWindow(void)
391 {
392    int i;
393
394    LogDestroyPatternMatchingBuffers();
395
396    TrayDeleteIcon(g_hwndTray, 1);
397    DeleteObject(g_hiconApp);
398    DeleteObject(g_hiconIdle);
399    for (i = 0; i < ANIM_FRAMES; i++)
400    {
401       DeleteObject(g_hiconAnim[i]);
402    }
403
404 }
405
406
407 /*********************************************************************
408  *
409  * Function    :  LogCreatePatternMatchingBuffers
410  *
411  * Description :  Compile the pattern matching buffers.
412  *
413  * Parameters  :  None
414  *
415  * Returns     :  N/A
416  *
417  *********************************************************************/
418 void LogCreatePatternMatchingBuffers(void)
419 {
420 #ifdef REGEX
421    int i;
422    for (i = 0; patterns_to_highlight[i].str != NULL; i++)
423    {
424       regcomp(&patterns_to_highlight[i].buffer, patterns_to_highlight[i].str, REG_ICASE);
425    }
426 #endif
427
428 }
429
430
431 /*********************************************************************
432  *
433  * Function    :  LogDestroyPatternMatchingBuffers
434  *
435  * Description :  Free up the pattern matching buffers.
436  *
437  * Parameters  :  None
438  *
439  * Returns     :  N/A
440  *
441  *********************************************************************/
442 void LogDestroyPatternMatchingBuffers(void)
443 {
444 #ifdef REGEX
445    int i;
446    for (i = 0; patterns_to_highlight[i].str != NULL; i++)
447    {
448       regfree(&patterns_to_highlight[i].buffer);
449    }
450 #endif
451
452 }
453
454
455 /*********************************************************************
456  *
457  * Function    :  LogGetURLUnderCursor
458  *
459  * Description :  Returns the URL from under the cursor (remember to free it!).
460  *
461  * Parameters  :  None
462  *
463  * Returns     :  NULL or a pointer to an URL string.
464  *
465  *********************************************************************/
466 char *LogGetURLUnderCursor(void)
467 {
468    char *szResult = NULL;
469 #ifdef REGEX
470    regex_t re;
471    POINT ptCursor;
472    POINTL ptl;
473    DWORD nPos;
474    DWORD nWordStart = 0;
475    DWORD nWordEnd = 0;
476
477    regcomp(&re, RE_URL, REG_ICASE);
478
479    /* Get the position of the cursor over the text window */
480    GetCursorPos(&ptCursor);
481    ScreenToClient(g_hwndLogBox, &ptCursor);
482    ptl.x = ptCursor.x;
483    ptl.y = ptCursor.y;
484
485    /* Search backwards and fowards to obtain the word that is highlighted */
486    nPos = LOWORD(SendMessage(g_hwndLogBox, EM_CHARFROMPOS, 0, (LPARAM) &ptl));
487    nWordStart = SendMessage(g_hwndLogBox, EM_FINDWORDBREAK, WB_LEFT, nPos);
488    nWordEnd = SendMessage(g_hwndLogBox, EM_FINDWORDBREAK, WB_RIGHTBREAK, nPos);
489
490    /* Compare the string to the pattern */
491    if (nWordEnd > nWordStart)
492    {
493       TEXTRANGE range;
494       regmatch_t match;
495
496       range.chrg.cpMin = nWordStart;
497       range.chrg.cpMax = nWordEnd;
498       range.lpstrText = (LPSTR)zalloc(nWordEnd - nWordStart + 1);
499       SendMessage(g_hwndLogBox, EM_GETTEXTRANGE, 0, (LPARAM) &range);
500
501       if (regexec(&re, range.lpstrText, 1, &match, 0) == 0)
502       {
503          szResult = range.lpstrText;
504       }
505       else
506       {
507          free(range.lpstrText);
508       }
509
510       regfree(&re);
511    }
512 #endif
513    return szResult;
514
515 }
516
517
518 /*********************************************************************
519  *
520  * Function    :  LogPutString
521  *
522  * Description :  Inserts text into the logging window.  This is really
523  *                a REGEXP aware wrapper function to `LogPutStringNoMatch'.
524  *
525  * Parameters  :
526  *          1  :  pszText = pointer to string going to the log window
527  *
528  * Returns     :  1 => success, else the return code from `LogPutStringNoMatch'.
529  *                FIXME: this is backwards to the rest of IJB and to common
530  *                programming practice.  Please use 0 => success instead.
531  *
532  *********************************************************************/
533 int LogPutString(const char *pszText)
534 {
535 #ifdef REGEX
536    int i;
537 #endif
538    int result = 0;
539
540    if (pszText == NULL || strlen(pszText) == 0)
541    {
542       return 1;
543    }
544
545    if (!g_bLogMessages)
546    {
547       return 1;
548    }
549
550    /* Critical section stops multiple threads doing nasty interactions that
551     * foul up the highlighting and output.
552     */
553    EnterCriticalSection(&g_criticalsection);
554
555 #ifdef REGEX
556    if (g_bHighlightMessages)
557    {
558       regmatch_t match;
559
560       /* First things first, regexp scan for various things that we would like highlighted */
561       for (i = 0; patterns_to_highlight[i].str != NULL; i++)
562       {
563          if (regexec(&patterns_to_highlight[i].buffer, pszText, 1, &match, 0) == 0)
564          {
565             char *pszBefore = NULL;
566             char *pszMatch = NULL;
567             char *pszAfter = NULL;
568             int nMatchSize;
569
570             /* Split the string up into pieces representing the strings, before
571                at and after the matching pattern
572              */
573             if (match.rm_so > 0)
574             {
575                pszBefore = (char *)malloc((match.rm_so + 1) * sizeof(char));
576                memset(pszBefore, 0, (match.rm_so + 1) * sizeof(char));
577                strncpy(pszBefore, pszText, match.rm_so);
578             }
579             if (match.rm_eo < (regoff_t)strlen(pszText))
580             {
581                pszAfter = strdup(&pszText[match.rm_eo]);
582             }
583             nMatchSize = match.rm_eo - match.rm_so;
584             pszMatch = (char *)malloc(nMatchSize + 1);
585             strncpy(pszMatch, &pszText[match.rm_so], nMatchSize);
586             pszMatch[nMatchSize] = '\0';
587
588             /* Recursively call LogPutString */
589             if (pszBefore)
590             {
591                LogPutString(pszBefore);
592                free(pszBefore);
593             }
594             if (pszMatch)
595             {
596                LogPutStringNoMatch(pszMatch, patterns_to_highlight[i].style);
597                free(pszMatch);
598             }
599             if (pszAfter)
600             {
601                LogPutString(pszAfter);
602                free(pszAfter);
603             }
604
605             result = 1;
606             goto end;
607          }
608       }
609    }
610 #endif
611
612    result = LogPutStringNoMatch(pszText, STYLE_NONE);
613
614 #ifdef REGEX
615 end:
616 #endif
617    LeaveCriticalSection(&g_criticalsection);
618
619    return result;
620
621 }
622
623
624 /*********************************************************************
625  *
626  * Function    :  LogPutStringNoMatch
627  *
628  * Description :  Puts a string into the logging window.
629  *
630  * Parameters  :
631  *          1  :  pszText = pointer to string going to the log window
632  *          2  :  style = STYLE_NONE, STYLE_HEADER, STYLE_HIGHLIGHT, or STYLE_LINK
633  *
634  * Returns     :  Always 1 => success.
635  *                FIXME: this is backwards to the rest of IJB and to common
636  *                programming practice.  Please use 0 => success instead.
637  *
638  *********************************************************************/
639 int LogPutStringNoMatch(const char *pszText, int style)
640 {
641    CHARRANGE range;
642    CHARFORMAT format;
643    int nTextLength;
644
645    assert(g_hwndLogBox);
646    if (g_hwndLogBox == NULL)
647    {
648       return 1;
649    }
650
651    /* TODO preserve existing selection */
652
653    /* Go to the end of the text */
654    nTextLength = GetWindowTextLength(g_hwndLogBox);
655    range.cpMin = nTextLength;
656    range.cpMax = nTextLength;
657    SendMessage(g_hwndLogBox, EM_EXSETSEL, 0, (LPARAM) &range);
658
659    /* Apply a formatting style */
660    memset(&format, 0, sizeof(format));
661    format.cbSize = sizeof(format);
662    format.dwMask = CFM_BOLD | CFM_UNDERLINE | CFM_STRIKEOUT | CFM_ITALIC | CFM_COLOR | CFM_FACE | CFM_SIZE;
663    format.yHeight = (g_nFontSize * 1440) / 72;
664    strcpy(format.szFaceName, g_szFontFaceName);
665    if (style == STYLE_NONE)
666    {
667       /* DO NOTHING */
668       format.dwEffects |= CFE_AUTOCOLOR;
669    }
670    else if (style == STYLE_HEADER)
671    {
672       format.dwEffects |= CFE_AUTOCOLOR | CFE_ITALIC;
673    }
674    else if (style == STYLE_HIGHLIGHT)
675    {
676       format.dwEffects |= CFE_AUTOCOLOR | CFE_BOLD;
677    }
678    else if (style == STYLE_LINK)
679    {
680       format.dwEffects |= CFE_UNDERLINE;
681       format.crTextColor = RGB(0, 0, 255);
682    }
683    SendMessage(g_hwndLogBox, EM_SETCHARFORMAT, SCF_SELECTION, (LPARAM) &format);
684
685    /* Append text to the end */
686    SendMessage(g_hwndLogBox, EM_REPLACESEL, FALSE, (LPARAM) pszText);
687
688    /* TODO Restore the old selection */
689
690    /* Purge buffer */
691    if (strchr(pszText, '\n') != NULL)
692    {
693       SetTimer(g_hwndLogFrame, TIMER_CLIPBUFFER_ID, TIMER_CLIPBUFFER_TIME, NULL);
694       if (!g_bClipPending)
695       {
696          /* Set the force clip timer going. This timer ensures clipping is done
697             intermittently even when there is a sustained burst of logging
698          */
699          SetTimer(g_hwndLogFrame, TIMER_CLIPBUFFER_FORCE_ID, TIMER_CLIPBUFFER_FORCE_TIME, NULL);
700       }
701       g_bClipPending = TRUE;
702    }
703
704    return 1;
705
706 }
707
708
709 /*********************************************************************
710  *
711  * Function    :  LogShowActivity
712  *
713  * Description :  Start the spinner.
714  *
715  * Parameters  :  None
716  *
717  * Returns     :  N/A
718  *
719  *********************************************************************/
720 void LogShowActivity(void)
721 {
722    /* Start some activity timers */
723    if (g_bShowActivityAnimation)
724    {
725       SetTimer(g_hwndLogFrame, TIMER_ANIM_ID, TIMER_ANIM_TIME, NULL);
726       SetTimer(g_hwndLogFrame, TIMER_ANIMSTOP_ID, TIMER_ANIMSTOP_TIME, NULL);
727    }
728
729 }
730
731
732 /*********************************************************************
733  *
734  * Function    :  LogClipBuffer
735  *
736  * Description :  Prunes old lines from the log.
737  *
738  * Parameters  :  None
739  *
740  * Returns     :  N/A
741  *
742  *********************************************************************/
743 void LogClipBuffer(void)
744 {
745    int nLines = SendMessage(g_hwndLogBox, EM_GETLINECOUNT, 0, 0);
746    if (g_bLimitBufferSize && nLines > g_nMaxBufferLines)
747    {
748       /* Compute the range representing the lines to be deleted */
749       LONG nLastLineToDelete = nLines - g_nMaxBufferLines;
750       LONG nLastChar = SendMessage(g_hwndLogBox, EM_LINEINDEX, nLastLineToDelete, 0);
751       CHARRANGE range;
752       range.cpMin = 0;
753       range.cpMax = nLastChar;
754
755       /* TODO get current selection */
756
757       /* TODO adjust and clip old selection against range to be deleted */
758
759       /* Select range and erase it (turning off autoscroll to prevent
760          nasty scrolling) */
761       SendMessage(g_hwndLogBox, EM_SETOPTIONS, ECOOP_XOR, ECO_AUTOVSCROLL);
762       SendMessage(g_hwndLogBox, EM_EXSETSEL, 0, (LPARAM) &range);
763       SendMessage(g_hwndLogBox, EM_REPLACESEL, FALSE, (LPARAM) "");
764       SendMessage(g_hwndLogBox, EM_SETOPTIONS, ECOOP_XOR, ECO_AUTOVSCROLL);
765
766       /* Restore old selection */
767    }
768
769 }
770
771
772 /*********************************************************************
773  *
774  * Function    :  CreateHiddenLogOwnerWindow
775  *
776  * Description :  Creates a hidden owner window that stops the log
777  *                window appearing in the task bar.
778  *
779  * Parameters  :
780  *          1  :  hInstance = application's instance handle
781  *
782  * Returns     :  Handle to newly created window.
783  *
784  *********************************************************************/
785 HWND CreateHiddenLogOwnerWindow(HINSTANCE hInstance)
786 {
787    static const char *szWndName = "PrivoxyLogOwner";
788    WNDCLASS wc;
789    HWND hwnd;
790
791    wc.style          = 0;
792    wc.lpfnWndProc    = LogOwnerWindowProc;
793    wc.cbClsExtra     = 0;
794    wc.cbWndExtra     = 0;
795    wc.hInstance      = hInstance;
796    wc.hIcon          = 0;
797    wc.hCursor        = 0;
798    wc.hbrBackground  = 0;
799    wc.lpszMenuName   = 0;
800    wc.lpszClassName  = szWndName;
801
802    RegisterClass(&wc);
803
804    hwnd = CreateWindow(szWndName, szWndName,
805       WS_OVERLAPPEDWINDOW, CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT,
806       CW_USEDEFAULT, NULL, NULL, hInstance, NULL );
807
808    return hwnd;
809
810 }
811
812
813 /*********************************************************************
814  *
815  * Function    :  LogOwnerWindowProc
816  *
817  * Description :  Dummy procedure that does nothing special.
818  *
819  * Parameters  :
820  *          1  :  hwnd = window handle
821  *          2  :  uMsg = message number
822  *          3  :  wParam = first param for this message
823  *          4  :  lParam = next param for this message
824  *
825  * Returns     :  Same as `DefWindowProc'.
826  *
827  *********************************************************************/
828 LRESULT CALLBACK LogOwnerWindowProc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
829 {
830    return DefWindowProc(hwnd, uMsg, wParam, lParam);
831
832 }
833
834
835 /*********************************************************************
836  *
837  * Function    :  CreateLogWindow
838  *
839  * Description :  Create the logging window.
840  *
841  * Parameters  :
842  *          1  :  hInstance = application's instance handle
843  *          2  :  nCmdShow = window show value (MIN, MAX, NORMAL, etc...)
844  *
845  * Returns     :  Handle to newly created window.
846  *
847  *********************************************************************/
848 HWND CreateLogWindow(HINSTANCE hInstance, int nCmdShow)
849 {
850    static const char *szWndName = "PrivoxyLogWindow";
851    static const char *szWndTitle = "Privoxy";
852
853    HWND hwnd = NULL;
854    HWND hwndOwner = (g_bShowOnTaskBar) ? NULL : CreateHiddenLogOwnerWindow(hInstance);
855    RECT rcClient;
856    WNDCLASSEX wc;
857
858    memset(&wc, 0, sizeof(wc));
859    wc.cbSize         = sizeof(wc);
860    wc.style          = CS_DBLCLKS;
861    wc.lpfnWndProc    = LogWindowProc;
862    wc.cbClsExtra     = 0;
863    wc.cbWndExtra     = 0;
864    wc.hInstance      = hInstance;
865    wc.hIcon          = g_hiconApp;
866    wc.hCursor        = 0;
867    wc.hbrBackground  = 0;
868    wc.lpszMenuName   = MAKEINTRESOURCE(IDR_LOGVIEW);
869    wc.lpszClassName  = szWndName;
870    wc.hbrBackground  = GetStockObject(WHITE_BRUSH);
871    RegisterClassEx(&wc);
872
873    hwnd = CreateWindowEx(WS_EX_APPWINDOW, szWndName, szWndTitle,
874       WS_OVERLAPPEDWINDOW, CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT,
875       CW_USEDEFAULT, hwndOwner, NULL, hInstance, NULL);
876
877    /* Now create a child list box */
878    GetClientRect(hwnd, &rcClient);
879
880    /* Create a rich edit control */
881    InitRichEdit();
882    g_hwndLogBox = CreateWindowEx(0, (g_nRichEditVersion == 0x0100) ? "RichEdit" : RICHEDIT_CLASS, "",
883       ES_AUTOVSCROLL | ES_MULTILINE | ES_READONLY | ES_NOHIDESEL | WS_CHILD | WS_VSCROLL | WS_HSCROLL | WS_VISIBLE,
884       rcClient.left, rcClient.top, rcClient.right, rcClient.bottom,
885       hwnd, NULL, hInstance, NULL);
886 /* SendMessage(g_hwndLogBox, EM_SETWORDWRAPMODE, 0, 0); */
887
888    /* Subclass the control to catch certain messages */
889    g_fnLogBox = (WNDPROC) GetWindowLong(g_hwndLogBox, GWL_WNDPROC);
890    SetWindowLong(g_hwndLogBox, GWL_WNDPROC, (LONG) LogRichEditProc);
891
892    /* Minimizing looks stupid when the log window is not on the task bar, so hide instead */
893    if (!g_bShowOnTaskBar &&
894          (nCmdShow == SW_SHOWMINIMIZED ||
895           nCmdShow == SW_MINIMIZE ||
896           nCmdShow == SW_SHOWMINNOACTIVE))
897    {
898       nCmdShow = SW_HIDE;
899    }
900
901    ShowWindow(hwnd, nCmdShow);
902    UpdateWindow(hwnd);
903
904    GetClientRect(g_hwndLogFrame, &rcClient);
905    SetWindowPos(g_hwndLogBox, NULL, rcClient.left, rcClient.top, rcClient.right - rcClient.left, rcClient.bottom - rcClient.top, SWP_NOZORDER);
906
907    return hwnd;
908
909 }
910
911
912 /*********************************************************************
913  *
914  * Function    :  InitRichEdit
915  *
916  * Description :  Initialise the rich edit control library.
917  *
918  * Parameters  :  None
919  *
920  * Returns     :  TRUE => success, FALSE => failure.
921  *                FIXME: this is backwards to the rest of IJB and to common
922  *                programming practice.  Please use 0 => success instead.
923  *
924  *********************************************************************/
925 BOOL InitRichEdit(void)
926 {
927    static HINSTANCE hInstRichEdit;
928    if (hInstRichEdit == NULL)
929    {
930       g_nRichEditVersion = 0;
931       hInstRichEdit = LoadLibraryA("RICHED20.DLL");
932       if (hInstRichEdit)
933       {
934          g_nRichEditVersion = _RICHEDIT_VER;
935       }
936       else
937       {
938          hInstRichEdit = LoadLibraryA("RICHED32.DLL");
939          if (hInstRichEdit)
940          {
941             g_nRichEditVersion = 0x0100;
942          }
943       }
944    }
945    return (hInstRichEdit != NULL) ? TRUE : FALSE;
946
947 }
948
949
950 /*********************************************************************
951  *
952  * Function    :  ShowLogWindow
953  *
954  * Description :  Shows or hides the log window.  We will also raise the
955  *                window on a show command in case it is buried.
956  *
957  * Parameters  :
958  *          1  :  bShow = TRUE to show, FALSE to mimize/hide
959  *
960  * Returns     :  N/A
961  *
962  *********************************************************************/
963 void ShowLogWindow(BOOL bShow)
964 {
965    if (bShow)
966    {
967       SetForegroundWindow(g_hwndLogFrame);
968       SetWindowPos(g_hwndLogFrame, HWND_TOP, 0, 0, 0, 0, SWP_SHOWWINDOW | SWP_NOSIZE | SWP_NOMOVE);
969    }
970    else if (g_bShowOnTaskBar)
971    {
972       ShowWindow(g_hwndLogFrame, SW_MINIMIZE);
973    }
974    else
975    {
976       ShowWindow(g_hwndLogFrame, SW_HIDE);
977    }
978
979 }
980
981
982 /*********************************************************************
983  *
984  * Function    :  EditFile
985  *
986  * Description :  Opens the specified setting file for editing.
987  * FIXME: What if the file has no associated application. Check for return values
988 *        from ShellExecute??
989  *
990  * Parameters  :
991  *          1  :  filename = filename from the config (aka config.txt) file.
992  *
993  * Returns     :  N/A
994  *
995  *********************************************************************/
996 void EditFile(const char *filename)
997 {
998    if (filename)
999    {
1000       ShellExecute(g_hwndLogFrame, "open", filename, NULL, NULL, SW_SHOWNORMAL);
1001    }
1002
1003 }
1004
1005
1006 /*--------------------------------------------------------------------------*/
1007 /* Windows message handlers                                                 */
1008 /*--------------------------------------------------------------------------*/
1009
1010
1011 /*********************************************************************
1012  *
1013  * Function    :  OnLogRButtonUp
1014  *
1015  * Description :  Handler for WM_RBUTTONUP messages.
1016  *
1017  * Parameters  :
1018  *          1  :  nModifier = wParam from mouse message (unused)
1019  *          2  :  x = x coordinate of the mouse event
1020  *          3  :  y = y coordinate of the mouse event
1021  *
1022  * Returns     :  N/A
1023  *
1024  *********************************************************************/
1025 void OnLogRButtonUp(int nModifier, int x, int y)
1026 {
1027    HMENU hMenu = LoadMenu(g_hInstance, MAKEINTRESOURCE(IDR_POPUP_SELECTION));
1028    if (hMenu != NULL)
1029    {
1030       HMENU hMenuPopup = GetSubMenu(hMenu, 0);
1031
1032       /* Check if there is a selection */
1033       CHARRANGE range;
1034       SendMessage(g_hwndLogBox, EM_EXGETSEL, 0, (LPARAM) &range);
1035       if (range.cpMin == range.cpMax)
1036       {
1037          EnableMenuItem(hMenuPopup, ID_EDIT_COPY, MF_BYCOMMAND | MF_GRAYED);
1038       }
1039       else
1040       {
1041          EnableMenuItem(hMenuPopup, ID_EDIT_COPY, MF_BYCOMMAND | MF_ENABLED);
1042       }
1043
1044       /* Display the popup */
1045       TrackPopupMenu(hMenuPopup, TPM_LEFTALIGN | TPM_TOPALIGN | TPM_RIGHTBUTTON, x, y, 0, g_hwndLogFrame, NULL);
1046       DestroyMenu(hMenu);
1047    }
1048
1049 }
1050
1051
1052 /*********************************************************************
1053  *
1054  * Function    :  OnLogCommand
1055  *
1056  * Description :  Handler for WM_COMMAND messages.
1057  *
1058  * Parameters  :
1059  *          1  :  nCommand = the command portion of the menu selection event
1060  *
1061  * Returns     :  N/A
1062  *
1063  *********************************************************************/
1064 void OnLogCommand(int nCommand)
1065 {
1066    switch (nCommand)
1067    {
1068       case ID_SHOWWINDOW:
1069          ShowLogWindow(TRUE);
1070          break;
1071
1072       case ID_FILE_EXIT:
1073          PostMessage(g_hwndLogFrame, WM_CLOSE, 0, 0);
1074          break;
1075
1076       case ID_EDIT_COPY:
1077          SendMessage(g_hwndLogBox, WM_COPY, 0, 0);
1078          break;
1079
1080       case ID_VIEW_CLEARLOG:
1081          SendMessage(g_hwndLogBox, WM_SETTEXT, 0, (LPARAM) "");
1082          break;
1083
1084       case ID_VIEW_LOGMESSAGES:
1085          g_bLogMessages = !g_bLogMessages;
1086          /* SaveLogSettings(); */
1087          break;
1088
1089       case ID_VIEW_MESSAGEHIGHLIGHTING:
1090          g_bHighlightMessages = !g_bHighlightMessages;
1091          /* SaveLogSettings(); */
1092          break;
1093
1094       case ID_VIEW_LIMITBUFFERSIZE:
1095          g_bLimitBufferSize = !g_bLimitBufferSize;
1096          /* SaveLogSettings(); */
1097          break;
1098
1099       case ID_VIEW_ACTIVITYANIMATION:
1100          g_bShowActivityAnimation = !g_bShowActivityAnimation;
1101          /* SaveLogSettings(); */
1102          break;
1103
1104 #ifdef FEATURE_TOGGLE
1105       /* by haroon - change toggle to its opposite value */
1106       case ID_TOGGLE_ENABLED:
1107          g_bToggleIJB = !g_bToggleIJB;
1108          if (g_bToggleIJB)
1109          {
1110             log_error(LOG_LEVEL_INFO, "Now toggled ON.");
1111          }
1112          else
1113          {
1114             log_error(LOG_LEVEL_INFO, "Now toggled OFF.");
1115          }
1116          break;
1117 #endif /* def FEATURE_TOGGLE */
1118
1119       case ID_TOOLS_EDITCONFIG:
1120          EditFile(configfile);
1121          break;
1122
1123       case ID_TOOLS_EDITACTIONS:
1124          EditFile(g_actions_file);
1125          break;
1126
1127       case ID_TOOLS_EDITFILTERS:
1128          EditFile(g_re_filterfile);
1129          break;
1130
1131 #ifdef FEATURE_TRUST
1132       case ID_TOOLS_EDITTRUST:
1133          EditFile(g_trustfile);
1134          break;
1135 #endif /* def FEATURE_TRUST */
1136
1137       case ID_HELP_GPL:
1138          ShellExecute(g_hwndLogFrame, "open", "LICENSE.txt", NULL, NULL, SW_SHOWNORMAL);
1139          break;
1140
1141       case ID_HELP_FAQ:
1142          ShellExecute(g_hwndLogFrame, "open", "doc\\faq\\index.html", NULL, NULL, SW_SHOWNORMAL);
1143          break;
1144
1145       case ID_HELP_MANUAL:
1146          ShellExecute(g_hwndLogFrame, "open", "doc\\user-manual\\index.html", NULL, NULL, SW_SHOWNORMAL);
1147          break;
1148
1149       case ID_HELP_STATUS:
1150          ShellExecute(g_hwndLogFrame, "open", CGI_PREFIX "show-status", NULL, NULL, SW_SHOWNORMAL);
1151          break;
1152
1153       case ID_HELP_ABOUT:
1154          MessageBox(g_hwndLogFrame, win32_blurb, "About Privoxy", MB_OK);
1155          break;
1156
1157       default:
1158          /* DO NOTHING */
1159          break;
1160    }
1161
1162 }
1163
1164
1165 /*********************************************************************
1166  *
1167  * Function    :  OnLogInitMenu
1168  *
1169  * Description :  Handler for WM_INITMENU messages.  Enable, disable,
1170  *                check, and/or uncheck menu options as apropos.
1171  *
1172  * Parameters  :
1173  *          1  :  hmenu = handle to menu to "make current"
1174  *
1175  * Returns     :  N/A
1176  *
1177  *********************************************************************/
1178 void OnLogInitMenu(HMENU hmenu)
1179 {
1180    /* Only enable editors if there is a file to edit */
1181    EnableMenuItem(hmenu, ID_TOOLS_EDITACTIONS, MF_BYCOMMAND | (g_actions_file ? MF_ENABLED : MF_GRAYED));
1182    EnableMenuItem(hmenu, ID_TOOLS_EDITFILTERS, MF_BYCOMMAND | (g_re_filterfile ? MF_ENABLED : MF_GRAYED));
1183 #ifdef FEATURE_TRUST
1184    EnableMenuItem(hmenu, ID_TOOLS_EDITTRUST, MF_BYCOMMAND | (g_trustfile ? MF_ENABLED : MF_GRAYED));
1185 #endif /* def FEATURE_TRUST */
1186
1187    /* Check/uncheck options */
1188    CheckMenuItem(hmenu, ID_VIEW_LOGMESSAGES, MF_BYCOMMAND | (g_bLogMessages ? MF_CHECKED : MF_UNCHECKED));
1189    CheckMenuItem(hmenu, ID_VIEW_MESSAGEHIGHLIGHTING, MF_BYCOMMAND | (g_bHighlightMessages ? MF_CHECKED : MF_UNCHECKED));
1190    CheckMenuItem(hmenu, ID_VIEW_LIMITBUFFERSIZE, MF_BYCOMMAND | (g_bLimitBufferSize ? MF_CHECKED : MF_UNCHECKED));
1191    CheckMenuItem(hmenu, ID_VIEW_ACTIVITYANIMATION, MF_BYCOMMAND | (g_bShowActivityAnimation ? MF_CHECKED : MF_UNCHECKED));
1192 #ifdef FEATURE_TOGGLE
1193    /* by haroon - menu item for Enable toggle on/off */
1194    CheckMenuItem(hmenu, ID_TOGGLE_ENABLED, MF_BYCOMMAND | (g_bToggleIJB ? MF_CHECKED : MF_UNCHECKED));
1195 #endif /* def FEATURE_TOGGLE */
1196
1197 }
1198
1199
1200 /*********************************************************************
1201  *
1202  * Function    :  OnLogTimer
1203  *
1204  * Description :  Handler for WM_TIMER messages.
1205  *
1206  * Parameters  :
1207  *          1  :  nTimer = timer id (animation start/stop or clip buffer)
1208  *
1209  * Returns     :  N/A
1210  *
1211  *********************************************************************/
1212 void OnLogTimer(int nTimer)
1213 {
1214    switch (nTimer)
1215    {
1216       case TIMER_ANIM_ID:
1217          TraySetIcon(g_hwndTray, 1, g_hiconAnim[g_nAnimFrame++ % ANIM_FRAMES]);
1218          break;
1219
1220       case TIMER_ANIMSTOP_ID:
1221          g_nAnimFrame = 0;
1222          TraySetIcon(g_hwndTray, 1, g_hiconIdle);
1223          KillTimer(g_hwndLogFrame, TIMER_ANIM_ID);
1224          KillTimer(g_hwndLogFrame, TIMER_ANIMSTOP_ID);
1225          break;
1226
1227       case TIMER_CLIPBUFFER_ID:
1228       case TIMER_CLIPBUFFER_FORCE_ID:
1229          LogClipBuffer();
1230          g_bClipPending = FALSE;
1231          KillTimer(g_hwndLogFrame, TIMER_CLIPBUFFER_ID);
1232          KillTimer(g_hwndLogFrame, TIMER_CLIPBUFFER_FORCE_ID);
1233          break;
1234
1235       default:
1236          /* DO NOTHING */
1237          break;
1238    }
1239
1240 }
1241
1242
1243 /*********************************************************************
1244  *
1245  * Function    :  LogRichEditProc
1246  *
1247  * Description :  Window subclass routine handles some events for the rich edit control.
1248  *
1249  * Parameters  :
1250  *          1  :  hwnd = window handle of the rich edit control
1251  *          2  :  uMsg = message number
1252  *          3  :  wParam = first param for this message
1253  *          4  :  lParam = next param for this message
1254  *
1255  * Returns     :  Appropriate M$ window message handler codes.
1256  *
1257  *********************************************************************/
1258 LRESULT CALLBACK LogRichEditProc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
1259 {
1260    switch (uMsg)
1261    {
1262       case WM_RBUTTONUP:
1263       {
1264          POINT pt;
1265          pt.x = LOWORD(lParam);
1266          pt.y = HIWORD(lParam);
1267          ClientToScreen(hwnd, &pt);
1268          OnLogRButtonUp(wParam, pt.x, pt.y);
1269       }
1270       return 0;
1271    }
1272    return CallWindowProc(g_fnLogBox, hwnd, uMsg, wParam, lParam);
1273
1274 }
1275
1276
1277 /*********************************************************************
1278  *
1279  * Function    :  LogWindowProc
1280  *
1281  * Description :  Windows call back routine handles events on the log window.
1282  *
1283  * Parameters  :
1284  *          1  :  hwnd = handle of the logging window
1285  *          2  :  uMsg = message number
1286  *          3  :  wParam = first param for this message
1287  *          4  :  lParam = next param for this message
1288  *
1289  * Returns     :  Appropriate M$ window message handler codes.
1290  *
1291  *********************************************************************/
1292 LRESULT CALLBACK LogWindowProc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
1293 {
1294    switch (uMsg)
1295    {
1296       case WM_CREATE:
1297          return 0;
1298
1299       case WM_CLOSE:
1300          /* This is the end - beautiful friend - the end */
1301          DestroyWindow(g_hwndLogBox);
1302          DestroyWindow(g_hwndLogFrame);
1303          return 0;
1304
1305       case WM_DESTROY:
1306          PostQuitMessage(0);
1307          return 0;
1308
1309       case WM_SHOWWINDOW:
1310       case WM_SIZE:
1311          /* Resize the logging window to fit the new frame */
1312          if (g_hwndLogBox)
1313          {
1314             RECT rc;
1315             GetClientRect(g_hwndLogFrame, &rc);
1316             SetWindowPos(g_hwndLogBox, NULL, rc.left, rc.top, rc.right - rc.left, rc.bottom - rc.top, SWP_NOZORDER);
1317          }
1318          return 0;
1319
1320       case WM_INITMENU:
1321          OnLogInitMenu((HMENU) wParam);
1322          return 0;
1323
1324       case WM_TIMER:
1325          OnLogTimer(wParam);
1326          return 0;
1327
1328       case WM_COMMAND:
1329          OnLogCommand(LOWORD(wParam));
1330          return 0;
1331
1332       case WM_SYSCOMMAND:
1333          switch (wParam)
1334          {
1335             case SC_CLOSE:
1336                if (g_bCloseHidesWindow)
1337                {
1338                   ShowLogWindow(FALSE);
1339                   return 0;
1340                }
1341                break;
1342             case SC_MINIMIZE:
1343                ShowLogWindow(FALSE);
1344                return 0;
1345          }
1346          break;
1347    }
1348
1349    return DefWindowProc(hwnd, uMsg, wParam, lParam);
1350
1351 }
1352
1353 #endif /* ndef _WIN_CONSOLE - entire file */
1354
1355 /*
1356   Local Variables:
1357   tab-width: 3
1358   end:
1359 */