w32res.h 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. #ifndef W32RES_H_INCLUDED
  2. #define W32RES_H_INCLUDED
  3. /*********************************************************************
  4. *
  5. * File : $Source: /cvsroot/ijbswa/current/w32res.h,v $
  6. *
  7. * Purpose : Identifiers for Windows GUI resources.
  8. *
  9. * Copyright : Written by and Copyright (C) 2001-2002 members of
  10. * the Privoxy team. https://www.privoxy.org/
  11. *
  12. * Based on the Internet Junkbuster originally written
  13. * by and Copyright (C) 1997 Anonymous Coders and
  14. * Junkbusters Corporation. http://www.junkbusters.com
  15. *
  16. * This program is free software; you can redistribute it
  17. * and/or modify it under the terms of the GNU General
  18. * Public License as published by the Free Software
  19. * Foundation; either version 2 of the License, or (at
  20. * your option) any later version.
  21. *
  22. * This program is distributed in the hope that it will
  23. * be useful, but WITHOUT ANY WARRANTY; without even the
  24. * implied warranty of MERCHANTABILITY or FITNESS FOR A
  25. * PARTICULAR PURPOSE. See the GNU General Public
  26. * License for more details.
  27. *
  28. * The GNU General Public License should be included with
  29. * this file. If not, you can view it at
  30. * http://www.gnu.org/copyleft/gpl.html
  31. * or write to the Free Software Foundation, Inc., 59
  32. * Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  33. *
  34. *********************************************************************/
  35. #define IDR_TRAYMENU 101
  36. #define IDI_IDLE 102
  37. #define IDR_LOGVIEW 103
  38. #define IDR_ACCELERATOR 104
  39. #define IDR_POPUP_SELECTION 105
  40. #define IDI_MAINICON 200
  41. #define IDI_ANIMATED1 201
  42. #define IDI_ANIMATED2 202
  43. #define IDI_ANIMATED3 203
  44. #define IDI_ANIMATED4 204
  45. #define IDI_ANIMATED5 205
  46. #define IDI_ANIMATED6 206
  47. #define IDI_ANIMATED7 207
  48. #define IDI_ANIMATED8 208
  49. #define IDI_OFF 209
  50. #define ID_TOGGLE_SHOWWINDOW 4000
  51. #define ID_HELP_ABOUT 4001
  52. #define ID_FILE_EXIT 4002
  53. #define ID_VIEW_CLEARLOG 4003
  54. #define ID_VIEW_LOGMESSAGES 4004
  55. #define ID_VIEW_MESSAGEHIGHLIGHTING 4005
  56. #define ID_VIEW_LIMITBUFFERSIZE 4006
  57. #define ID_VIEW_ACTIVITYANIMATION 4007
  58. #define ID_HELP_FAQ 4008
  59. #define ID_HELP_MANUAL 4009
  60. #define ID_HELP_GPL 4010
  61. #define ID_HELP_STATUS 4011
  62. #ifdef FEATURE_TOGGLE
  63. #define ID_TOGGLE_ENABLED 4012
  64. #endif /* def FEATURE_TOGGLE */
  65. /* Break these out so they are easier to extend, but keep consecutive */
  66. #define ID_TOOLS_EDITCONFIG 5000
  67. #define ID_TOOLS_EDITDEFAULTACTIONS 5001
  68. #define ID_TOOLS_EDITUSERACTIONS 5002
  69. #define ID_TOOLS_EDITDEFAULTFILTERS 5003
  70. #define ID_TOOLS_EDITUSERFILTERS 5004
  71. #ifdef FEATURE_TRUST
  72. #define ID_TOOLS_EDITTRUST 5005
  73. #endif /* def FEATURE_TRUST */
  74. #define ID_EDIT_COPY 30000
  75. #endif /* ndef W32RES_H_INCLUDED */
  76. /*
  77. Local Variables:
  78. tab-width: 3
  79. end:
  80. */