home *** CD-ROM | disk | FTP | other *** search
- /* Main emedit
- Early Morning Software
- Copyright ⌐ 1994. All Rights Reserved.
-
- SUBSYSTEM: emedit.exe Application
- FILE: emedtapp.rc
- AUTHOR: Ted Stockwell
-
-
- OVERVIEW
- ========
- All resources defined here.
- */
-
- #if !defined(WORKSHOP_INVOKED)
- #include <windows.h>
- #endif
- #include "emedtapp.rh"
-
- MDI_MENU MENU
- {
- POPUP "&File"
- {
- MENUITEM "&New", CM_MDIFILENEW
- MENUITEM "&Open...", CM_MDIFILEOPEN
- MENUITEM "&Close", CM_FILECLOSE, GRAYED
- MENUITEM SEPARATOR
- MENUITEM "&Save", CM_FILESAVE, GRAYED
- MENUITEM "Save &As...", CM_FILESAVEAS, GRAYED
- MENUITEM SEPARATOR
- MENUITEM "Print Pre&view...", CM_FILEPRINTPREVIEW, GRAYED
- MENUITEM "&Print...", CM_FILEPRINT, GRAYED
- MENUITEM "P&rint Setup...", CM_FILEPRINTERSETUP, GRAYED
- MENUITEM SEPARATOR
- MENUITEM "E&xit\tAlt+F4", CM_EXIT
- }
-
- POPUP "&Edit"
- {
- MENUITEM "&Undo\tCtrl+Z", CM_EDITUNDO, GRAYED
- MENUITEM "&Redo\tShift+Ctrl+Z", CM_EDITREDO, GRAYED
- MENUITEM SEPARATOR
- MENUITEM "Cu&t\tCtrl+X", CM_EDITCUT, GRAYED
- MENUITEM "&Copy\tCtrl+C", CM_EDITCOPY, GRAYED
- MENUITEM "&Paste\tCtrl+V", CM_EDITPASTE, GRAYED
- MENUITEM SEPARATOR
- MENUITEM "Clear &All", CM_EDITCLEAR, GRAYED
- MENUITEM "&Delete\tDel", CM_EDITDELETE, GRAYED
- MENUITEM "&Wrap", CM_EDITWRAP, GRAYED
- MENUITEM SEPARATOR
- MENUITEM "&Select All", CM_EDITSELECT_ALL, GRAYED
- MENUITEM "T&ime/Date", CM_EDITTIMEDATE, GRAYED
- }
-
- POPUP "&Search"
- {
- MENUITEM "&Find...", CM_EDITFIND, GRAYED
- MENUITEM "&Replace...", CM_EDITREPLACE, GRAYED
- MENUITEM "&Next\aF3", CM_EDITFINDNEXT, GRAYED
- }
-
- POPUP "&Options"
- {
- MENUITEM "&Font...", CM_FONT
- }
-
- POPUP "&Window"
- {
- MENUITEM "&Cascade", CM_CASCADECHILDREN, GRAYED
- MENUITEM "&Tile", CM_TILECHILDREN, GRAYED
- MENUITEM "Arrange &Icons", CM_ARRANGEICONS, GRAYED
- MENUITEM "C&lose All", CM_CLOSECHILDREN, GRAYED
- }
-
- POPUP "&Help"
- {
- MENUITEM "&About...", CM_HELPABOUT
- }
-
- }
-
-
- // Accelerator table for short-cut to menu commands. (include\owl\editfile.rc)
- MDI_MENU ACCELERATORS
- {
- VK_X, CM_EDITCUT, VIRTKEY, CONTROL
- VK_C, CM_EDITCOPY, VIRTKEY, CONTROL
- VK_V, CM_EDITPASTE, VIRTKEY, CONTROL
- VK_Z, CM_EDITUNDO, VIRTKEY, CONTROL
- VK_F3, CM_EDITFINDNEXT, VIRTKEY
- VK_Z, CM_EDITREDO, VIRTKEY, CONTROL, SHIFT
- }
-
-
- // Context sensitive help cursor.
- IDC_HELPCURSOR CURSOR "help.cur"
-
-
- //
- // Table of help hints displayed in the status bar.
- //
- STRINGTABLE
- BEGIN
- -1, "File/document operations"
- CM_MDIFILENEW, "Creates a new document"
- CM_MDIFILEOPEN, "Opens an existing document"
- CM_FILECLOSE, "Close this document"
- CM_FILESAVE, "Saves this document"
- CM_FILESAVEAS, "Saves this document with a new name"
- CM_FILEPRINT, "Print this document"
- CM_FILEPRINTERSETUP, "Setup this document print characteristics"
- CM_FILEPRINTPREVIEW, "Display full pages as read-only"
- CM_EXIT, "Quits EditPad and prompts to save the documents"
- CM_EDITUNDO -1, "Edit operations"
- CM_EDITUNDO, "Reverses the last operation"
- CM_EDITCUT, "Cuts the selection and puts it on the Clipboard"
- CM_EDITCOPY, "Copies the selection and puts it on the Clipboard"
- CM_EDITPASTE, "Inserts the clipboard contents at the insertion point"
- CM_EDITDELETE, "Deletes the selection"
- CM_EDITCLEAR, "Clear the entire document"
- CM_EDITFIND -1, "Search/replace operations"
- CM_EDITFIND, "Finds the specified text"
- CM_EDITREPLACE, "Finds the specified text and changes it"
- CM_EDITFINDNEXT, "Finds the next match"
- CM_CASCADECHILDREN -1, "Window arrangement and selection"
- CM_CASCADECHILDREN, "Cascades open windows"
- CM_TILECHILDREN, "Tiles open windows"
- CM_ARRANGEICONS, "Arranges iconic windows along bottom"
- CM_CLOSECHILDREN, "Closes all open windows"
- CM_HELPCONTENTS -1, "Access online help"
- CM_HELPCONTENTS, "Help table of contents"
- CM_HELPUSING, "Help on using online Help"
- CM_HELPABOUT, "About the emedit application"
- CM_FONT, "Change the font"
- CM_EDITSELECT_ALL, "Select all text"
- CM_EDITTIMEDATE, "Insert current Time/Date into text at caret position"
- CM_EDITWRAP, "Wrap selected text to fit the window"
- CM_COLUMNBLOCK, "Make column blocks the default selection type"
- CM_LINEBLOCK, "Make line blocks the default selection type"
- CM_EDITREDO, "Redo the previously undone operation"
- END
-
-
- //
- // OWL string table
- //
-
- // EditFile (include\owl\editfile.rc and include\owl\editsear.rc)
- STRINGTABLE LOADONCALL MOVEABLE DISCARDABLE
- BEGIN
- IDS_CANNOTFIND, "Cannot find ""%s""."
- IDS_UNTITLED, "Untitled"
- IDS_UNABLEREAD, "Unable to read file %s from disk."
- IDS_UNABLEWRITE, "Unable to write file %s to disk."
- IDS_FILECHANGED, "The text in the %s file has changed.\n\nDo you want to save the changes?"
- IDS_FILEFILTER, "Text files (*.TXT)|*.TXT|AllFiles (*.*)|*.*|"
- END
-
-
- // Printer (include\owl\printer.rc)
- STRINGTABLE LOADONCALL MOVEABLE DISCARDABLE
- BEGIN
- IDS_PRNON, " on "
- IDS_PRNERRORTEMPLATE, "'%s' not printed. %s."
- IDS_PRNOUTOFMEMORY, "Out of memory"
- IDS_PRNOUTOFDISK, "Out of disk space"
- IDS_PRNCANCEL, "Printing canceled"
- IDS_PRNMGRABORT, "Printing aborted in Print Manager"
- IDS_PRNGENERROR, "Error encountered during print"
- IDS_PRNERRORCAPTION, "Print Error"
- END
-
-
- // Exception string resources (include\owl\except.rc)
- STRINGTABLE LOADONCALL MOVEABLE DISCARDABLE
- BEGIN
- IDS_OWLEXCEPTION, "ObjectWindows Exception"
- IDS_UNHANDLEDXMSG, "Unhandled Exception"
- IDS_OKTORESUME, "OK to resume?"
- IDS_UNKNOWNEXCEPTION, "Unknown exception"
-
- IDS_UNKNOWNERROR, "Unknown error"
- IDS_NOAPP, "No application object"
- IDS_OUTOFMEMORY, "Out of memory"
- IDS_INVALIDMODULE, "Invalid module specified for window"
- IDS_INVALIDMAINWINDOW, "Invalid MainWindow"
-
- IDS_INVALIDWINDOW, "Invalid window %s"
- IDS_INVALIDCHILDWINDOW, "Invalid child window %s"
- IDS_INVALIDCLIENTWINDOW, "Invalid client window %s"
-
- IDS_CLASSREGISTERFAIL, "Class registration fail for window %s"
- IDS_CHILDREGISTERFAIL, "Child class registration fail for window %s"
- IDS_WINDOWCREATEFAIL, "Create fail for window %s"
- IDS_WINDOWEXECUTEFAIL, "Execute fail for window %s"
- IDS_CHILDCREATEFAIL, "Child create fail for window %s"
-
- IDS_MENUFAILURE, "Menu creation failure"
- IDS_VALIDATORSYNTAX, "Validator syntax error"
- IDS_PRINTERERROR, "Printer error"
-
- IDS_LAYOUTINCOMPLETE, "Incomplete layout constraints specified in window %s"
- IDS_LAYOUTBADRELWIN, "Invalid relative window specified in layout constraint in window %s"
-
- IDS_GDIFAILURE, "GDI failure"
- IDS_GDIALLOCFAIL, "GDI allocate failure"
- IDS_GDICREATEFAIL, "GDI creation failure"
- IDS_GDIRESLOADFAIL, "GDI resource load failure"
- IDS_GDIFILEREADFAIL, "GDI file read failure"
- IDS_GDIDELETEFAIL, "GDI object %X delete failure"
- IDS_GDIDESTROYFAIL, "GDI object %X destroy failure"
- IDS_INVALIDDIBHANDLE, "Invalid DIB handle %X"
- END
-
-
- // General Window's status bar messages. (include\owl\statusba.rc)
- STRINGTABLE
- BEGIN
- IDS_MODES "EXT|CAPS|NUM|SCRL|OVR|REC"
- SC_SIZE, "Changes the size of the window"
- SC_MOVE, "Moves the window to another position"
- SC_MINIMIZE, "Reduces the window to an icon"
- SC_MAXIMIZE, "Enlarges the window to it maximum size"
- SC_RESTORE, "Restores the window to its previous size"
- SC_CLOSE, "Closes the window"
- SC_TASKLIST, "Opens task list"
- SC_NEXTWINDOW, "Switches to next window"
- END
-
-
- // Validator messages (include\owl\validate.rc)
- STRINGTABLE LOADONCALL MOVEABLE DISCARDABLE
- BEGIN
- IDS_VALPXPCONFORM "Input does not conform to picture:\n""%s"""
- IDS_VALINVALIDCHAR "Invalid character in input"
- IDS_VALNOTINRANGE "Value is not in the range %ld to %ld."
- IDS_VALNOTINLIST "Input is not in valid-list"
- END
-
-
- //
- // Bitmaps used by the speedbar. Each bitmap is associated with a
- // particular menu command.
- //
- CM_MDIFILENEW BITMAP "new.bmp"
- CM_MDIFILEOPEN BITMAP "open.bmp"
- CM_FILESAVE BITMAP "save.bmp"
-
- CM_EDITUNDO BITMAP "undo.bmp"
- CM_EDITCUT BITMAP "cut.bmp"
- CM_EDITCOPY BITMAP "copy.bmp"
- CM_EDITPASTE BITMAP "paste.bmp"
-
- CM_EDITFIND BITMAP "find.bmp"
- CM_EDITFINDNEXT BITMAP "findnext.bmp"
-
- CM_FILEPRINTPREVIEW BITMAP "preview.bmp"
- CM_FILEPRINT BITMAP "print.bmp"
-
- CM_HELPCONTENTS BITMAP "help.bmp"
-
-
- //
- // Print Preview speed bar bitmaps
- //
- APX_PPR_PREVIOUS BITMAP "previous.bmp"
- APX_PPR_NEXT BITMAP "next.bmp"
- APX_PPR_ONEUP BITMAP "preview1.bmp"
- APX_PPR_TWOUP BITMAP "preview2.bmp"
-
-
- //
- // Misc application definitions
- //
-
- // MDI document ICON
- IDI_DOC ICON "mdichild.ico"
-
- // Application ICON
-
-
- // About box.
- IDD_ABOUT DIALOG 12, 17, 204, 85
- STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
- CAPTION "About emedit"
- FONT 8, "MS Sans Serif"
- {
- CTEXT "Early Morning Editpad : OWL Version", IDC_VERSION, 2, 6, 200, 8, SS_CENTER | SS_NOPREFIX | WS_GROUP
- CTEXT "This sample application was built with the Early Morning", -1, 0, 34, 200, 8, SS_CENTER | SS_NOPREFIX | WS_GROUP
- RTEXT "", IDC_DEBUG, 136, 55, 66, 8, SS_NOPREFIX
- DEFPUSHBUTTON "OK", IDOK, 84, 67, 28, 12
- ICON IDI_COFFEE, -1, 9, 2, 18, 20
- CTEXT "Editor VBX. To register the VBX or to order the", -1, 1, 44, 200, 8, SS_CENTER | SS_NOPREFIX | WS_GROUP
- CTEXT "C++ source code see emedit.doc", -1, 2, 54, 200, 8, SS_CENTER | SS_NOPREFIX | WS_GROUP
- CONTROL "", -1, "static", SS_BLACKFRAME | WS_CHILD | WS_VISIBLE, 0, 27, 205, 1
- }
-
-
- // Printer abort box.
- IDD_ABORTDIALOG DIALOG 84, 51, 143, 64
- STYLE DS_MODALFRAME | WS_POPUP | WS_VISIBLE | WS_CAPTION | WS_SYSMENU
- CAPTION "Print"
- BEGIN
- PUSHBUTTON "Cancel", IDCANCEL, 52, 44, 40, 14, WS_CHILD | WS_VISIBLE | WS_TABSTOP
- CTEXT "Printing", -1, 0, 4, 144, 8, SS_NOPREFIX
- CTEXT "%s", ID_TITLE, 0, 12, 144, 8, SS_NOPREFIX
- CTEXT "on the %s Printer", ID_DEVICE, 0, 20, 144, 8, SS_NOPREFIX
- CTEXT "connected to %s", ID_PORT, 0, 28, 144, 8, SS_NOPREFIX
- END
-
-
- // TInputDialog class dialog box.
- IDD_INPUTDIALOG DIALOG 20, 24, 180, 64
- STYLE WS_POPUP | WS_CAPTION | DS_SETFONT
- FONT 8, "Helv"
- BEGIN
- LTEXT "", ID_PROMPT, 10, 8, 160, 10, SS_NOPREFIX
- CONTROL "", ID_INPUT, "EDIT", WS_CHILD | WS_VISIBLE | WS_BORDER | WS_TABSTOP | ES_AUTOHSCROLL, 10, 20, 160, 12
- DEFPUSHBUTTON "&OK", IDOK, 47, 42, 40, 14
- PUSHBUTTON "&Cancel", IDCANCEL, 93, 42, 40, 14
- END
-
-
- // Horizontal slider thumb bitmap for TSlider and VSlider (include\owl\slider.rc)
- IDB_HSLIDERTHUMB BITMAP PRELOAD MOVEABLE DISCARDABLE
- BEGIN
- '42 4D 66 01 00 00 00 00 00 00 76 00 00 00 28 00'
- '00 00 12 00 00 00 14 00 00 00 01 00 04 00 00 00'
- '00 00 F0 00 00 00 00 00 00 00 00 00 00 00 00 00'
- '00 00 10 00 00 00 00 00 00 00 00 00 C0 00 00 C0'
- '00 00 00 C0 C0 00 C0 00 00 00 C0 00 C0 00 C0 C0'
- '00 00 C0 C0 C0 00 80 80 80 00 00 00 FF 00 00 FF'
- '00 00 00 FF FF 00 FF 00 00 00 FF 00 FF 00 FF FF'
- '00 00 FF FF FF 00 BB BB 0B BB BB BB B0 BB BB 00'
- '00 00 BB B0 80 BB BB BB 08 0B BB 00 00 00 BB 08'
- 'F8 0B BB B0 87 70 BB 00 00 00 B0 8F F8 80 BB 08'
- '77 77 0B 00 00 00 08 F8 88 88 00 88 88 87 70 00'
- '00 00 0F F7 77 88 00 88 77 77 70 00 00 00 0F F8'
- '88 88 00 88 88 87 70 00 00 00 0F F7 77 88 00 88'
- '77 77 70 00 00 00 0F F8 88 88 00 88 88 87 70 00'
- '00 00 0F F7 77 88 00 88 77 77 70 00 00 00 0F F8'
- '88 88 00 88 88 87 70 00 00 00 0F F7 77 88 00 88'
- '77 77 70 00 00 00 0F F8 88 88 00 88 88 87 70 00'
- '00 00 0F F7 77 88 00 88 77 77 70 00 00 00 0F F8'
- '88 88 00 88 88 87 70 00 00 00 0F F7 77 88 00 88'
- '77 77 70 00 00 00 0F F8 88 88 00 88 88 87 70 00'
- '00 00 0F F7 77 78 00 88 77 77 70 00 00 00 0F FF'
- 'FF FF 00 88 88 88 80 00 00 00 B0 00 00 00 BB 00'
- '00 00 0B 00 00 00'
- END
-
-
- // Vertical slider thumb bitmap for TSlider and HSlider (include\owl\slider.rc)
- IDB_VSLIDERTHUMB BITMAP PRELOAD MOVEABLE DISCARDABLE
- BEGIN
- '42 4D 2A 01 00 00 00 00 00 00 76 00 00 00 28 00'
- '00 00 28 00 00 00 09 00 00 00 01 00 04 00 00 00'
- '00 00 B4 00 00 00 00 00 00 00 00 00 00 00 00 00'
- '00 00 10 00 00 00 00 00 00 00 00 00 C0 00 00 C0'
- '00 00 00 C0 C0 00 C0 00 00 00 C0 00 C0 00 C0 C0'
- '00 00 C0 C0 C0 00 80 80 80 00 00 00 FF 00 00 FF'
- '00 00 00 FF FF 00 FF 00 00 00 FF 00 FF 00 FF FF'
- '00 00 FF FF FF 00 B0 00 00 00 00 00 00 00 00 0B'
- 'B0 00 00 00 00 00 00 00 00 0B 0F 88 88 88 88 88'
- '88 88 88 80 08 88 88 88 88 88 88 88 88 80 0F 77'
- '77 77 77 77 77 77 77 80 08 77 77 77 77 77 77 77'
- '77 80 0F 77 FF FF FF FF FF FF F7 80 08 77 FF FF'
- 'FF FF FF FF F7 80 0F 70 00 00 00 00 00 00 77 80'
- '08 70 00 00 00 00 00 00 77 80 0F 77 77 77 77 77'
- '77 77 77 80 08 77 77 77 77 77 77 77 77 80 0F 77'
- '77 77 77 77 77 77 77 80 08 77 77 77 77 77 77 77'
- '77 80 0F FF FF FF FF FF FF FF FF F0 08 88 88 88'
- '88 88 88 88 88 80 B0 00 00 00 00 00 00 00 00 0B'
- 'B0 00 00 00 00 00 00 00 00 0B'
- END
-
-
- // Version info.
- //
- #if !defined(__DEBUG_)
- // Non-Debug VERSIONINFO
- 1 VERSIONINFO LOADONCALL MOVEABLE
- FILEVERSION 1, 0, 0, 0
- PRODUCTVERSION 1, 0, 0, 0
- FILEFLAGSMASK 0
- FILEFLAGS VS_FFI_FILEFLAGSMASK
- FILEOS VOS__WINDOWS16
- FILETYPE VFT_APP
- BEGIN
- BLOCK "StringFileInfo"
- BEGIN
- // Language type = U.S. English (0x0409) and Character Set = Windows, Multilingual(0x04e4)
- BLOCK "040904E4" // Matches VarFileInfo Translation hex value.
- BEGIN
- VALUE "CompanyName", "Early Morning Software\000"
- VALUE "FileDescription", "emedit for Windows\000"
- VALUE "FileVersion", "1.0\000"
- VALUE "InternalName", "emedit\000"
- VALUE "LegalCopyright", "Copyright ⌐ 1994. All Rights Reserved.\000"
- VALUE "LegalTrademarks", "Windows /231 is a trademark of Microsoft Corporation\000"
- VALUE "OriginalFilename", "emedit.EXE\000"
- VALUE "ProductName", "emedit\000"
- VALUE "ProductVersion", "1.0\000"
- END
- END
-
- BLOCK "VarFileInfo"
- BEGIN
- VALUE "Translation", 0x04e4, 0x0409 // U.S. English(0x0409) & Windows Multilingual(0x04e4) 1252
- END
-
- END
- #else
-
- // Debug VERSIONINFO
- 1 VERSIONINFO LOADONCALL MOVEABLE
- FILEVERSION 1, 0, 0, 0
- PRODUCTVERSION 1, 0, 0, 0
- FILEFLAGSMASK VS_FF_DEBUG | VS_FF_PRERELEASE | VS_FF_PATCHED | VS_FF_PRIVATEBUILD | VS_FF_SPECIALBUILD
- FILEFLAGS VS_FFI_FILEFLAGSMASK
- FILEOS VOS__WINDOWS16
- FILETYPE VFT_APP
- BEGIN
- BLOCK "StringFileInfo"
- BEGIN
- // Language type = U.S. English (0x0409) and Character Set = Windows, Multilingual(0x04e4)
- BLOCK "040904E4" // Matches VarFileInfo Translation hex value.
- BEGIN
- VALUE "CompanyName", "Early Morning Software\000"
- VALUE "FileDescription", "emedit for Windows\000"
- VALUE "FileVersion", "1.0\000"
- VALUE "InternalName", "emedit\000"
- VALUE "LegalCopyright", "Copyright ⌐ 1994. All Rights Reserved.\000"
- VALUE "LegalTrademarks", "Windows \231 is a trademark of Microsoft Corporation\000"
- VALUE "OriginalFilename", "emedit.EXE\000"
- VALUE "ProductName", "emedit\000"
- VALUE "ProductVersion", "1.0\000"
- VALUE "SpecialBuild", "Debug Version\000"
- VALUE "PrivateBuild", "Built by Ted Stockwell\000"
- END
- END
-
- BLOCK "VarFileInfo"
- BEGIN
- VALUE "Translation", 0x04e4, 0x0409 // U.S. English(0x0409) & Windows Multilingual(0x04e4) 1252
- END
-
- END
- #endif
- IDD_VBXCONTAINER DIALOG 6, 15, 161, 127
- STYLE WS_POPUP | WS_VISIBLE | WS_CAPTION | WS_SYSMENU | WS_THICKFRAME | WS_MINIMIZEBOX | WS_MAXIMIZEBOX
- CAPTION "IDD_VBXCONTAINER"
- FONT 8, "MS Sans Serif"
- {
- CONTROL "CMDIALOG.VBX;CommonDialog;CMDialog102", IDC_CMDIALOG1, "VBControl", 0 | WS_CHILD | NOT WS_VISIBLE | WS_TABSTOP, 85, 10, 18, 20
- }
- IDD_VBXCONTAINER DLGINIT
- {
- 102, 0x0400, 83L,
- 0x0001, 0x0200, 0x0300, 0x0500, 0x0600, 0x0800, 0x0900, 0x0a00, 0x0000,
- 0x0000, 0x000b, 0x0000, 0x0d00, 0x0000, 0x0000, 0x080e, 0x0f00, 0x1000,
- 0x0000, 0x0011, 0x1200, 0x0000, 0x0013, 0x1400, 0x0000, 0x0015, 0x1600,
- 0x0000, 0x0017, 0x1800, 0x0000, 0x001a, 0x1d00, 0x0100, 0x001f, 0x0020,
- 0x2100, 0x0000, 0x0022, 0xff23, 0x25ff, "\xff"
- 0
- }
-
- IDI_COFFEE ICON "coffee6.ico"
-
-
-
-
-
- CM_STREAMBLOCK BITMAP "stream.bmp"
- OTHER_COMMANDS MENU
- {
- POPUP "&File"
- {
- MENUITEM "&1 <name of last file loaded goes here>", CM_FILELAST1
- MENUITEM "&2 <second file name goes here>", CM_FILELAST2
- MENUITEM "Item", CM_FILELAST3
- MENUITEM "Item", CM_FILELAST4
- }
-
- POPUP "&Blocks"
- {
- MENUITEM "&Stream blocks", CM_STREAMBLOCK
- MENUITEM "&Column Blocks", CM_COLUMNBLOCK
- MENUITEM "&Line blocks", CM_LINEBLOCK
- }
-
- }
-
- STRINGTABLE
- {
- CM_STREAMBLOCK, "Make stream blocks the default selection type"
- }
-
-
- CM_COLUMNBLOCK BITMAP "column.bmp"
-
-
- CM_LINEBLOCK BITMAP "line.bmp"
-
-
- IDD_CHILDCLIENT DIALOG 6, 15, 161, 114
- STYLE WS_CHILD | WS_VISIBLE
- FONT 8, "MS Sans Serif"
- {
- CONTROL "EMEDIT.VBX;Editor;Editor112", IDC_CHILDCLIENTEDITOR, "VBControl", 0 | WS_CHILD | NOT WS_VISIBLE | WS_BORDER | WS_VSCROLL | WS_HSCROLL | WS_TABSTOP, 40, 18, 65, 66
- }
-
-
-
-
- IDD_EMFIND DIALOG 14, 16, 199, 101
- STYLE DS_MODALFRAME | WS_POPUP | WS_VISIBLE | WS_CAPTION | WS_SYSMENU
- CAPTION "Find"
- FONT 8, "MS Sans Serif"
- {
- COMBOBOX IDC_COMBOTEXT, 48, 7, 90, 73, CBS_DROPDOWN | CBS_AUTOHSCROLL | CBS_HASSTRINGS | WS_VSCROLL | WS_TABSTOP
- CHECKBOX "Match &Case", IDC_MATCHCASE, 15, 34, 68, 13, BS_AUTOCHECKBOX | WS_TABSTOP
- CHECKBOX "&Whole Words Only", IDC_WHOLEWORDS, 15, 47, 75, 16, BS_AUTOCHECKBOX | WS_TABSTOP
- CONTROL "&Top", IDC_UPBUTTON, "BUTTON", BS_AUTORADIOBUTTON | WS_GROUP | WS_TABSTOP, 17, 79, 26, 9
- CONTROL "&Bottom", IDC_DOWNBUTTON, "BUTTON", BS_AUTORADIOBUTTON, 46, 79, 38, 9
- CONTROL "Fr&om Cursor", IDC_CURSORBUTTON, "BUTTON", BS_AUTORADIOBUTTON | WS_GROUP | WS_TABSTOP, 124, 62, 61, 13
- CONTROL "&Entire Scope", IDC_ENTIREBUTTON, "BUTTON", BS_AUTORADIOBUTTON, 124, 75, 61, 13
- DEFPUSHBUTTON "OK", IDOK, 144, 6, 50, 14, BS_DEFPUSHBUTTON | WS_TABSTOP
- PUSHBUTTON "Cancel", IDCANCEL, 144, 24, 50, 14, WS_TABSTOP
- CONTROL "&Find What:", -1, "STATIC", SS_LEFTNOWORDWRAP | WS_CHILD | WS_VISIBLE, 8, 8, 40, 11
- GROUPBOX "Options", IDC_GROUPBOX1, 10, 23, 82, 41, BS_GROUPBOX
- GROUPBOX "Search To", IDC_GROUPBOX2, 10, 67, 82, 26, BS_GROUPBOX
- GROUPBOX "Origin", IDC_GROUPBOX3, 117, 51, 72, 42, BS_GROUPBOX
- }
-
-
-
- IDD_EMREPLACE DIALOG 7, 18, 207, 117
- STYLE DS_MODALFRAME | WS_POPUP | WS_VISIBLE | WS_CAPTION | WS_SYSMENU
- CAPTION "Replace"
- FONT 8, "MS Sans Serif"
- {
- CONTROL "&Find What:", -1, "STATIC", SS_LEFTNOWORDWRAP | WS_CHILD | WS_VISIBLE | WS_GROUP, 6, 9, 37, 13
- COMBOBOX IDC_COMBOTEXT, 45, 9, 96, 104, CBS_DROPDOWN | CBS_AUTOHSCROLL | WS_CHILD | WS_VISIBLE | WS_VSCROLL | WS_TABSTOP
- CONTROL "&New Text:", -1, "STATIC", SS_LEFTNOWORDWRAP | WS_CHILD | WS_VISIBLE | WS_GROUP, 7, 27, 36, 11
- COMBOBOX IDC_COMBOBOX1, 45, 26, 96, 90, CBS_DROPDOWN | CBS_AUTOHSCROLL | WS_VSCROLL | WS_TABSTOP
- CHECKBOX "Match &Case", IDC_MATCHCASE, 15, 51, 68, 13, BS_AUTOCHECKBOX | WS_TABSTOP
- CHECKBOX "&Whole Words Only", IDC_WHOLEWORDS, 15, 63, 75, 16, BS_AUTOCHECKBOX | WS_TABSTOP
- CONTROL "&Up", IDC_UPBUTTON, "BUTTON", BS_AUTORADIOBUTTON | WS_GROUP | WS_TABSTOP, 15, 95, 31, 9
- CONTROL "&Down", IDC_DOWNBUTTON, "BUTTON", BS_AUTORADIOBUTTON, 46, 95, 38, 9
- CONTROL "Fr&om Cursor", IDC_CURSORBUTTON, "BUTTON", BS_AUTORADIOBUTTON | WS_GROUP | WS_TABSTOP, 122, 73, 61, 13
- CONTROL "&Entire Scope", IDC_ENTIREBUTTON, "BUTTON", BS_AUTORADIOBUTTON, 122, 90, 61, 13
- DEFPUSHBUTTON "OK", IDOK, 148, 6, 50, 14
- PUSHBUTTON "Cancel", IDCANCEL, 148, 24, 50, 14
- GROUPBOX "Options", IDC_GROUPBOX1, 10, 41, 82, 39, BS_GROUPBOX
- GROUPBOX "Direction", IDC_GROUPBOX2, 9, 83, 82, 25, BS_GROUPBOX
- GROUPBOX "Origin", IDC_GROUPBOX3, 117, 58, 72, 50, BS_GROUPBOX
- }
-
-
-
- IDD_EMREPLACECONFIRM DIALOG 41, 15, 153, 34
- STYLE DS_MODALFRAME | WS_POPUP | WS_VISIBLE | WS_CAPTION | WS_SYSMENU
- CAPTION "Replace Confirm"
- FONT 8, "MS Sans Serif"
- {
- DEFPUSHBUTTON "&Yes", IDC_YESBUTTON, 2, 16, 24, 14
- PUSHBUTTON "&No", IDC_NOBUTTON, 32, 16, 24, 14
- PUSHBUTTON "&One", IDC_ONEBUTTON, 61, 16, 24, 14
- PUSHBUTTON "&All", IDC_ALLBUTTON, 91, 16, 24, 14
- PUSHBUTTON "&Cancel", IDCANCEL, 120, 16, 31, 14
- CTEXT "Replace this occurence?", -1, 4, 3, 144, 11, SS_CENTER | NOT WS_GROUP
- }
-
-
-
-
- IDD_CHILDCLIENT DLGINIT
- {
- 112, 0x0400, 151L,
- 0x0323, 0x0001, 0x0300, 0xffff, 0x00ff, 0x0004, 0x0000, 0x0500, 0xff09,
- 0x0aff, 0xffff, 0x000b, 0x100c, 0x00ff, 0x0000, 0x0000, 0xbc00, 0x0002,
- 0x0000, 0x0100, 0x0102, 0x5322, 0x7379, 0x6574, 0x006d, 0x503b, 0xf600,
- 0x504b, 0xf600, 0x9f4b, 0x173f, 0x7342, 0xa719, 0x503b, 0xf600, 0x904b,
- 0x7417, 0x1249, 0x0000, 0x0014, 0x0116, 0x1700, 0x1900, 0x2400, 0x2600,
- 0x2701, 0xffff, 0x0038, 0x0000, 0x3900, 0x0000, 0x003a, 0x3b00, 0x0000,
- 0x023c, 0x3d00, 0x0000, 0xff3e, 0xffff, 0x3f00, 0x0000, 0x0080, 0xff40,
- 0x46ff, 0xffff, 0xff47, 0x4cff, 0x00ff, 0x004d, 0x004e, 0x004f, 0x0150,
- 0x0051, 0x5200, 0x0000, "\xff"
- 0
- }
-
-