summaryrefslogtreecommitdiff
path: root/src/editor_windows.ads
blob: 3fefd4f0eec5d269b0990481a634dd70d00053d4 (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


with FLTK.Widgets.Groups.Windows.Double;
use FLTK.Widgets.Groups.Windows.Double;
with FLTK.Widgets.Menus;
use FLTK.Widgets.Menus;
with FLTK.Text_Buffers;
use FLTK.Text_Buffers;
private with FLTK.Widgets.Groups.Text_Displays.Text_Editors;
private with FLTK.Widgets.Menus.Menu_Bars;


package Editor_Windows is


    type Editor_Window is new Double_Window with private;


    function Create
           (X, Y, W, H : in Integer;
            Label_Text : in String)
        return Editor_Window;


    function Create
           (W, H : in Integer)
        return Editor_Window;


    function Get_Buffer
           (This : in Editor_Window)
        return Text_Buffer_Cursor;


    procedure Set_Buffer
           (This : in out Editor_Window;
            Buff : in out Text_Buffer);


    function Get_Menu
           (This : in out Editor_Window)
        return Menu_Cursor;


    procedure Undo (This : in out Editor_Window);
    procedure Cut (This : in out Editor_Window);
    procedure Copy (This : in out Editor_Window);
    procedure Paste (This : in out Editor_Window);
    procedure Delete (This : in out Editor_Window);


private


    use FLTK.Widgets.Groups.Text_Displays.Text_Editors;
    use FLTK.Widgets.Menus.Menu_Bars;


    type Editor_Window is new Double_Window with
        record
            Bar    : aliased Menu_Bar;
            Editor : Text_Editor;
        end record;


end Editor_Windows;