X-Git-Url: http://www.privoxy.org/gitweb/?p=privoxy.git;a=blobdiff_plain;f=w32log.c;h=90a3bd71a75e9c654ca80d461521d722dd1dfa0e;hp=8cf2ba037a9a6c650c58d30b123dd4968de1da8a;hb=12f52e6af55d51d4b268af7956d97c772eebbb5c;hpb=43da0ce639b1cf540198b2f63e790d9127725343 diff --git a/w32log.c b/w32log.c index 8cf2ba03..90a3bd71 100644 --- a/w32log.c +++ b/w32log.c @@ -1,4 +1,4 @@ -const char w32log_rcs[] = "$Id: w32log.c,v 1.4 2001/05/22 18:56:28 oes Exp $"; +const char w32log_rcs[] = "$Id: w32log.c,v 1.7 2001/05/26 01:26:34 jongfoster Exp $"; /********************************************************************* * * File : $Source: /cvsroot/ijbswa/current/w32log.c,v $ @@ -32,6 +32,21 @@ const char w32log_rcs[] = "$Id: w32log.c,v 1.4 2001/05/22 18:56:28 oes Exp $"; * * Revisions : * $Log: w32log.c,v $ + * Revision 1.7 2001/05/26 01:26:34 jongfoster + * New #define, WIN_GUI_EDIT, enables the (embryonic) Win32 GUI editor. + * This #define cannot be set from ./configure - there's no point, it + * doesn't work yet. See feature request # 425722 + * + * Revision 1.6 2001/05/26 00:31:30 jongfoster + * Fixing compiler warning about comparing signed/unsigned. + * + * Revision 1.5 2001/05/26 00:28:36 jongfoster + * Automatic reloading of config file. + * Removed obsolete SIGHUP support (Unix) and Reload menu option (Win32). + * Most of the global variables have been moved to a new + * struct configuration_spec, accessed through csp->config->globalname + * Most of the globals remaining are used by the Win32 GUI. + * * Revision 1.4 2001/05/22 18:56:28 oes * CRLF -> LF * @@ -152,15 +167,11 @@ int g_nFontSize = DEFAULT_LOG_FONT_SIZE; /* FIXME: this is a kludge */ -const char * g_blockfile = NULL; const char * g_permissions_file = NULL; const char * g_forwardfile = NULL; #ifdef ACL_FILES const char * g_aclfile = NULL; #endif /* def ACL_FILES */ -#ifdef USE_IMAGE_LIST -const char * g_imagefile = NULL; -#endif /* def USE_IMAGE_LIST */ #ifdef PCRS const char * g_re_filterfile = NULL; #endif @@ -493,7 +504,7 @@ int LogPutString(const char *pszText) memset(pszBefore, 0, (match.rm_so + 1) * sizeof(char)); strncpy(pszBefore, pszText, match.rm_so); } - if (match.rm_eo < strlen(pszText)) + if (match.rm_eo < (regoff_t)strlen(pszText)) { pszAfter = strdup(&pszText[match.rm_eo]); } @@ -944,7 +955,9 @@ void OnLogRButtonUp(int nModifier, int x, int y) if (hMenu != NULL) { HMENU hMenuPopup = GetSubMenu(hMenu, 0); +#ifdef WIN_GUI_EDIT char *szURL; +#endif /* def WIN_GUI_EDIT */ /* Check if there is a selection */ CHARRANGE range; @@ -957,7 +970,8 @@ void OnLogRButtonUp(int nModifier, int x, int y) { EnableMenuItem(hMenuPopup, ID_EDIT_COPY, MF_BYCOMMAND | MF_ENABLED); } - + +#ifdef WIN_GUI_EDIT /* Check if cursor is over a link */ szURL = LogGetURLUnderCursor(); if (szURL) @@ -989,6 +1003,7 @@ void OnLogRButtonUp(int nModifier, int x, int y) free(szURL); } +#endif /* def WIN_GUI_EDIT */ /* Display the popup */ TrackPopupMenu(hMenuPopup, TPM_LEFTALIGN | TPM_TOPALIGN | TPM_RIGHTBUTTON, x, y, 0, g_hwndLogFrame, NULL); @@ -1069,10 +1084,6 @@ void OnLogCommand(int nCommand) EditFile(configfile); break; - case ID_TOOLS_EDITBLOCKERS: - EditFile(g_blockfile); - break; - case ID_TOOLS_EDITPERMISSIONS: EditFile(g_permissions_file); break; @@ -1087,12 +1098,6 @@ void OnLogCommand(int nCommand) break; #endif /* def ACL_FILES */ -#ifdef USE_IMAGE_LIST - case ID_TOOLS_EDITIMAGE: - EditFile(g_imagefile); - break; -#endif /* def USE_IMAGE_LIST */ - #ifdef PCRS case ID_TOOLS_EDITPERLRE: EditFile(g_re_filterfile); @@ -1105,9 +1110,11 @@ void OnLogCommand(int nCommand) break; #endif /* def TRUST_FILES */ +#ifdef WIN_GUI_EDIT case ID_NEW_BLOCKER: ShowRulesDialog(g_hwndLogFrame); break; +#endif /* def WIN_GUI_EDIT */ case ID_HELP_GPL: ShellExecute(g_hwndLogFrame, "open", "gpl.html", NULL, NULL, SW_SHOWNORMAL); @@ -1154,14 +1161,10 @@ void OnLogInitMenu(HMENU hmenu) { /* Only enable editors if there is a file to edit */ EnableMenuItem(hmenu, ID_TOOLS_EDITPERMISSIONS, MF_BYCOMMAND | (g_permissions_file ? MF_ENABLED : MF_GRAYED)); - EnableMenuItem(hmenu, ID_TOOLS_EDITBLOCKERS, MF_BYCOMMAND | (g_blockfile ? MF_ENABLED : MF_GRAYED)); EnableMenuItem(hmenu, ID_TOOLS_EDITFORWARD, MF_BYCOMMAND | (g_forwardfile ? MF_ENABLED : MF_GRAYED)); #ifdef ACL_FILES EnableMenuItem(hmenu, ID_TOOLS_EDITACLS, MF_BYCOMMAND | (g_aclfile ? MF_ENABLED : MF_GRAYED)); #endif /* def ACL_FILES */ -#ifdef USE_IMAGE_LIST - EnableMenuItem(hmenu, ID_TOOLS_EDITIMAGE, MF_BYCOMMAND | (g_imagefile ? MF_ENABLED : MF_GRAYED)); -#endif /* def USE_IMAGE_LIST */ #ifdef PCRS EnableMenuItem(hmenu, ID_TOOLS_EDITPERLRE, MF_BYCOMMAND | (g_re_filterfile ? MF_ENABLED : MF_GRAYED)); #endif