summaryrefslogtreecommitdiff
path: root/src/editors.adb
blob: 1ce7a9216c079ab66e13fc40ed22a4ba53bf2e96 (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


with FLTK.Widgets.Groups.Windows.Double;


package body Editors is


    function Create
           (X, Y, W, H : in Integer;
            Label_Text : in String)
        return Editor_Window is
    begin
        return FLTK.Widgets.Groups.Windows.Double.Create (0, 0, 640, 400, "AdaPad");
        --return This : Editor_Window do
            --This.Replace_Dialog := FLTK.Widgets.Groups.Windows.Create (300, 105, "Replace");
            --This.Replace_Find := Create (70, 10, 200, 25, "Find:");
            --This.Replace_With := Create (70, 40, 200, 25, "Replace:");
            --This.Replace_All := Create (10, 70, 90, 25, "Replace All");
            --This.Replace_Next := Create (105, 70, 120, 25, "Replace Next");
            --This.Replace_Cancel := Create (230, 70, 60, 25, "Cancel");
            --This.The_Editor := Create (0, 30, 640, 370, Label_Text);
        --end return;
    end Create;




    function Create
           (W, H : in Integer)
        return Editor_Window is
    begin
        return Create (0, 0, W, H, "AdaPad");
    end Create;




    function Get_Buffer
           (This : in Editor_Window)
        return Text_Buffer_Cursor is
    begin
        return This.The_Editor.Get_Buffer;
    end Get_Buffer;




    procedure Set_Buffer
           (This : in out Editor_Window;
            Buff : in out Text_Buffer) is
    begin
        This.The_Editor.Set_Buffer (Buff);
    end Set_Buffer;


end Editors;