/** @(#)wspook.rc 97/11/26 Win32s Ciphergram Solver resource script */ /** Ciphergram Solver for Windows v1.0 Copyright (C) 1997 K. L. Dunn This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA Author: K. L. Dunn email: k.l.dunn@ieee.org */ #include #include "wspook.h" Spook ICON "wspook.ico" Spook MENU { POPUP "&Command" { MENUITEM "&Decipher", IDM_DECIPHER MENUITEM "&Stop", IDM_SABORT MENUITEM "&Options", IDM_OPTIONS MENUITEM "E&xit", IDM_EXIT } POPUP "&Edit" { MENUITEM "&Undo\tCtrl+Z", IDM_UNDO MENUITEM SEPARATOR MENUITEM "Cu&t\tCtrl+X", IDM_CUT MENUITEM "&Copy\tCtrl+C", IDM_COPY MENUITEM "&Paste\tCtrl+V", IDM_PASTE MENUITEM "De&lete\tDel", IDM_DELETE MENUITEM SEPARATOR MENUITEM "Select &All", IDM_SELALL } POPUP "&Help" { MENUITEM "&About Spook...", IDM_ABOUT } } Spook ACCELERATORS { "^Z", IDM_UNDO "^X", IDM_CUT "^C", IDM_COPY "^V", IDM_PASTE VK_DELETE, IDM_DELETE, VIRTKEY } AboutBox DIALOG 20, 20, 160, 140 STYLE WS_POPUP | WS_DLGFRAME { CTEXT "Spook" -1, 0, 12, 160, 8 ICON "Spook" -1, 8, 8, 0, 0 CTEXT "Ciphergram Solver for Windows v1.0" -1, 0, 36, 160, 8 CTEXT "Copyright (c) Karl Dunn, 1997" -1, 0, 48, 160, 8 CTEXT "Spook comes with ABSOLUTELY NO WARRANTY." -1, 0, 60, 160, 8 CTEXT "This is free software, and you are" -1, 0, 72, 160, 8 CTEXT "welcome to distribute it under certain" -1, 0, 84, 160, 8 CTEXT "conditions." -1, 0, 96, 160, 8 CTEXT "See the file LICENSE.TXT for details." -1, 0, 108, 160, 8 DEFPUSHBUTTON "OK" IDOK, 64, 120, 32, 14, WS_GROUP } OPTIONS DIALOG 20, 20, 94, 64 STYLE WS_BORDER | WS_CAPTION | WS_DLGFRAME | WS_POPUP CAPTION "CSA Options" BEGIN CONTROL "Cipher can equal Plain", OD_GRP_SELFOK, "button", BS_GROUPBOX | WS_CHILD | WS_VISIBLE, 7, 1, 82, 36 CONTROL "OK to be equal", OD_RB_SELFOK, "BUTTON", BS_AUTORADIOBUTTON | WS_CHILD | WS_VISIBLE | WS_GROUP | WS_TABSTOP, 11, 11, 68, 12 CONTROL "Must be different", OD_RB_SELFDIF, "BUTTON", BS_AUTORADIOBUTTON | WS_CHILD | WS_VISIBLE, 11, 23, 68, 12 DEFPUSHBUTTON "OK", OD_OK, 12, 44, 43, 14, WS_CHILD | WS_VISIBLE | WS_GROUP | WS_TABSTOP END