c052373f816329f7c89b739731146a6c633bda3f
[privoxy.git] / w32res.h
1 #ifndef _W32RES_H
2 #define _W32RES_H
3 #define W32RES_H_VERSION "$Id: w32res.h,v 1.2 2001/05/20 01:21:20 jongfoster Exp $"
4 /*********************************************************************
5  *
6  * File        :  $Source: /cvsroot/ijbswa/current/w32res.h,v $
7  *
8  * Purpose     :  Identifiers for Windows GUI resources.
9  *
10  * Copyright   :  Written by and Copyright (C) 2001 the SourceForge
11  *                IJBSWA team.  http://ijbswa.sourceforge.net
12  *
13  *                Based on the Internet Junkbuster originally written
14  *                by and Copyright (C) 1997 Anonymous Coders and 
15  *                Junkbusters Corporation.  http://www.junkbusters.com
16  *
17  *                This program is free software; you can redistribute it 
18  *                and/or modify it under the terms of the GNU General
19  *                Public License as published by the Free Software
20  *                Foundation; either version 2 of the License, or (at
21  *                your option) any later version.
22  *
23  *                This program is distributed in the hope that it will
24  *                be useful, but WITHOUT ANY WARRANTY; without even the
25  *                implied warranty of MERCHANTABILITY or FITNESS FOR A
26  *                PARTICULAR PURPOSE.  See the GNU General Public
27  *                License for more details.
28  *
29  *                The GNU General Public License should be included with
30  *                this file.  If not, you can view it at
31  *                http://www.gnu.org/copyleft/gpl.html
32  *                or write to the Free Software Foundation, Inc., 59
33  *                Temple Place - Suite 330, Boston, MA  02111-1307, USA.
34  *
35  * Revisions   :
36  *    $Log: w32res.h,v $
37  *    Revision 1.2  2001/05/20 01:21:20  jongfoster
38  *    Version 2.9.4 checkin.
39  *    - Merged popupfile and cookiefile, and added control over PCRS
40  *      filtering, in new "permissionsfile".
41  *    - Implemented LOG_LEVEL_FATAL, so that if there is a configuration
42  *      file error you now get a message box (in the Win32 GUI) rather
43  *      than the program exiting with no explanation.
44  *    - Made killpopup use the PCRS MIME-type checking and HTTP-header
45  *      skipping.
46  *    - Removed tabs from "config"
47  *    - Moved duplicated url parsing code in "loaders.c" to a new funcition.
48  *    - Bumped up version number.
49  *
50  *    Revision 1.1.1.1  2001/05/15 13:59:08  oes
51  *    Initial import of version 2.9.3 source tree
52  *
53  *
54  *********************************************************************/
55
56 #define IDS_NEW_BLOCKER                   1
57
58 #define ID_NEW_BLOCKER                    100
59 #define IDR_TRAYMENU                      101
60 #define IDI_IDLE                          102
61 #define IDR_LOGVIEW                       103
62 #define IDR_ACCELERATOR                   104
63 #define IDR_POPUP_SELECTION               105
64 #define IDD_RULES                         106
65 #define IDI_DENYRULE                      107
66 #define IDI_ALLOWRULE                     108
67
68 #define IDI_JUNKBUSTER                    200
69 #define IDI_JUNKBUSTER1                   201
70 #define IDI_JUNKBUSTER2                   202
71 #define IDI_JUNKBUSTER3                   203
72 #define IDI_JUNKBUSTER4                   204
73 #define IDI_JUNKBUSTER5                   205
74 #define IDI_JUNKBUSTER6                   206
75 #define IDI_JUNKBUSTER7                   207
76 #define IDI_JUNKBUSTER8                   208
77
78 #define IDC_NEW                           300
79 #define IDC_ACTION                        301
80 #define IDC_RULES                         302
81 #define IDC_CREATE                        303
82 #define IDC_MOVEUP                        304
83 #define IDC_MOVEDOWN                      305
84 #define IDC_DELETE                        306
85 #define IDC_SAVE                          307
86
87 #define ID_SHOWWINDOW                     4000
88 #define ID_HELP_ABOUTJUNKBUSTER           4001
89 #define ID_FILE_EXIT                      4002
90 #define ID_VIEW_CLEARLOG                  4003
91 #define ID_VIEW_LOGMESSAGES               4004
92 #define ID_VIEW_MESSAGEHIGHLIGHTING       4005
93 #define ID_VIEW_LIMITBUFFERSIZE           4006
94 #define ID_VIEW_ACTIVITYANIMATION         4007
95 #define ID_HELP_FAQ                       4008
96 #define ID_HELP_MANUAL                    4009
97 #define ID_HELP_GPL                       4010
98 #define ID_HELP_STATUS                    4011
99 #ifdef TOGGLE
100 #define ID_TOGGLE_IJB                     4012
101 #endif
102
103 /* Break these out so they are easier to extend, but keep consecutive */
104 #define ID_TOOLS_EDITJUNKBUSTER           5000
105 #define ID_TOOLS_EDITBLOCKERS             5001
106 #define ID_TOOLS_EDITPERMISSIONS          5002
107 #define ID_TOOLS_EDITFORWARD              5003
108
109 #ifdef ACL_FILES
110 #define ID_TOOLS_EDITACLS                 5005
111 #endif /* def ACL_FILES */
112
113 #ifdef USE_IMAGE_LIST
114 #define ID_TOOLS_EDITIMAGE                5006
115 #endif /* def USE_IMAGE_LIST */
116
117 #ifdef PCRS
118 #define ID_TOOLS_EDITPERLRE               5008
119 #endif /* def PCRS */
120
121 #ifdef TRUST_FILES
122 #define ID_TOOLS_EDITTRUST                5004
123 #endif /* def TRUST_FILES */
124
125 /*
126  * The following symbols are declared in <afxres.h> in VC++.
127  * However, mingw32 doesn't have that header.  Let's 
128  * always declare them here, for consistency.
129  * These are the VC++ values.
130  */
131 #define IDC_STATIC      (-1)
132 #define ID_EDIT_COPY  30000
133
134
135 #endif /* ndef _W32RES_H */
136
137 /*
138   Local Variables:
139   tab-width: 3
140   end:
141 */