stdresid.h
上传用户:hzhsqp
上传日期:2007-01-06
资源大小:1600k
文件大小:7k
源码类别:

IP电话/视频会议

开发平台:

Visual C++

  1. /*
  2.  * stdresid.h
  3.  *
  4.  * Standard Resource Identifiers for GUI system.
  5.  *
  6.  * Portable Windows Library
  7.  *
  8.  * Copyright (c) 1993-1998 Equivalence Pty. Ltd.
  9.  *
  10.  * The contents of this file are subject to the Mozilla Public License
  11.  * Version 1.0 (the "License"); you may not use this file except in
  12.  * compliance with the License. You may obtain a copy of the License at
  13.  * http://www.mozilla.org/MPL/
  14.  *
  15.  * Software distributed under the License is distributed on an "AS IS"
  16.  * basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See
  17.  * the License for the specific language governing rights and limitations
  18.  * under the License.
  19.  *
  20.  * The Original Code is Portable Windows Library.
  21.  *
  22.  * The Initial Developer of the Original Code is Equivalence Pty. Ltd.
  23.  *
  24.  * Portions are Copyright (C) 1993 Free Software Foundation, Inc.
  25.  * All Rights Reserved.
  26.  *
  27.  * Contributor(s): ______________________________________.
  28.  *
  29.  * $Log: stdresid.h,v $
  30.  * Revision 1.16  1998/09/23 06:20:01  robertj
  31.  * Added open source copyright license.
  32.  *
  33.  * Revision 1.15  1995/02/05 00:52:42  robertj
  34.  * Added and changed about box standard string IDs.
  35.  *
  36.  * Revision 1.14  1995/01/22  07:29:42  robertj
  37.  * Added font & colour standard dialogs.
  38.  *
  39.  * Revision 1.13  1995/01/01  01:08:16  robertj
  40.  * Added more cursors for movement.
  41.  *
  42.  * Revision 1.12  1994/10/23  04:57:28  robertj
  43.  * Added new standard cursors for PSplitter.
  44.  *
  45.  * Revision 1.11  1994/08/23  11:32:52  robertj
  46.  * Oops
  47.  *
  48.  * Revision 1.10  1994/08/22  00:46:48  robertj
  49.  * Added pragma fro GNU C++ compiler.
  50.  *
  51.  * Revision 1.9  1994/07/17  10:46:06  robertj
  52.  * Added extra standard strings for Window menu.
  53.  *
  54.  * Revision 1.8  1994/06/25  11:55:15  robertj
  55.  * Unix version synchronisation.
  56.  *
  57.  * Revision 1.7  1994/04/20  12:17:44  robertj
  58.  * Added multiple inclusion protection
  59.  *
  60.  * Revision 1.6  1994/04/11  14:13:05  robertj
  61.  * Added extra standard resource IDs and normalised dialog ids.
  62.  *
  63.  * Revision 1.5  1994/03/07  07:38:19  robertj
  64.  * Major enhancementsacross the board.
  65.  *
  66.  * Revision 1.4  1994/01/17  10:37:36  robertj
  67.  * Added standard IDs for Ok and Cancal buttons.
  68.  *
  69.  * Revision 1.3  1993/08/19  18:03:28  robertj
  70.  * Fixed "nested" comment
  71.  *
  72.  * Revision 1.2  1993/07/14  12:49:16  robertj
  73.  * Fixed RCS keywords.
  74.  *
  75.  */
  76. #ifndef _PSTDRESID
  77. #define _PSTDRESID
  78. #ifdef __GNUC__
  79. #pragma interface
  80. #endif
  81. // Resource IDs for standard resources.
  82. #define PSTD_ID_STR_OK               32300
  83. #define PSTD_ID_STR_CANCEL           32301
  84. #define PSTD_ID_STR_YES              32302
  85. #define PSTD_ID_STR_NO               32303
  86. #define PSTD_ID_STR_ABORT            32304
  87. #define PSTD_ID_STR_RETRY            32305
  88. #define PSTD_ID_STR_IGNORE           32306
  89. #define PSTD_ID_STR_ABOUT_MENU       32307
  90. #define PSTD_ID_STR_ABOUT_TEXT       32308
  91. #define PSTD_ID_STR_WINDOW_MENU      32309
  92. #define PSTD_ID_STR_WINDOW_CASCADE   32310
  93. #define PSTD_ID_STR_WINDOW_TILE      32311
  94. #define PSTD_ID_STR_WINDOW_ARRANGE   32312
  95. #define PSTD_ID_STR_HELP_MENU        32313
  96. #define PSTD_ID_STR_HELP_CONTENTS    32314
  97. #define PSTD_ID_STR_HELP_SEARCH      32315
  98. #define PSTD_ID_STR_HELP_ON_HELP     32316
  99. #define PSTD_ID_STR_WEEKDAYS         32340
  100. #define PSTD_ID_STR_SUNDAY           (PSTD_ID_STR_WEEKDAYS+0)
  101. #define PSTD_ID_STR_MONDAY           (PSTD_ID_STR_WEEKDAYS+1)
  102. #define PSTD_ID_STR_TUESDAY          (PSTD_ID_STR_WEEKDAYS+2)
  103. #define PSTD_ID_STR_WEDNESDAY        (PSTD_ID_STR_WEEKDAYS+3)
  104. #define PSTD_ID_STR_THURSDAY         (PSTD_ID_STR_WEEKDAYS+4)
  105. #define PSTD_ID_STR_FRIDAY           (PSTD_ID_STR_WEEKDAYS+5)
  106. #define PSTD_ID_STR_SATURDAY         (PSTD_ID_STR_WEEKDAYS+6)
  107. #define PSTD_ID_STR_ABBREV_WEEKDAYS  32350
  108. #define PSTD_ID_STR_ABBREV_SUNDAY    (PSTD_ID_STR_ABBREV_WEEKDAYS+0)
  109. #define PSTD_ID_STR_ABBREV_MONDAY    (PSTD_ID_STR_ABBREV_WEEKDAYS+1)
  110. #define PSTD_ID_STR_ABBREV_TUESDAY   (PSTD_ID_STR_ABBREV_WEEKDAYS+2)
  111. #define PSTD_ID_STR_ABBREV_WEDNESDAY (PSTD_ID_STR_ABBREV_WEEKDAYS+3)
  112. #define PSTD_ID_STR_ABBREV_THURSDAY  (PSTD_ID_STR_ABBREV_WEEKDAYS+4)
  113. #define PSTD_ID_STR_ABBREV_FRIDAY    (PSTD_ID_STR_ABBREV_WEEKDAYS+5)
  114. #define PSTD_ID_STR_ABBREV_SATURDAY  (PSTD_ID_STR_ABBREV_WEEKDAYS+6)
  115. #define PSTD_ID_STR_MONTHS           32760
  116. #define PSTD_ID_STR_JANUARY          (PSTD_ID_STR_MONTHS+1)
  117. #define PSTD_ID_STR_FEBRUARY         (PSTD_ID_STR_MONTHS+2)
  118. #define PSTD_ID_STR_MARCH            (PSTD_ID_STR_MONTHS+3)
  119. #define PSTD_ID_STR_APRIL            (PSTD_ID_STR_MONTHS+4)
  120. #define PSTD_ID_STR_MAY              (PSTD_ID_STR_MONTHS+5)
  121. #define PSTD_ID_STR_JUNE             (PSTD_ID_STR_MONTHS+6)
  122. #define PSTD_ID_STR_JULY             (PSTD_ID_STR_MONTHS+7)
  123. #define PSTD_ID_STR_AUGUST           (PSTD_ID_STR_MONTHS+8)
  124. #define PSTD_ID_STR_SEPTEMBER        (PSTD_ID_STR_MONTHS+9)
  125. #define PSTD_ID_STR_OCTOBER          (PSTD_ID_STR_MONTHS+10)
  126. #define PSTD_ID_STR_NOVEMBER         (PSTD_ID_STR_MONTHS+11)
  127. #define PSTD_ID_STR_DECEMBER         (PSTD_ID_STR_MONTHS+12)
  128. #define PSTD_ID_STR_ABBREV_MONTHS    32780
  129. #define PSTD_ID_STR_ABBREV_JANUARY   (PSTD_ID_STR_ABBREV_MONTHS+1)
  130. #define PSTD_ID_STR_ABBREV_FEBRUARY  (PSTD_ID_STR_ABBREV_MONTHS+2)
  131. #define PSTD_ID_STR_ABBREV_MARCH     (PSTD_ID_STR_ABBREV_MONTHS+3)
  132. #define PSTD_ID_STR_ABBREV_APRIL     (PSTD_ID_STR_ABBREV_MONTHS+4)
  133. #define PSTD_ID_STR_ABBREV_MAY       (PSTD_ID_STR_ABBREV_MONTHS+5)
  134. #define PSTD_ID_STR_ABBREV_JUNE      (PSTD_ID_STR_ABBREV_MONTHS+6)
  135. #define PSTD_ID_STR_ABBREV_JULY      (PSTD_ID_STR_ABBREV_MONTHS+7)
  136. #define PSTD_ID_STR_ABBREV_AUGUST    (PSTD_ID_STR_ABBREV_MONTHS+8)
  137. #define PSTD_ID_STR_ABBREV_SEPTEMBER (PSTD_ID_STR_ABBREV_MONTHS+9)
  138. #define PSTD_ID_STR_ABBREV_OCTOBER   (PSTD_ID_STR_ABBREV_MONTHS+10)
  139. #define PSTD_ID_STR_ABBREV_NOVEMBER  (PSTD_ID_STR_ABBREV_MONTHS+11)
  140. #define PSTD_ID_STR_ABBREV_DECEMBER  (PSTD_ID_STR_ABBREV_MONTHS+12)
  141. #define PSTD_ID_ICON_INFORMATION     32400
  142. #define PSTD_ID_ICON_QUESTION        32401
  143. #define PSTD_ID_ICON_EXCLAMATION     32402
  144. #define PSTD_ID_ICON_STOPSIGN        32403
  145. #define PSTD_ID_ICON_WINDOW          32404
  146. #define PSTD_ID_CURSOR_ARROW         32500
  147. #define PSTD_ID_CURSOR_IBEAM         32501
  148. #define PSTD_ID_CURSOR_WAIT          32502
  149. #define PSTD_ID_CURSOR_CROSS         32503
  150. #define PSTD_ID_CURSOR_LEFTRIGHT     32504
  151. #define PSTD_ID_CURSOR_UPDOWN        32505
  152. #define PSTD_ID_CURSOR_MOVETOP       32506
  153. #define PSTD_ID_CURSOR_MOVETOPRIGHT  32507
  154. #define PSTD_ID_CURSOR_MOVERIGHT     32508
  155. #define PSTD_ID_CURSOR_MOVEBOTRIGHT  32509
  156. #define PSTD_ID_CURSOR_MOVEBOTTOM    32510
  157. #define PSTD_ID_CURSOR_MOVEBOTLEFT   32511
  158. #define PSTD_ID_CURSOR_MOVELEFT      32512
  159. #define PSTD_ID_CURSOR_MOVETOPLEFT   32513
  160. #define PSTD_ID_DIALOG_OPEN_FILE     32600
  161. #define PSTD_ID_DIALOG_SAVE_FILE     32601
  162. #define PSTD_ID_DIALOG_OPEN_DIR      32602
  163. #define PSTD_ID_DIALOG_PRINTER_SETUP 32603
  164. #define PSTD_ID_DIALOG_PRINT_JOB     32604
  165. #define PSTD_ID_DIALOG_FONT          32605
  166. #define PSTD_ID_DIALOG_COLOUR        32606
  167. #define PSTD_ID_HELP_CONTENTS        32700
  168. #define PSTD_ID_HELP_SEARCH          32701
  169. #define PSTD_ID_HELP_ON_HELP         32702
  170. #define PSTD_ID_OK                   1
  171. #define PSTD_ID_CANCEL               2
  172. #define PSTD_ID_HELP                 3
  173. #endif
  174. // End of File ////////////////////////////////////////////////////////////////