Files
TeslaRel410/BORLAND/BC45/EXAMPLES/CLASSLIB/TODO/TODOWIN.RC
T
CydandClaude Fable 5 63312e07f9 source410: literal 4.10 source reconstruction + BC++ 4.52 fleet toolchain archived
- BORLAND/: Borland C++ 4.52 (chosen over 4.5 by byte-match: CODE/RP/CW32.LIB
  is identical to 4.52's install lib). BCC32/TLINK32/TLIB/MAKE run natively on
  Win11; CODE/BT/OPT.MAK is the shipped BTL4OPT.EXE's exact flag recipe
  (extender = Borland PowerPack DPMI32, not Phar Lap TNT).
- restoration/source410/: the literal 1995-form reconstruction of the missing
  BT game source (never mixed into CODE/). Round 1-3 state:
  * 6 of 10 surviving original TUs COMPILE CLEAN under the period toolchain
    (BTMSSN, BTCNSL, BTSCNRL, BTTEAM, BTL4MODE, BTL4ARND) - first builds
    since 1996.
  * BT_L4/BTL4APP.CPP pilot reconstruction: 12/12 functions, Fail() lands on
    its binary-recorded line 400 exactly.
  * BT/BTCNSL.HPP: console wire IDs recovered from the binary's ctors
    (Killed=9, Damaged=10, ScoreUpdate=13, DeathWithoutHonor=15 [T1];
    TeamScore=12 flagged [T4]).
  * MUNGA/: 8 engine-header backfills back-dated from the BT412 WinTesla tree
    (VDATA numbering decomp-verified; AUDREND's OpenAL-era virtual removed -
    the period compiler is the drift detector).
  * Tooling: backdate.py (WinTesla->1995 header transform), compile410.sh
    (per-TU verification sweep under authentic OPT.MAK flags).
  * README: corrected roadmap - MECH.HPP is the capstone grown with the mech
    TU reconstructions; BTREG.CPP green = the header-family milestone.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
2026-07-19 07:33:26 -05:00

67 lines
2.2 KiB
Plaintext

/*---------------------------------------------------------------------
//
// TODOWIN.RC
//
// Copyright (c) 1991, 1993 by Borland International
// All Rights Reserved.
//
//---------------------------------------------------------------------*/
#include <windows.h>
#include "tododefs.h"
TodoMenu MENU
BEGIN
POPUP "&File"
BEGIN
MENUITEM "&New", IDM_NEW_LIST,
MENUITEM "&Open...", IDM_OPEN,
MENUITEM "&Save", IDM_SAVE,
MENUITEM "Save &As...", IDM_SAVEAS,
MENUITEM SEPARATOR
MENUITEM "E&xit", IDM_QUIT
END
POPUP "&Edit"
BEGIN
MENUITEM "&Edit Entry...", IDM_EDIT
MENUITEM "&Insert Entry...", IDM_NEW_ENTRY
MENUITEM "&Delete Entry...", IDM_DEL_ENTRY
END
POPUP "&Help"
BEGIN
MENUITEM "&About Todo List", IDM_ABOUT
END
END
AboutBox DIALOG 22, 17, 144, 75
CAPTION "About Todo"
STYLE WS_BORDER | WS_CAPTION | WS_DLGFRAME | WS_POPUP
BEGIN
CTEXT "Borland International", -1, 0, 5, 144, 8
CTEXT "Todo List", -1, 0, 14, 144, 8
CTEXT "Version 2.0", -1, 0, 34, 144, 8
CONTROL "OK", IDOK, "BUTTON", WS_GROUP, 56, 51, 32, 14
END
TodoEdit DIALOG 66, 35, 159, 143
CAPTION "To Do"
STYLE WS_BORDER | WS_CAPTION | WS_DLGFRAME | WS_POPUP
BEGIN
CONTROL "Date Entered:", -1, "static", SS_LEFT | WS_CHILD, 14, 8, 45, 9
CONTROL "", IDE_DATEENT, "EDIT", ES_LEFT | WS_BORDER | WS_TABSTOP, 14, 20, 68, 12
CONTROL "Date Due:", -1, "static", SS_LEFT | WS_CHILD, 15, 38, 44, 11
CONTROL "", IDE_DATEDUE, "EDIT", ES_LEFT | WS_BORDER | WS_TABSTOP, 14, 51, 68, 12
CONTROL "Priority:", -1, "BUTTON", BS_GROUPBOX | BS_LEFTTEXT, 101, 9, 46, 58
CONTROL "Low", IDE_LOW, "BUTTON", BS_RADIOBUTTON | WS_GROUP | WS_TABSTOP, 106, 20, 28, 12
RADIOBUTTON "Medium", IDE_MEDIUM, 106, 35, 37, 12
RADIOBUTTON "High", IDE_HIGH, 106, 50, 28, 12
CONTROL "What to do:", -1, "static", SS_LEFT | WS_CHILD, 13, 76, 40, 8
CONTROL "", IDE_TEXT, "edit", ES_LEFT | ES_AUTOHSCROLL | WS_BORDER | WS_GROUP | WS_TABSTOP, 13, 90, 134, 12
DEFPUSHBUTTON "OK", IDOK, 29, 115, 43, 14, WS_TABSTOP
PUSHBUTTON "Cancel", IDCANCEL, 88, 115, 42, 14, WS_TABSTOP
END