mirror of https://github.com/PCSX2/pcsx2.git
86 lines
4.2 KiB
Plaintext
86 lines
4.2 KiB
Plaintext
|
#include <os2.h>
|
||
|
#include "wxrsc.h"
|
||
|
|
||
|
|
||
|
/*
|
||
|
//////////////////////////////////////////////////////////////////////////////
|
||
|
// This is the MDI Window menu
|
||
|
//////////////////////////////////////////////////////////////////////////////
|
||
|
*/
|
||
|
MENU ID_WINDOW_MENU PRELOAD
|
||
|
BEGIN
|
||
|
SUBMENU "~Window", 131
|
||
|
BEGIN
|
||
|
MENUITEM "~Cascade", 132
|
||
|
MENUITEM "Tile ~Horizontally", 133
|
||
|
MENUITEM "Tile ~Vertically", 134
|
||
|
MENUITEM "", -1
|
||
|
MENUITEM "~Arrange Icons", 135
|
||
|
MENUITEM "~Next", 136
|
||
|
END
|
||
|
END
|
||
|
|
||
|
/*
|
||
|
//////////////////////////////////////////////////////////////////////////////
|
||
|
// Standard winWindows Cursors
|
||
|
//////////////////////////////////////////////////////////////////////////////
|
||
|
*/
|
||
|
|
||
|
POINTER WXCURSOR_HAND LOADONCALL "\\dev\\wx2\\wxwindows\\include\\wx\\os2\\hand.ptr"
|
||
|
POINTER WXCURSOR_BULLSEYE LOADONCALL "\\dev\\wx2\\wxwindows\\include\\wx\\os2\\bullseye.ptr"
|
||
|
POINTER WXCURSOR_PENCIL LOADONCALL "\\dev\\wx2\\wxwindows\\include\\wx\\os2\\pencil.ptr"
|
||
|
POINTER WXCURSOR_MAGNIFIER LOADONCALL "\\dev\\wx2\\wxwindows\\include\\wx\\os2\\magnit1.ptr"
|
||
|
POINTER WXCURSOR_SIZING LOADONCALL "\\dev\\wx2\\wxwindows\\include\\wx\\os2\\size.ptr"
|
||
|
POINTER WXCURSOR_ROLLER LOADONCALL "\\dev\\wx2\\wxwindows\\include\\wx\\os2\\roller.ptr"
|
||
|
POINTER WXCURSOR_PBRUSH LOADONCALL "\\dev\\wx2\\wxwindows\\include\\wx\\os2\\pbrush.ptr"
|
||
|
POINTER WXCURSOR_PLEFT LOADONCALL "\\dev\\wx2\\wxwindows\\include\\wx\\os2\\pntleft.ptr"
|
||
|
POINTER WXCURSOR_PRIGHT LOADONCALL "\\dev\\wx2\\wxwindows\\include\\wx\\os2\\pntright.ptr"
|
||
|
POINTER WXCURSOR_QARROW LOADONCALL "\\dev\\wx2\\wxwindows\\include\\wx\\os2\\query.ptr"
|
||
|
POINTER WXCURSOR_BLANK LOADONCALL "\\dev\\wx2\\wxwindows\\include\\wx\\os2\\blank.ptr"
|
||
|
|
||
|
/*
|
||
|
//////////////////////////////////////////////////////////////////////////////
|
||
|
// Default Icons
|
||
|
//////////////////////////////////////////////////////////////////////////////
|
||
|
*/
|
||
|
/* Standard icons */
|
||
|
ICON wxICON_TIP PRELOAD "\\dev\\wx2\\wxwindows\\include\\wx\\os2\\tip.ico"
|
||
|
|
||
|
ICON wxICON_SMALL_CLOSED_FOLDER PRELOAD "\\dev\\wx2\\wxwindows\\include\\wx\\os2\\folder1.ico"
|
||
|
ICON wxICON_SMALL_OPEN_FOLDER PRELOAD "\\dev\\wx2\\wxwindows\\include\\wx\\os2\\folder2.ico"
|
||
|
ICON wxICON_SMALL_FILE PRELOAD "\\dev\\wx2\\wxwindows\\include\\wx\\os2\\file.ico"
|
||
|
ICON wxICON_SMALL_COMPUTER PRELOAD "\\dev\\wx2\\wxwindows\\include\\wx\\os2\\computer.ico"
|
||
|
ICON wxICON_SMALL_DRIVE PRELOAD "\\dev\\wx2\\wxwindows\\include\\wx\\os2\\drive.ico"
|
||
|
ICON wxICON_SMALL_CDROM PRELOAD "\\dev\\wx2\\wxwindows\\include\\wx\\os2\\cdrom.ico"
|
||
|
ICON wxICON_SMALL_FLOPPY PRELOAD "\\dev\\wx2\\wxwindows\\include\\wx\\os2\\floppy.ico"
|
||
|
ICON wxICON_SMALL_REMOVEABLE PRELOAD "\\dev\\wx2\\wxwindows\\include\\wx\\os2\\removble.ico"
|
||
|
ICON wxICON_SMALL_ERROR PRELOAD "\\dev\\wx2\\wxwindows\\include\\wx\\os2\\error.ico"
|
||
|
ICON wxICON_SMALL_INFO PRELOAD "\\dev\\wx2\\wxwindows\\include\\wx\\os2\\info.ico"
|
||
|
ICON wxICON_SMALL_WARNING PRELOAD "\\dev\\wx2\\wxwindows\\include\\wx\\os2\\warning.ico"
|
||
|
|
||
|
/*
|
||
|
//////////////////////////////////////////////////////////////////////////////
|
||
|
// Bitmaps
|
||
|
//////////////////////////////////////////////////////////////////////////////
|
||
|
*/
|
||
|
BITMAP wxDISABLE_BUTTON_BITMAP LOADONCALL "\\dev\\wx2\\wxwindows\\include\\wx\\os2\\disable.bmp"
|
||
|
|
||
|
/*
|
||
|
// For src/generic/proplist.cpp
|
||
|
*/
|
||
|
BITMAP wxTICK_BITMAP LOADONCALL "\\dev\\wx2\\wxwindows\\include\\wx\\os2\\tick.bmp"
|
||
|
BITMAP wxCROSS_BITMAP LOADONCALL "\\dev\\wx2\\wxwindows\\include\\wx\\os2\\cross.bmp"
|
||
|
|
||
|
/*
|
||
|
// For kContextHelpButton
|
||
|
*/
|
||
|
BITMAP wxCSQUERY_BITMAP LOADONCALL "\\dev\\wx2\\wxwindows\\include\\wx\\os2\\csquery.bmp"
|
||
|
|
||
|
/*
|
||
|
// For obtaining the RGB values of standard colours
|
||
|
*/
|
||
|
BITMAP wxBITMAP_STD_COLOURS LOADONCALL "\\dev\\wx2\\wxwindows\\include\\wx\\os2\\colours.bmp"
|
||
|
|
||
|
RCINCLUDE \Dev\Wx2\WxWindows\INCLUDE\WX\OS2\WX.DLG
|
||
|
|