home *** CD-ROM | disk | FTP | other *** search
/ Borland Programmer's Resource / Borland_Programmers_Resource_CD_1995.iso / code / wxwin140 / include / wx.rc < prev   
Encoding:
Text File  |  1995-05-19  |  2.2 KB  |  76 lines

  1. /*
  2.  * File:     wx.rc
  3.  * Purpose:  wxWindows resource definitions. ALWAYS include
  4.  *         this in your application resource file.
  5.  *
  6.  *                     wxWindows version 1.30
  7.  * Copyright (c) 1993 Artificial Intelligence Applications Institute,
  8.  *                   The University of Edinburgh
  9.  *
  10.  *                     Author: Julian Smart
  11.  *                       Date: 9-4-93
  12.  *
  13.  * Permission to use, copy, modify, and distribute this software and its
  14.  * documentation for any purpose is hereby granted without fee, provided
  15.  * that the above copyright notice, author statement and this permission
  16.  * notice appear in all copies of this software and related documentation.
  17.  *
  18.  * THE SOFTWARE IS PROVIDED "AS-IS" AND WITHOUT WARRANTY OF ANY KIND, EXPRESS,
  19.  * IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY WARRANTY OF
  20.  * MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
  21.  *
  22.  * IN NO EVENT SHALL THE ARTIFICIAL INTELLIGENCE APPLICATIONS INSTITUTE OR THE
  23.  * UNIVERSITY OF EDINBURGH BE LIABLE FOR ANY SPECIAL, INCIDENTAL, INDIRECT OR
  24.  * CONSEQUENTIAL DAMAGES OF ANY KIND, OR ANY DAMAGES WHATSOEVER RESULTING FROM
  25.  * LOSS OF USE, DATA OR PROFITS, WHETHER OR NOT ADVISED OF THE POSSIBILITY OF
  26.  * DAMAGE, AND ON ANY THEORY OF LIABILITY, ARISING OUT OF OR IN CONNECTION WITH
  27.  * THE USE OR PERFORMANCE OF THIS SOFTWARE.
  28.  */
  29.  
  30. #include <windows.h>
  31.  
  32. /*
  33.  * This is the MDI Window menu
  34.  *
  35.  */
  36.  
  37. wxDefaultMenu MENU
  38. {
  39.   POPUP "&Window"
  40.   {
  41.      MENUITEM "&Cascade", 4002
  42.      MENUITEM "&Tile", 4001
  43.      MENUITEM "&Arrange icons", 4003
  44.      MENUITEM "&Next", 4004
  45.   }
  46. }
  47.  
  48. /*
  49.  * Dummy dialog for all dialog boxes
  50.  *
  51.  */
  52.  
  53. wxDummyDialog DIALOG 34, 22, 144, 75
  54. STYLE DS_MODALFRAME | WS_CAPTION | WS_SYSMENU
  55. CAPTION "Dummy dialog"
  56. BEGIN
  57. END
  58.  
  59. /*
  60.  * Standard wxWindows cursors
  61.  *
  62.  */
  63.  
  64. wxCURSOR_HAND        CURSOR hand.cur
  65. wxCURSOR_BULLSEYE    CURSOR bullseye.cur
  66. wxCURSOR_PENCIL      CURSOR pencil.cur
  67. wxCURSOR_MAGNIFIER   CURSOR magnif1.cur
  68. wxCURSOR_NO_ENTRY    CURSOR noentry.cur
  69. wxCURSOR_SIZING      CURSOR size.cur
  70. wxCURSOR_ROLLER      CURSOR roller.cur
  71. wxCURSOR_WATCH       CURSOR watch1.cur
  72. wxCURSOR_PBRUSH      CURSOR pbrush.cur
  73. wxCURSOR_PLEFT       CURSOR pntleft.cur
  74. wxCURSOR_PRIGHT      CURSOR pntright.cur
  75. wxCURSOR_QARROW      CURSOR query.cur
  76.