2025-06-04 03:22:50 +02:00

32 lines
837 B
Plaintext
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#include "windows.h"
#include "cadtest.h"
CadtestMenu MENU
BEGIN
POPUP "&File"
BEGIN
MENUITEM "&Open...", IDM_OPEN
MENUITEM "&Save", IDM_SAVE
MENUITEM "Save &As...", IDM_SAVE_AS
END
POPUP "&Edit"
BEGIN
MENUITEM "&Configure Tablet Context...", IDM_CONFIG
MENUITEM "&Persistent Context", IDM_PERSIST
END
POPUP "&Help"
BEGIN
MENUITEM "&About Cadtest...", IDM_ABOUT
END
END
AboutBox DIALOG 22, 17, 144, 75
STYLE DS_MODALFRAME | WS_CAPTION | WS_SYSMENU
CAPTION "About Cadtest"
BEGIN
CTEXT "LCS/Telegraphics" -1, 0, 5, 144, 8
CTEXT "Cadtest Application" -1, 0, 14, 144, 8
CTEXT "Version 0.0" -1, 0, 34, 144, 8
DEFPUSHBUTTON "OK" IDOK, 53, 59, 32, 14, WS_GROUP
END