summaryrefslogtreecommitdiff
path: root/src/editor_windows.ads
diff options
context:
space:
mode:
authorJed Barber <jjbarber@y7mail.com>2016-09-19 18:53:14 +1000
committerJed Barber <jjbarber@y7mail.com>2016-09-19 18:53:14 +1000
commit7a14ee099c2fd382c2951627bf43e3fc507181f4 (patch)
tree9b749987f9ac87bcda46671b87bd6a9308a726f8 /src/editor_windows.ads
parentb709843ae66a4348746d6a54114c99dd00ebdb74 (diff)
Editors.adb/ads now known as Editor_Windows.adb/ads in preparation for more window types
Diffstat (limited to 'src/editor_windows.ads')
-rw-r--r--src/editor_windows.ads67
1 files changed, 67 insertions, 0 deletions
diff --git a/src/editor_windows.ads b/src/editor_windows.ads
new file mode 100644
index 0000000..3fefd4f
--- /dev/null
+++ b/src/editor_windows.ads
@@ -0,0 +1,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;
+