File: basic.adb

package info (click to toggle)
libtexttools 2.1.0-30
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 932 kB
  • sloc: ada: 11,394; ansic: 529; makefile: 106; sed: 78; sh: 12
file content (34 lines) | stat: -rw-r--r-- 665 bytes parent folder | download | duplicates (6)
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
with Common, OS, UserIO, Controls, Windows;
use  Common, OS, UserIO, Controls, Windows;

procedure basic is
   ch : character; -- key pressed
   pragma Unreferenced (Ch);
begin
  StartupCommon( "TIA", "tia" );
  StartupOS;
  StartupUserIO;
  StartupControls;
  StartupWindows;

  OpenWindow( "Basic Window", 0, 0, 40, 20, normal, false );
  DrawWindow;
  MoveTo( 2, 2 );
  Draw( "This is a basic TextTools window." );
  MoveTo( 2, 3 );
  Draw( "It contains no controls." );
  MoveTo( 2, 18 );
  Draw( "Press any key to quit." );

  GetKey( ch );

  CloseWindow;

  ShutdownWindows;
  ShutdownControls;
  ShutdownUserIO;
  ShutdownOS;
  ShutdownCommon;

end basic;