summaryrefslogtreecommitdiff
path: root/src/fltk-devices-surface-paged-postscript.adb
blob: fa9f66d48f0c42e1bf09af1f3924413606264712 (plain)
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
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505


--  Programmed by Jedidiah Barber
--  Released into the public domain


with

    Ada.Assertions,
    Interfaces.C.Strings;

use type

    Interfaces.C.int;


package body FLTK.Devices.Surface.Paged.Postscript is


    package Chk renames Ada.Assertions;




    ------------------------
    --  Functions From C  --
    ------------------------

    function fopen
           (Name, Mode : in Interfaces.C.char_array)
        return Storage.Integer_Address;
    pragma Import (C, fopen, "fopen");

    function fclose
           (Handle : in Storage.Integer_Address)
        return Interfaces.C.int;
    pragma Import (C, fclose, "fclose");




    function new_fl_postscript_file_device
        return Storage.Integer_Address;
    pragma Import (C, new_fl_postscript_file_device, "new_fl_postscript_file_device");
    pragma Inline (new_fl_postscript_file_device);

    procedure free_fl_postscript_file_device
           (P : in Storage.Integer_Address);
    pragma Import (C, free_fl_postscript_file_device, "free_fl_postscript_file_device");
    pragma Inline (free_fl_postscript_file_device);




    function fl_postscript_file_device_get_file_chooser_title
        return Interfaces.C.Strings.chars_ptr;
    pragma Import (C, fl_postscript_file_device_get_file_chooser_title,
        "fl_postscript_file_device_get_file_chooser_title");
    pragma Inline (fl_postscript_file_device_get_file_chooser_title);

    procedure fl_postscript_file_device_set_file_chooser_title
           (V : in Interfaces.C.Strings.chars_ptr);
    pragma Import (C, fl_postscript_file_device_set_file_chooser_title,
        "fl_postscript_file_device_set_file_chooser_title");
    pragma Inline (fl_postscript_file_device_set_file_chooser_title);




    function fl_postscript_file_device_get_driver
           (D : in Storage.Integer_Address)
        return Storage.Integer_Address;
    pragma Import (C, fl_postscript_file_device_get_driver, "fl_postscript_file_device_get_driver");
    pragma Inline (fl_postscript_file_device_get_driver);




    function fl_postscript_file_device_start_job
           (D : in Storage.Integer_Address;
            C : in Interfaces.C.int)
        return Interfaces.C.int;
    pragma Import (C, fl_postscript_file_device_start_job, "fl_postscript_file_device_start_job");
    pragma Inline (fl_postscript_file_device_start_job);

    function fl_postscript_file_device_start_job2
           (D    : in     Storage.Integer_Address;
            C    : in     Interfaces.C.int;
            F, T :    out Interfaces.C.int)
        return Interfaces.C.int;
    pragma Import (C, fl_postscript_file_device_start_job2, "fl_postscript_file_device_start_job2");
    pragma Inline (fl_postscript_file_device_start_job2);

    function fl_postscript_file_device_start_job3
           (D, O    : in Storage.Integer_Address;
            C, F, L : in Interfaces.C.int)
        return Interfaces.C.int;
    pragma Import (C, fl_postscript_file_device_start_job3, "fl_postscript_file_device_start_job3");
    pragma Inline (fl_postscript_file_device_start_job3);

    function fl_postscript_file_device_start_job4
           (D       : in Storage.Integer_Address;
            C, F, L : in Interfaces.C.int)
        return Interfaces.C.int;
    pragma Import (C, fl_postscript_file_device_start_job4, "fl_postscript_file_device_start_job4");
    pragma Inline (fl_postscript_file_device_start_job4);

    procedure fl_postscript_file_device_end_job
           (D : in Storage.Integer_Address);
    pragma Import (C, fl_postscript_file_device_end_job, "fl_postscript_file_device_end_job");
    pragma Inline (fl_postscript_file_device_end_job);

    function fl_postscript_file_device_start_page
           (D : in Storage.Integer_Address)
        return Interfaces.C.int;
    pragma Import (C, fl_postscript_file_device_start_page, "fl_postscript_file_device_start_page");
    pragma Inline (fl_postscript_file_device_start_page);

    function fl_postscript_file_device_end_page
           (D : in Storage.Integer_Address)
        return Interfaces.C.int;
    pragma Import (C, fl_postscript_file_device_end_page, "fl_postscript_file_device_end_page");
    pragma Inline (fl_postscript_file_device_end_page);




    procedure fl_postscript_file_device_margins
           (D          : in     Storage.Integer_Address;
            L, T, R, B :    out Interfaces.C.int);
    pragma Import (C, fl_postscript_file_device_margins, "fl_postscript_file_device_margins");
    pragma Inline (fl_postscript_file_device_margins);

    function fl_postscript_file_device_printable_rect
           (D    : in     Storage.Integer_Address;
            W, H :    out Interfaces.C.int)
        return Interfaces.C.int;
    pragma Import (C, fl_postscript_file_device_printable_rect,
        "fl_postscript_file_device_printable_rect");
    pragma Inline (fl_postscript_file_device_printable_rect);

    procedure fl_postscript_file_device_get_origin
           (D    : in     Storage.Integer_Address;
            X, Y :    out Interfaces.C.int);
    pragma Import (C, fl_postscript_file_device_get_origin, "fl_postscript_file_device_get_origin");
    pragma Inline (fl_postscript_file_device_get_origin);

    procedure fl_postscript_file_device_set_origin
           (D    : in Storage.Integer_Address;
            X, Y : in Interfaces.C.int);
    pragma Import (C, fl_postscript_file_device_set_origin, "fl_postscript_file_device_set_origin");
    pragma Inline (fl_postscript_file_device_set_origin);

    procedure fl_postscript_file_device_rotate
           (D : in Storage.Integer_Address;
            R : in Interfaces.C.C_float);
    pragma Import (C, fl_postscript_file_device_rotate, "fl_postscript_file_device_rotate");
    pragma Inline (fl_postscript_file_device_rotate);

    procedure fl_postscript_file_device_scale
           (D    : in Storage.Integer_Address;
            X, Y : in Interfaces.C.C_float);
    pragma Import (C, fl_postscript_file_device_scale, "fl_postscript_file_device_scale");
    pragma Inline (fl_postscript_file_device_scale);

    procedure fl_postscript_file_device_translate
           (D    : in Storage.Integer_Address;
            X, Y : in Interfaces.C.int);
    pragma Import (C, fl_postscript_file_device_translate, "fl_postscript_file_device_translate");
    pragma Inline (fl_postscript_file_device_translate);

    procedure fl_postscript_file_device_untranslate
           (D : in Storage.Integer_Address);
    pragma Import (C, fl_postscript_file_device_untranslate,
        "fl_postscript_file_device_untranslate");
    pragma Inline (fl_postscript_file_device_untranslate);




    -----------------------------
    --  Auxiliary Subprograms  --
    -----------------------------

    procedure Open
           (File : in out File_Type;
            Name : in     String)
    is
        Result : Storage.Integer_Address;
    begin
        File.Close;
        Result := fopen
           (Interfaces.C.To_C (Name),
            Interfaces.C.To_C ("w"));
        if Result = Null_Pointer then
            raise File_Open_Error;
        else
            File.C_File := Result;
            File.Open_State := True;
        end if;
    end Open;


    function Is_Open
           (File : in File_Type)
        return Boolean is
    begin
        return File.Open_State;
    end Is_Open;


    procedure Close
           (File : in out File_Type)
    is
        Result : Interfaces.C.int;
    begin
        if File.Is_Open then
            Result := fclose (File.C_File);
            if Result /= 0 then
                raise File_Close_Error;
            end if;
            File.Open_State := False;
        end if;
    end Close;




    -------------------
    --  Destructors  --
    -------------------

    procedure Finalize
           (This : in out File_Type) is
    begin
        This.Close;
    end Finalize;


    procedure Finalize
           (This : in out Postscript_File_Device) is
    begin
        if This.Void_Ptr /= Null_Pointer and This.Needs_Dealloc then
            free_fl_postscript_file_device (This.Void_Ptr);
            This.Void_Ptr := Null_Pointer;
        end if;
    end Finalize;


    procedure Finalize
           (This : in out Postscript_File_Device_Final_Controller) is
    begin
        Interfaces.C.Strings.Free (File_Chooser_Title);
    end Finalize;




    --------------------
    --  Constructors  --
    --------------------

    package body Forge is

        function Create
            return Postscript_File_Device is
        begin
            return This : Postscript_File_Device do
                This.Void_Ptr := new_fl_postscript_file_device;
            end return;
        end Create;

    end Forge;




    -------------------------
    --  Static Attributes  --
    -------------------------

    function Get_File_Chooser_Title
        return String is
    begin
        return Interfaces.C.Strings.Value (fl_postscript_file_device_get_file_chooser_title);
    end Get_File_Chooser_Title;


    procedure Set_File_Chooser_Title
           (Value : in String) is
    begin
        Interfaces.C.Strings.Free (File_Chooser_Title);
        File_Chooser_Title := Interfaces.C.Strings.New_String (Value);
        fl_postscript_file_device_set_file_chooser_title (File_Chooser_Title);
    end Set_File_Chooser_Title;




    -----------------------
    --  API Subprograms  --
    -----------------------

    function Get_Postscript_Driver
           (This : in out Postscript_File_Device)
        return FLTK.Devices.Graphics.Graphics_Driver_Reference is
    begin
        return raise Program_Error with "Get_Postscript_Driver unimplemented";
    end Get_Postscript_Driver;




    procedure Start_Job
           (This  : in out Postscript_File_Device;
            Count : in     Natural := 0) is
    begin
        if fl_postscript_file_device_start_job
            (This.Void_Ptr, Interfaces.C.int (Count)) /= 0
        then
            raise Page_Error;
        end if;
    end Start_Job;


    procedure Start_Job
           (This     : in out Postscript_File_Device;
            Count    : in     Natural := 0;
            From, To :    out Positive) is
    begin
        if fl_postscript_file_device_start_job2
           (This.Void_Ptr,
            Interfaces.C.int (Count),
            Interfaces.C.int (From),
            Interfaces.C.int (To)) /= 0
        then
            raise Page_Error;
        end if;
    end Start_Job;


    procedure Start_Job
           (This   : in out Postscript_File_Device;
            Output : in     File_Type'Class;
            Count  : in     Natural := 0;
            Format : in     Page_Format := A4;
            Layout : in     Page_Layout := Portrait)
    is
        Code : Interfaces.C.int := fl_postscript_file_device_start_job3
           (This.Void_Ptr,
            Output.C_File,
            Interfaces.C.int (Count),
            To_Cint (Format),
            To_Cint (Layout));
    begin
        pragma Assert (Code = 0);
    exception
    when Chk.Assertion_Error => raise Internal_FLTK_Error;
    end Start_Job;


    procedure Start_Job
           (This   : in out Postscript_File_Device;
            Count  : in     Natural := 0;
            Format : in     Page_Format := A4;
            Layout : in     Page_Layout := Portrait)
    is
        Code : Interfaces.C.int := fl_postscript_file_device_start_job4
           (This.Void_Ptr,
            Interfaces.C.int (Count),
            To_Cint (Format),
            To_Cint (Layout));
    begin
        case Code is
        when 1 => raise User_Cancel_Error;
        when 2 => raise File_Open_Error;
        when others => pragma Assert (Code = 0);
        end case;
    exception
    when Chk.Assertion_Error => raise Internal_FLTK_Error;
    end Start_Job;


    procedure End_Job
           (This : in out Postscript_File_Device) is
    begin
        fl_postscript_file_device_end_job (This.Void_Ptr);
    end End_Job;


    procedure Start_Page
           (This : in out Postscript_File_Device) is
    begin
        if fl_postscript_file_device_start_page (This.Void_Ptr) /= 0 then
            raise Page_Error;
        end if;
    end Start_Page;


    procedure End_Page
           (This : in out Postscript_File_Device) is
    begin
        if fl_postscript_file_device_end_page (This.Void_Ptr) /= 0 then
            raise Page_Error;
        end if;
    end End_Page;




    procedure Get_Margins
           (This                     : in     Postscript_File_Device;
            Left, Top, Right, Bottom :    out Integer) is
    begin
        fl_postscript_file_device_margins
           (This.Void_Ptr,
            Interfaces.C.int (Left),
            Interfaces.C.int (Top),
            Interfaces.C.int (Right),
            Interfaces.C.int (Bottom));
    end Get_Margins;


    procedure Get_Printable_Rect
           (This : in     Postscript_File_Device;
            W, H :    out Integer) is
    begin
        if fl_postscript_file_device_printable_rect
            (This.Void_Ptr, Interfaces.C.int (W), Interfaces.C.int (H)) /= 0
        then
            raise Page_Error;
        end if;
    end Get_Printable_Rect;


    procedure Get_Origin
           (This : in     Postscript_File_Device;
            X, Y :    out Integer) is
    begin
        fl_postscript_file_device_get_origin
           (This.Void_Ptr,
            Interfaces.C.int (X),
            Interfaces.C.int (Y));
    end Get_Origin;


    procedure Set_Origin
           (This : in out Postscript_File_Device;
            X, Y : in     Integer) is
    begin
        fl_postscript_file_device_set_origin
           (This.Void_Ptr,
            Interfaces.C.int (X),
            Interfaces.C.int (Y));
    end Set_Origin;


    procedure Rotate
           (This    : in out Postscript_File_Device;
            Degrees : in     Float) is
    begin
        fl_postscript_file_device_rotate (This.Void_Ptr, Interfaces.C.C_float (Degrees));
    end Rotate;


    procedure Scale
           (This   : in out Postscript_File_Device;
            Factor : in     Float) is
    begin
        fl_postscript_file_device_scale (This.Void_Ptr, Interfaces.C.C_float (Factor), 0.0);
    end Scale;


    procedure Scale
           (This               : in out Postscript_File_Device;
            Factor_X, Factor_Y : in     Float) is
    begin
        fl_postscript_file_device_scale
           (This.Void_Ptr,
            Interfaces.C.C_float (Factor_X),
            Interfaces.C.C_float (Factor_Y));
    end Scale;


    procedure Translate
           (This             : in out Postscript_File_Device;
            Delta_X, Delta_Y : in     Integer) is
    begin
        fl_postscript_file_device_translate
           (This.Void_Ptr,
            Interfaces.C.int (Delta_X),
            Interfaces.C.int (Delta_Y));
    end Translate;


    procedure Untranslate
           (This : in out Postscript_File_Device) is
    begin
        fl_postscript_file_device_untranslate (This.Void_Ptr);
    end Untranslate;


end FLTK.Devices.Surface.Paged.Postscript;