1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179
|
{
Opening a window with optional custom screen, and
basic event-driven drawing into the window
Free Pascal for MorphOS example
Copyright (C) 2004 by Karoly Balogh
Various enhancements by Ilkka 'Itix' Lehtoranta
See the file COPYING.FPC, included in this distribution,
for details about the copyright.
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.
**********************************************************************}
{ * 2004.12.10 * }
program window;
uses exec, intuition, graphics, utility;
{ * Enable this to run on custom screen. If it's not * }
{ * enabled, window will open on default pubscreen * }
{ DEFINE CUSTOMSCREEN}
var
{$IFDEF CUSTOMSCREEN}
myScreen : PScreen;
{$ENDIF}
myWindow : PWindow;
IMesg : PIntuiMessage;
Quit : Boolean;
LeftButton: Boolean;
msg_Class : Cardinal;
msg_Code : Word;
X_Pos : Integer;
Y_Pos : Integer;
X_Old : Integer;
Y_Old : Integer;
Pen : Integer;
const
ERRMSG_NOINTUI = 'Unable to open intuition.library V50!';
ERRMSG_NOGFX = 'Unable to open graphics.library V50!';
ERRMSG_NOSCREEN= 'Can''t open screen!';
ERRMSG_NOWINDOW= 'Can''t open window!';
procedure ShutDown(exitString: String; code: LongInt);
begin
if assigned(myWindow) then CloseWindow(myWindow);
{$IFDEF CUSTOMSCREEN}
if assigned(myScreen) then CloseScreen(myScreen);
{$ENDIF}
{ * We're using library functions built into units, so it's * }
{ * not needed to close libs here. If you're using additional * }
{ * libs, add code to close them here. * }
if exitString<>'' then writeln(exitString);
Halt(code);
end;
procedure Init;
begin
{ * Opening the needed libs with builtin functions. * }
if Not InitIntuitionLibrary then ShutDown(ERRMSG_NOINTUI,20);
if Not InitGraphicsLibrary then ShutDown(ERRMSG_NOGFX,20);
{$IFDEF CUSTOMSCREEN}
myScreen:=NIL;
{ * Opening our custom screen * }
myScreen:=OpenScreenTags(NIL,[SA_Width,640,SA_Height,480,
SA_Depth,24,
SA_Title,DWord(PChar('Free Pascal Rules!')),
TAG_DONE]);
if myScreen=NIL then ShutDown(ERRMSG_NOSCREEN,20);
{$ENDIF}
myWindow:=NIL;
{ * We open our window here. * }
myWindow:=OpenWindowTags(NIL,[WA_Left,0,WA_Top,0,
WA_Width,400,WA_Height,300,
WA_MinWidth,100,WA_MinHeight,100,
WA_MaxWidth,32000,WA_MaxHeight,32000,
WA_Title,DWord(PChar('Free Pascal Test')),
WA_IDCMP,(IDCMP_CLOSEWINDOW or IDCMP_MOUSEBUTTONS or
IDCMP_MOUSEMOVE or IDCMP_VANILLAKEY or
IDCMP_REFRESHWINDOW),
WA_Flags,(WFLG_SMART_REFRESH or
WFLG_ACTIVATE or WFLG_REPORTMOUSE or
WFLG_CLOSEGADGET or WFLG_SIZEGADGET or
WFLG_SIZEBBOTTOM or WFLG_GIMMEZEROZERO or
WFLG_DRAGBAR),
{$IFDEF CUSTOMSCREEN}
WA_CustomScreen,DWord(myScreen),
{$ENDIF}
TAG_END]);
if myWindow=NIL then ShutDown(ERRMSG_NOWINDOW,20);
SetAPen(myWindow^.RPort,1);
end;
begin
Init;
Quit:=False;
LeftButton:=False;
X_Old:=0;
Y_Old:=0;
Pen:=1;
repeat
WaitPort(myWindow^.UserPort);
IMesg:=PIntuiMessage(GetMsg(myWindow^.UserPort));
if IMesg<>NIL then Begin
{ * It's recommended to copy contents of incoming * }
{ * message, and reply it as soon as possible. * }
msg_Class:=IMesg^.IClass;
msg_Code :=IMesg^.Code;
X_Pos :=IMesg^.MouseX - myWindow^.BorderLeft;
Y_Pos :=IMesg^.MouseY - myWindow^.BorderTop;
ReplyMsg(Pointer(IMesg));
{ * Handle different kind of messages here. * }
case msg_Class of
IDCMP_REFRESHWINDOW:
begin
BeginRefresh(myWindow);
EndRefresh(myWindow, 1);
end;
IDCMP_VANILLAKEY:
begin
if msg_Code >= Integer('1') then begin
if msg_Code <= Integer('8') then begin
Pen := msg_Code - Integer('1') + 1;
end;
end;
end;
IDCMP_CLOSEWINDOW:
quit:=True;
IDCMP_MOUSEBUTTONS:
case msg_Code of
SELECTDOWN:
begin
LeftButton:=True;
X_Old:=X_Pos;
Y_Old:=Y_Pos;
end;
SELECTUP:
LeftButton:=False;
end;
IDCMP_MOUSEMOVE:
begin
{ * Draw when left button is pressed, and mouse is moved. * }
if LeftButton then begin
SetAPen(myWindow^.RPort,Pen);
gfxMove(myWindow^.RPort,X_Old,Y_Old);
Draw(myWindow^.RPort,X_Pos,Y_Pos);
X_Old := X_Pos;
y_Old := Y_Pos;
end;
end;
end;
end;
until Quit;
ShutDown('',0);
end.
|