📄 step06a.pas
字号:
{************************************************}
{ }
{ ObjectWindows Demo }
{ Copyright (c) 1992 by Borland International }
{ }
{************************************************}
{$R-} { Turn off range check because Windows message parameters
don't distinguish between Integer and Word. }
program Step06a;
uses WinDos, Strings, WinTypes, WinProcs, OWindows, ODialogs, OStdDlgs, Pen;
{$R STEPS.RES}
{$I STEPS.INC}
type
PStepWindow = ^TStepWindow;
TStepWindow = object(TWindow)
DragDC: HDC;
ButtonDown, HasChanged: Boolean;
CurrentPen: PPen;
FileName: array[0..fsPathName] of Char;
constructor Init(AParent: PWindowsObject; ATitle: PChar);
destructor Done; virtual;
function CanClose: Boolean; virtual;
procedure CMAbout(var Msg: TMessage);
virtual cm_First + cm_About;
procedure CMFileNew(var Msg: TMessage);
virtual cm_First + cm_FileNew;
procedure CMFileOpen(var Msg: TMessage);
virtual cm_First + cm_FileOpen;
procedure CMFileSave(var Msg: TMessage);
virtual cm_First + cm_FileSave;
procedure CMFileSaveAs(var Msg: TMessage);
virtual cm_First + cm_FileSaveAs;
procedure CMFilePrint(var Msg: TMessage);
virtual cm_First + cm_FilePrint;
procedure CMFileSetup(var Msg: TMessage);
virtual cm_First + cm_FileSetup;
procedure WMLButtonDown(var Msg: TMessage);
virtual wm_First + wm_LButtonDown;
procedure WMLButtonUp(var Msg: TMessage);
virtual wm_First + wm_LButtonUp;
procedure WMMouseMove(var Msg: TMessage);
virtual wm_First + wm_MouseMove;
procedure WMRButtonDown(var Msg: TMessage);
virtual wm_First + wm_RButtonDown;
end;
TMyApplication = object(TApplication)
procedure InitMainWindow; virtual;
end;
constructor TStepWindow.Init(AParent: PWindowsObject; ATitle: PChar);
begin
inherited Init(AParent, ATitle);
Attr.Menu := LoadMenu(HInstance, MakeIntResource(100));
HasChanged := False;
ButtonDown := False;
StrCopy(FileName, '*.PTS');
CurrentPen := New(PPen, Init(ps_Solid, 1, 0));
end;
destructor TStepWindow.Done;
begin
Dispose(CurrentPen, Done);
inherited Done;
end;
function TStepWindow.CanClose: Boolean;
var
Reply: Integer;
begin
CanClose := True;
if HasChanged then
begin
Reply := MessageBox(HWindow, 'Do you want to save?',
'Drawing has changed', mb_YesNo or mb_IconQuestion);
if Reply = id_Yes then CanClose := False;
end;
end;
procedure TStepWindow.CMAbout(var Msg: TMessage);
begin
Application^.ExecDialog(New(PDialog, Init(@Self, 'ABOUTBOX')));
end;
procedure TStepWindow.CMFileNew(var Msg: TMessage);
begin
InvalidateRect(HWindow, nil, True);
end;
procedure TStepWindow.CMFileOpen(var Msg: TMessage);
begin
if Application^.ExecDialog(New(PFileDialog,
Init(@Self, PChar(sd_FileOpen), FileName))) = id_OK then
MessageBox(HWindow, FIleName, 'Open the file:', mb_OK);
end;
procedure TStepWindow.CMFileSave(var Msg: TMessage);
begin
MessageBox(HWindow, 'Feature not implemented.', 'File Save', mb_OK);
end;
procedure TStepWindow.CMFileSaveAs(var Msg: TMessage);
begin
if Application^.ExecDialog(New(PFileDialog,
Init(@Self, PChar(sd_FileSave), FileName))) = id_OK then
MessageBox(HWindow, FileName, 'Save the file:', mb_OK);
end;
procedure TStepWindow.CMFilePrint(var Msg: TMessage);
begin
MessageBox(HWindow, 'Feature not implemented.', 'File Print', mb_OK);
end;
procedure TStepWindow.CMFileSetup(var Msg: TMessage);
begin
MessageBox(HWindow, 'Feature not implemented.', 'Printer Setup', mb_OK);
end;
procedure TStepWindow.WMLButtonDown(var Msg: TMessage);
begin
if not ButtonDown then
begin
ButtonDown := True;
SetCapture(HWindow);
DragDC := GetDC(HWindow);
CurrentPen^.Select(DragDC);
MoveTo(DragDC, Msg.LParamLo, Msg.LParamHi);
end;
end;
procedure TStepWindow.WMLButtonUp(var Msg: TMessage);
begin
if ButtonDown then
begin
ButtonDown := False;
ReleaseCapture;
CurrentPen^.Delete;
ReleaseDC(HWindow, DragDC);
end;
end;
procedure TStepWindow.WMMouseMove(var Msg: TMessage);
begin
if ButtonDown then LineTo(DragDC, Msg.LParamLo, Msg.LParamHi);
end;
procedure TStepWindow.WMRButtonDown(var Msg: TMessage);
var
InputText: array[0..5] of Char;
NewSize, ErrorPos: Integer;
begin
if not ButtonDown then
begin
Str(CurrentPen^.Width, InputText);
if Application^.ExecDialog(New(PInputDialog,
Init(@Self, 'Line Width', 'Type a new line width:',
InputText, SizeOf(InputText)))) = id_OK then
begin
Val(InputText, NewSize, ErrorPos);
if ErrorPos = 0 then
with CurrentPen^ do
SetAttributes(ps_Solid, NewSize, 0);
end;
end;
end;
procedure TMyApplication.InitMainWindow;
begin
MainWindow := New(PStepWindow, Init(nil, 'Steps'));
end;
var
MyApp: TMyApplication;
begin
MyApp.Init('Steps');
MyApp.Run;
MyApp.Done;
end.
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -