gtkada_24.0.0_80c56171/src/gtkada-mdi.ads

   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
 506
 507
 508
 509
 510
 511
 512
 513
 514
 515
 516
 517
 518
 519
 520
 521
 522
 523
 524
 525
 526
 527
 528
 529
 530
 531
 532
 533
 534
 535
 536
 537
 538
 539
 540
 541
 542
 543
 544
 545
 546
 547
 548
 549
 550
 551
 552
 553
 554
 555
 556
 557
 558
 559
 560
 561
 562
 563
 564
 565
 566
 567
 568
 569
 570
 571
 572
 573
 574
 575
 576
 577
 578
 579
 580
 581
 582
 583
 584
 585
 586
 587
 588
 589
 590
 591
 592
 593
 594
 595
 596
 597
 598
 599
 600
 601
 602
 603
 604
 605
 606
 607
 608
 609
 610
 611
 612
 613
 614
 615
 616
 617
 618
 619
 620
 621
 622
 623
 624
 625
 626
 627
 628
 629
 630
 631
 632
 633
 634
 635
 636
 637
 638
 639
 640
 641
 642
 643
 644
 645
 646
 647
 648
 649
 650
 651
 652
 653
 654
 655
 656
 657
 658
 659
 660
 661
 662
 663
 664
 665
 666
 667
 668
 669
 670
 671
 672
 673
 674
 675
 676
 677
 678
 679
 680
 681
 682
 683
 684
 685
 686
 687
 688
 689
 690
 691
 692
 693
 694
 695
 696
 697
 698
 699
 700
 701
 702
 703
 704
 705
 706
 707
 708
 709
 710
 711
 712
 713
 714
 715
 716
 717
 718
 719
 720
 721
 722
 723
 724
 725
 726
 727
 728
 729
 730
 731
 732
 733
 734
 735
 736
 737
 738
 739
 740
 741
 742
 743
 744
 745
 746
 747
 748
 749
 750
 751
 752
 753
 754
 755
 756
 757
 758
 759
 760
 761
 762
 763
 764
 765
 766
 767
 768
 769
 770
 771
 772
 773
 774
 775
 776
 777
 778
 779
 780
 781
 782
 783
 784
 785
 786
 787
 788
 789
 790
 791
 792
 793
 794
 795
 796
 797
 798
 799
 800
 801
 802
 803
 804
 805
 806
 807
 808
 809
 810
 811
 812
 813
 814
 815
 816
 817
 818
 819
 820
 821
 822
 823
 824
 825
 826
 827
 828
 829
 830
 831
 832
 833
 834
 835
 836
 837
 838
 839
 840
 841
 842
 843
 844
 845
 846
 847
 848
 849
 850
 851
 852
 853
 854
 855
 856
 857
 858
 859
 860
 861
 862
 863
 864
 865
 866
 867
 868
 869
 870
 871
 872
 873
 874
 875
 876
 877
 878
 879
 880
 881
 882
 883
 884
 885
 886
 887
 888
 889
 890
 891
 892
 893
 894
 895
 896
 897
 898
 899
 900
 901
 902
 903
 904
 905
 906
 907
 908
 909
 910
 911
 912
 913
 914
 915
 916
 917
 918
 919
 920
 921
 922
 923
 924
 925
 926
 927
 928
 929
 930
 931
 932
 933
 934
 935
 936
 937
 938
 939
 940
 941
 942
 943
 944
 945
 946
 947
 948
 949
 950
 951
 952
 953
 954
 955
 956
 957
 958
 959
 960
 961
 962
 963
 964
 965
 966
 967
 968
 969
 970
 971
 972
 973
 974
 975
 976
 977
 978
 979
 980
 981
 982
 983
 984
 985
 986
 987
 988
 989
 990
 991
 992
 993
 994
 995
 996
 997
 998
 999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
------------------------------------------------------------------------------
--                  GtkAda - Ada95 binding for Gtk+/Gnome                   --
--                                                                          --
--                     Copyright (C) 2001-2022, AdaCore                     --
--                                                                          --
-- This library is free software;  you can redistribute it and/or modify it --
-- under terms of the  GNU General Public License  as published by the Free --
-- Software  Foundation;  either version 3,  or (at your  option) any later --
-- version. This library is distributed in the hope that it will be useful, --
-- but WITHOUT ANY WARRANTY;  without even the implied warranty of MERCHAN- --
-- TABILITY or FITNESS FOR A PARTICULAR PURPOSE.                            --
--                                                                          --
-- As a special exception under Section 7 of GPL version 3, you are granted --
-- additional permissions described in the GCC Runtime Library Exception,   --
-- version 3.1, as published by the Free Software Foundation.               --
--                                                                          --
-- You should have received a copy of the GNU General Public License and    --
-- a copy of the GCC Runtime Library Exception along with this program;     --
-- see the files COPYING3 and COPYING.RUNTIME respectively.  If not, see    --
-- <http://www.gnu.org/licenses/>.                                          --
--                                                                          --
------------------------------------------------------------------------------

--  <description>
--  This widget organizes its children into resizable panes. Within each
--  pane, multiple children can be put, and they will be accessible through
--  a notebook.
--  </description>
--  <group>Layout containers</group>

with Ada.Containers.Indefinite_Hashed_Maps;
with Ada.Strings.Hash;
with Ada.Tags;
with GNAT.Strings;
with Glib;                use Glib;
with Glib.Simple_Action;
with Glib.Menu;
with Glib.Object;
with Glib.Xml_Int;
with Glib.Values;
with Gdk.Event;
with Gdk.Pixbuf;
with Gdk.RGBA;
with Gdk.Rectangle;
with Gtk.Accel_Group;
with Gtk.Application;
with Gtk.Box;
with Gtk.Container;
with Gtk.Enums;
with Gtk.Event_Box;
with Gtk.Handlers;
with Gtk.Image;
with Gtk.Label;
with Gtk.Menu;
with Gtk.Notebook;
with Gtk.Radio_Menu_Item;
with Gtk.Css_Provider;
with Gtk.Widget;          use Gtk.Widget;
with Gtk.Window;
with Gtkada.Handlers;
with Gtkada.Multi_Paned;
with Pango.Font;
with Ada.Strings.Unbounded; use Ada.Strings.Unbounded;

package Gtkada.MDI is

   type MDI_Window_Record is new Gtk.Widget.Gtk_Widget_Record with private;
   type MDI_Window is access all MDI_Window_Record'Class;
   --  Although this widget is implemented as a gtk_layout, you shouldn't
   --  use the standard Gtk_Layout functions like Put and Move yourself.

   type MDI_Child_Record is new Gtk.Event_Box.Gtk_Event_Box_Record
     with private;
   type MDI_Child is access all MDI_Child_Record'Class;
   pragma No_Strict_Aliasing (MDI_Child);
   --  A child of the MDI, that encapsulates the widgets you have put in the
   --  MDI window.
   --  You can easily convert from this to the initial widget using the
   --  functions Find_MDI_Child and Get_Widget.

   type MDI_Child_Array is array (Natural range <>) of MDI_Child;
   No_Children : constant MDI_Child_Array := (1 .. 0 => null);

   type State_Type is (Normal, Floating, Invisible);
   --  This type indicates the state of an item in the MDI:
   --  - Normal: the item can be manipulated (moved and resized) by the user.
   --      It is found either in the middle notebook (maximized items), or
   --      in the layout.
   --  - Floating: the item has its own toplevel window, and is thus managed
   --      by the window manager.
   --  - Invisible: the child was part of a previously displayed perspective,
   --      but is no longer in the current perspective. We still keep it to
   --      reuse it when switching back to the previous perspective.

   type Allowed_Areas is (Central_Only, Sides_Only, Both);
   --  Where is a child allowed to be moved ?

   procedure Gtk_New
     (MDI   : out MDI_Window;
      Group : access Gtk.Accel_Group.Gtk_Accel_Group_Record'Class;
      Independent_Perspectives : Boolean := False);
   --  Create a new MDI window.
   --  Note that it is recommended that you modify the style (Set_Background
   --  in State_Normal) to have a different color.
   --  You should call Setup_Toplevel_Window once you have added the MDI to a
   --  toplevel widget, so that focus is correctly handled when the toplevel
   --  window gains the focus
   --  When Independent_Perspectives is True, switching perspectives will not
   --  preserve any window. Otherwise, the windows that are in the central
   --  area will be preserved in the new perspective.

   procedure Initialize
     (MDI   : access MDI_Window_Record'Class;
      Group : access Gtk.Accel_Group.Gtk_Accel_Group_Record'Class;
      Independent_Perspectives : Boolean := False);
   --  Internal initialization function.
   --  See the section "Creating your own widgets" in the documentation.

   function Get_Type return Glib.GType;
   function Child_Get_Type return Glib.GType;
   --  Return the type describing the MDI or a MDI_Child

   procedure Setup_Toplevel_Window
     (MDI    : access MDI_Window_Record;
      Parent : access Gtk.Window.Gtk_Window_Record'Class);
   --  Setup Parent to properly handle focus when the window manager changes
   --  the window that currently has the focus.
   --  Parent must be the toplevel window that contains the MDI.

   type Show_Tabs_Policy_Enum is (Always, Never, Automatic);
   type Title_Bars_Policy     is (Always, Never, Central_Only);

   type Tab_Orientation_Type is
     (Automatic, Horizontal, Bottom_To_Top, Top_To_Bottom);

   procedure Configure
     (MDI                       : access MDI_Window_Record;
      Opaque_Resize             : Boolean := False;
      Close_Floating_Is_Unfloat : Boolean := True;
      Title_Font         : Pango.Font.Pango_Font_Description := null;
      Title_Bar_Color    : Gdk.RGBA.Gdk_RGBA := Gdk.RGBA.Null_RGBA;
      Focus_Title_Color  : Gdk.RGBA.Gdk_RGBA := Gdk.RGBA.Null_RGBA;
      Draw_Title_Bars    : Title_Bars_Policy   := Always;
      Tabs_Position      : Gtk.Enums.Gtk_Position_Type := Gtk.Enums.Pos_Top;
      Show_Tabs_Policy   : Show_Tabs_Policy_Enum := Automatic;
      Homogeneous_Tabs   : Boolean := True;
      Tabs_Orientation   : Tab_Orientation_Type := Automatic);
   --  Change the setup of the MDI.
   --  Close_Floating_Is_Unfloat, if True, means that closing a floating child
   --  will put it back in the MDI instead of destroying it (unless its flag
   --  Always_Destroy_Float is set).
   --  Title_Font is the font used in the title bars (if null, "sans 8"
   --  is used).
   --  The colors, when Null_Color, will not change the current setup.
   --  If Draw_Title_Bars is False, then no extra title bar will be displayed
   --  for the MDI children when they are maximized. This saves space on the
   --  screen. However, the notebook tabs will be highlighted with
   --  Title_Bar_Color in exchange.
   --  Tabs_Position indicates where the notebook tabs should be put.
   --  Tabs_Orientation indicates how the notebook tabs should be rotated.
   --  Show_Tabs_Policy indicates when the notebook tabs should be displayed.
   --
   --  If Homogeneous_Tabs is true, then the notebook tabs will only use their
   --  natural size when they all fit in the notebook's width. Otherwise, they
   --  are resized (and ellipsized as needed) so that more of them show.
   --  Changing this setup requires a restart of the MDI.
   --
   --  Calling configure will define a default CSS to properly theme the MDI.
   --  This CSS relies on mainly two widget classes to behave:
   --  * mdifocused, corresponding to the notebook having the focus
   --  * mdititle, corresponding to the title bar
   --  This default CSS renders the active tab of the active notebook with the
   --  color defined in Focus_Title_Color. Same for the color of the title
   --  bar (uses Title_Bar_Color for non-active title bar).
   --  This behavior can at any point be overridden by users by defining
   --  their own and load it at run-time.
   --
   --  Since the move to gtk3, the highlighting of the current tab is left to
   --  the gtk+ theme, rather than overwritten in this package. This permits a
   --  better integration with the user's theme. It is possible for
   --  applications to provide their own CSS, though, using
   --  Gtkada.Style.Load_Css_File. Here is an example of such a CSS, which
   --  highlights the current tab in the notebook that currently has the focus:
   --
   --     @define-color mdi-tab-color  grey;
   --     @define-color mdi-active-tab-color blue;
   --     .mdititle {
   --         border-width: 2px;
   --         background-image: -gtk-gradient(
   --             linear, left top, left bottom,
   --             from(@mdi-tab-color), to(shade(@mdi-tab-color, 1.1)));
   --     }
   --     .mdifocused .mdititle {
   --         background-image: -gtk-gradient(
   --             linear, left top, left bottom,
   --             from(@mdi-active-tab-color),
   --             to(shade(@mdi-active-tab-color, 1.1)));
   --     .mdi tab GtkLabel, .mdi tab GtkImage { opacity: 0.8 }
   --     .mdifocused tab GtkLabel, .mdifocused tab GtkImage { opacity: 1.0}

   function Independent_Perspectives
     (MDI : access MDI_Window_Record) return Boolean;
   --  Whether the MDI is using independent perspectives

   -------------
   -- Windows --
   -------------

   type Child_Flags is mod 2 ** 7;
   Destroy_Button       : constant Child_Flags := 2 ** 2;
   Float_As_Transient   : constant Child_Flags := 2 ** 3;
   Float_To_Main        : constant Child_Flags := 2 ** 5;
   Always_Destroy_Float : constant Child_Flags := 2 ** 4;
   All_Buttons          : constant Child_Flags := Destroy_Button;
   --  Special flags to set up the widgets: The first is the buttons
   --  that should be displayed in the title bar of the MDI children. If
   --  Float_As_Transient is set, then the child will be set up as a transient
   --  window when floating: on most window managers, it will stay on top of
   --  the MDI, but the window will have less decorations in its title bar,
   --  in particular no destroy button. In such a case, <Esc> will close the
   --  window, or unfloat it depending on the MDI's setup, as is the case for
   --  all dialogs in GtkAda. The MDI's setup will be ignored (and the child
   --  always destroyed when Esc is pressed) if Always_Destroy_Float is true.
   --  Float_To_Main yields the same behavior as Float_As_Transient, except
   --  that the floated child will always be attached to the main window.
   --  What this means is that the child will stay on top of the MDI, and will
   --  persist if you close the current MDI child.

   type Child_Group is new Positive;
   Group_Default : constant Child_Group := 1;
   Group_Any     : constant Child_Group := Child_Group'Last;
   --  This type can be used to help group windows by type within the MDI.
   --  Group_Default as a special status when computing the initial position
   --  for a window. But you can create your own groups as needed, so that for
   --  instance editors tend to be grouped with other editors, graphs with
   --  other graphs,... depending on your application.
   --  The group has an impact when the last window from a notebook is closed:
   --  If the window belongs to Group_Default, and it is the last of its group,
   --  then the space currently occupied by that window is not reclaimed, and
   --  therefore an empty area will exist in the MDI. The idea is that for
   --  instance editors typically play a special role in an integrated
   --  development environment, and the users like to have them in the center
   --  of the window. When closing the last editor, they do not want the side
   --  windows (browsers, consoles,...) to take up that space that should
   --  really only be used for editors.
   --  To get such a behavior, editors should belong to Group_Default, and all
   --  other windows to custom groups.
   --
   --  Do not use Group_Any, it is used internally with special meanings.

   procedure Gtk_New
     (Child        : out MDI_Child;
      Widget       : access Gtk.Widget.Gtk_Widget_Record'Class;
      Flags        : Child_Flags := All_Buttons;
      Group        : Child_Group := Group_Default;
      Focus_Widget : Gtk.Widget.Gtk_Widget := null;
      Areas        : Allowed_Areas := Both);
   --  Create a new MDI child that contains widget.
   --  Widget mustn't be of type Gtk_Window.
   --
   --  You shouldn't access Widget directly afterwards, but should manipulate
   --  Child only. However, as a special exception, you can still pass Widget
   --  as a parameter to the subprograms in this package to manipulate it (e.g.
   --  in Raise_Child, ...)
   --
   --  If Focus_Widget is not null, this is the widget that gets the keyboard
   --  focus when the child is selected.

   procedure Initialize
     (Child        : access MDI_Child_Record'Class;
      Widget       : access Gtk.Widget.Gtk_Widget_Record'Class;
      Flags        : Child_Flags := All_Buttons;
      Group        : Child_Group := Group_Default;
      Focus_Widget : Gtk.Widget.Gtk_Widget := null;
      Areas        : Allowed_Areas := Both);
   --  Internal initialization function.
   --  See the section "Creating your own widgets" in the documentation.

   procedure Change_Group
     (Child : not null access MDI_Child_Record'Class;
      Group : Child_Group);
   --  Change the child's MDI group.

   type Child_Position is
     (Position_Automatic,
      Position_Bottom,
      Position_Top,
      Position_Left,
      Position_Right,
      Position_Float);
   subtype Side_Position is Child_Position
      range Position_Bottom .. Position_Right;
   --  The initial position of windows within the MDI.
   --  In all cases, the initial location for a window is computed with the
   --  following algorithm. This algorithm is designed with the notion of
   --  groups of windows in mind, so that some windows (typically editors) have
   --  a special status.
   --     - If Position_Float, make the window floating
   --     - If another window with the same Group is already in the MDI, the
   --       new window is put on top of it.
   --     - Otherwise, if Position_Automatic, if an empty area exists within
   --       the MDI, the new window is put in that area.
   --     - Else if the Position is Bottom .. Right, the new window is put
   --       below all others (resp. to the top, left or right)
   --     - Else the window is put on top of the currently selected window

   procedure Put
     (MDI               : access MDI_Window_Record;
      Child             : access MDI_Child_Record'Class;
      Initial_Position  : Child_Position := Position_Automatic;
      Position_At_Mouse : Boolean := True;
      X, Y              : Gint := 0);
   --  Add a new child to the MDI window, and return its embedding widget.
   --  Calling Put does not give the focus to the newly inserted widget.
   --  To do that, you should call Set_Focus_Child.
   --  If Initial_Position is Position_Float, then position the floating window
   --  under the mouse cursor, unless Position_At_Mouse is False, in which
   --  case position the window at X, Y.

   function Save_Desktop
     (Self : not null access MDI_Child_Record) return Glib.Xml_Int.Node_Ptr;
   --  A function used to save a child into the desktop.
   --  This is similar to Save_Desktop_Function, but is specific to a child,
   --  and thus more efficient.
   --
   --  If this function returns some data, that data is saved into the XML
   --  for the desktop. If it returns null, however, the MDI will call each
   --  of the registered Save_Desktop_Function, until one returns some data.
   --
   --  The resulting node must have a tag that is unique for this type of
   --  widget, and this recognized by one of the Load_Desktop_Function so
   --  that the child can be recreated when the desktop is loaded from XML.

   procedure Set_Size
     (MDI        : access MDI_Window_Record;
      Child      : access MDI_Child_Record'Class;
      Width      : Glib.Gint;
      Height     : Glib.Gint;
      Fixed_Size : Boolean := False);
   --  Forces a new size for a child. If Width or Height is left to -1, the
   --  matching size will be computed from the child's requisition. If they are
   --  left to 0, the corresponding length is left to its current value.
   --  If Fixed_Size is True, then the widget will not be resized when the MDI
   --  itself is resized (unless the user has first moved one of the handles to
   --  manually resize it). Otherwise, it will grow proportionally with the
   --  rest of the MDI.

   procedure Close
     (MDI   : access MDI_Window_Record;
      Child : access Gtk.Widget.Gtk_Widget_Record'Class;
      Force : Boolean := False);
   --  Close the child that contains Child, and remove its window from the
   --  MDI. See also Close_Child if you need to close a MDI_Child itself.
   --  This first checks through a delete_event callback whether the child
   --  accepts to be closed.
   --  "delete_event" is not sent, and the child is automatically closed, if
   --  Force is set to True.

   procedure Set_Title
     (Child       : not null access MDI_Child_Record;
      Title       : String;
      Short_Title : String := "");
   --  Set the title for a child. Title is the title put in titlebar of
   --  the children, whereas Short_Title is the name of the notebook tab when
   --  children are maximized. By default, it is the same as Title.
   --
   --  The default title is the empty string.
   --  This title will be the one used for the window when the child is set to
   --  floating state.
   --
   --  Title and Short_Title should preferably be UTF8-encoded, although this
   --  procedure will attempt to guess the encoding if the string is not valid
   --  UTF8.
   --
   --  Child should already be in the MDI at this point (via a call to Put), so
   --  that the "use_short_titles" preference is taken into account.

   function Get_MDI
     (Child : not null access MDI_Child_Record) return MDI_Window;
   --  Return the MDI to which Child is associated. In Child is a floating
   --  child, it might not be in the MDI window itself.

   function Get_Title
     (Child : not null access MDI_Child_Record) return UTF8_String;
   --  Return the title for a specific child

   function Get_Short_Title
     (Child : not null access MDI_Child_Record) return UTF8_String;
   --  Return the name of the notebook tab used when children are maximized.

   function Has_Title_Bar
     (Child : not null access MDI_Child_Record) return Boolean;
   --  Whether a title bar is currently displayed for Child

   function Get_State
     (Child : not null access MDI_Child_Record) return State_Type;
   --  Return the current state of the child

   function Get_Allowed_Areas
     (Child : not null access MDI_Child_Record'Class) return Allowed_Areas;
   --  What areas the child can be put int

   function Get_Tab_Orientation
     (Child : not null access MDI_Child_Record'Class)
      return Tab_Orientation_Type;
   --  Return the child's tab orientation

   function Get_Tab_Label
     (Child : not null access MDI_Child_Record'Class)
      return Gtk.Label.Gtk_Label;
   --  Return the child's tab label

   function Get_Child_Notebook
     (Child : access MDI_Child_Record'Class) return Gtk.Notebook.Gtk_Notebook;
   --  Return the notebook that directly contains Child

   function Get_Tooltip
     (Child : not null access MDI_Child_Record)
     return String;
   --  Return the text to use in tooltips for the notebook tabs.
   --  The default (or if this function returns the empty string) the title
   --  of the child (Get_Title above).

   function Get_Tooltip_Is_Markup
     (Child : not null access MDI_Child_Record)
     return Boolean;
   --  Should return True if Get_Tooltip returns a string with special
   --  markup like "<b>" for bold text. When this is True, special
   --  characters like "<" and ">" must be quoted with backslashes.

   procedure Set_Icon
     (Child : not null access MDI_Child_Record;
      Icon  : Gdk.Pixbuf.Gdk_Pixbuf);
   pragma Obsolescent (Set_Icon);
   procedure Set_Icon_Name
     (Child     : not null access MDI_Child_Record;
      Icon_Name : String);
   --  Associate an icon with Child. This icon is visible in the title bar, the
   --  notebook tabs, the Window menu and the interactive selection dialog.
   --  The icon is updated dynamically on the screen.
   --  The Icon can safely be unrefed by the caller (and should, if the pixbuf
   --  was newly allocated).

   function Get_Icon
     (Child : not null access MDI_Child_Record) return Gdk.Pixbuf.Gdk_Pixbuf;
   pragma Obsolescent (Get_Icon);
   function Get_Icon_Name
     (Child : not null access MDI_Child_Record) return String;
   --  Returns the icon associated with Child. The returned pixbuf is owned
   --  by the MDI and must not be freed by the caller.

   ---------------------------
   -- Drag and Drop support --
   ---------------------------

   function Dnd_Data
     (Child : not null access MDI_Child_Record; Copy : Boolean)
      return MDI_Child;
   --  When a drag-and-drop operation took place to move a child from one
   --  position to the next, this function is called to know what child should
   --  be moved.
   --  As a result, the implementor can choose whether a copy of the child
   --  should be returned (creating a new view for an editor for instance), or
   --  if the child itself should be moved (the default).
   --  The returned MDI_Child must have been added to the MDI before it is
   --  returned.
   --  Copy is set to true if a copy operation was requested, to False if a
   --  simple move operation was requested. It can be ignored if Child doesn't
   --  know how to create a copy of itself for instance.

   procedure Set_Dnd_Message
     (MDI     : access MDI_Window_Record;
      Message : String);
   --  Override the message that is displayed in the popup window while
   --  performing a drag. By default, this message mentions:
   --     "Use control to move the whole notebook"
   --     "Use shift to create a new view for editors"
   --  so might not be suitable for all applications.
   --  You can use markup like "<b>...</b>" to put keywords in bold.
   --
   --  Passing an empty string for Message will restore the default message.

   procedure Child_Drag_Begin
     (Child  : not null access MDI_Child_Record'Class;
      Event  : Gdk.Event.Gdk_Event_Button;
      Areas  : Allowed_Areas);
   --  Starts a drag-and-drop operation for the child, so that it can be put in
   --  some other place on the desktop. This should only be called when a
   --  handler for the "button_press_event" signal, passing the event itself in
   --  parameter.
   --  The Child is immediately raised and gains the focus.
   --  Areas indicates where the child can be dropped. This is in particular
   --  useful if Dnd_Data was overridden and some other child will be dropped
   --  instead.

   procedure Cancel_Child_Drag
     (Child : not null access MDI_Child_Record'Class);
   --  Cancel a drag operation started by Child_Drag_Begin.
   --  It doesn't call Child_Drag_Finished.

   procedure Child_Drag_Finished (Child : not null access MDI_Child_Record);
   --  Called when a drag operation is either aborted or completed. It should
   --  be overridden if special cleanup should be done.

   -----------
   -- Menus --
   -----------

   type Tab_Contextual_Menu_Factory is access procedure
     (Child : access MDI_Child_Record'Class;
      Menu  : access Gtk.Menu.Gtk_Menu_Record'Class);

   procedure Set_Tab_Contextual_Menu_Factory
     (MDI     : access MDI_Window_Record;
      Factory : Tab_Contextual_Menu_Factory);
   --  Set (or unset if Factory is null) the callback to create the contextual
   --  menu entries when the user clicks on a notebook tab.
   --  Factory should add entries to Menu (which already contains the default
   --  entries, but you can remove them if needed).

   ------------------------
   -- Selecting children --
   ------------------------

   procedure Highlight_Child
     (Child : not null access MDI_Child_Record; Highlight : Boolean := True);
   --  Highlight the child until it is selected by the user.
   --  The color of its menu label and of the text in the notebook tabs is
   --  changed.
   --  Nothing is done if the child is already fully visible (either in the
   --  active page in one of the notebooks, or the child that has the selection
   --  in the layout).
   --  This is meant to be used as a graphical note to the user that the child
   --  has been updated and the user should look at it.

   function Get_Focus_Child
     (MDI : access MDI_Window_Record) return MDI_Child;
   --  Return the child that currently has the MDI focus.
   --  null is returned if no child has the focus.

   procedure Set_Focus_Child
     (MDI        : access MDI_Window_Record;
      Containing : access Gtk.Widget.Gtk_Widget_Record'Class);
   --  Give the focus to the child containing Containing. This will not
   --  Grab_Focus for the child in all cases, since you might want to give the
   --  focus to some specific part of your widget (an entry field,...) in some
   --  cases.
   --  Call this with Containing = null to explicitly unset the current focus
   --  child.

   procedure Set_Focus_Child (Child : not null access MDI_Child_Record);
   --  Make Child the active widget, and raise it at the top.

   procedure Check_Interactive_Selection_Dialog
     (MDI          : access MDI_Window_Record;
      Event        : Gdk.Event.Gdk_Event;
      Move_To_Next : Boolean;
      Only_Group   : Child_Group := Group_Any);
   --  Open the interactive dialog for selecting windows.
   --  This dialog should be open as a result of a key press event.
   --  Move_To_Next indicates whether we want to select the next child (True)
   --  or the previous child (False).
   --  This dialog will be closed only when the key that opened it is fully
   --  released. For instance, if the dialog was opened as a result of
   --  pressing Ctrl-Tab, the dialog will only be closed when Ctrl itself is
   --  released.
   --  You can call this procedure even if a dialog is currently open. This
   --  simply forces a move to the next or previous child. In fact, it is
   --  your responsability to call this procedure when the user presses
   --  the keys to move between children.
   --
   --  If Event is null, then no dialog is displayed. Instead, the next or
   --  previous visible child is immediately selected. In such a mode, windows
   --  that are not on top of their respective notebook are ignored. This can
   --  be used to emulate Emacs's behavior for goto-other-window.
   --
   --  If Only_Group is specified, then only the windows from that group will
   --  be shown in the dialog.

   --  This function is not internal to the MDI since connecting to the
   --  key_press_event and key_release_event should be done in the gtk_window
   --  that contains the MDI. Otherwise, some events are intercepted by gtk+,
   --  for instance the key_release_events, and the key_press_events for some
   --  specified keys.
   --  It also gives the choice to the application of whether this feature is
   --  wanted or not.

   -----------------------------------------
   -- MDI_Child and encapsulated children --
   -----------------------------------------

   function Get_Widget
     (Child : access MDI_Child_Record) return Gtk.Widget.Gtk_Widget;
   --  Return the widget that Child encapsulates. This is the widget you
   --  initially Put() in MDI.

   function Find_MDI_Child
     (MDI    : access MDI_Window_Record;
      Widget : access Gtk.Widget.Gtk_Widget_Record'Class) return MDI_Child;
   --  Return the MDI_Child that encapsulates Widget.
   --  Widget must be the exact same one you gave in argument to Put.
   --  If the child is currently not visible in the perspective (for instance
   --  it was created for another perspective, but is not present in the
   --  current one), it is inserted automatically back in the MDI.

   function Find_MDI_Child_From_Widget
     (Widget : access Gtk.Widget.Gtk_Widget_Record'Class) return MDI_Child;
   --  Return the MDI child that encapsulate the parent of Widget.
   --  As opposed to Find_MDI_Child, Widget can be anywhere within the
   --  widget tree. This function properly handles floating children
   --  If the child is currently not visible in the perspective (for instance
   --  it was created for another perspective, but is not present in the
   --  current one), it is inserted automatically back in the MDI.

   function Find_MDI_Child_By_Tag
     (MDI : access MDI_Window_Record;
      Tag : Ada.Tags.Tag;
      Visible_Only : Boolean := False) return MDI_Child;
   --  Return the first child matching Tag
   --  If the child is currently not visible in the perspective (for instance
   --  it was created for another perspective, but is not present in the
   --  current one), it is inserted automatically back in the MDI.
   --  If Visible_Only is True, an invisible child is not returned. This is
   --  useful to check whether a child is currently visible.

   function Find_MDI_Child_By_Name
     (MDI  : access MDI_Window_Record;
      Name : String) return MDI_Child;
   --  Return the first child matching Name.
   --  If the child is currently not visible in the perspective (for instance
   --  it was created for another perspective, but is not present in the
   --  current one), it is inserted automatically back in the MDI.

   type Child_Iterator is private;

   function First_Child
     (MDI               : access MDI_Window_Record;
      Group_By_Notebook : Boolean := False;
      Visible_Only      : Boolean := True) return Child_Iterator;
   --  Return an access to the first child of the MDI.
   --
   --  If Group_By_Notebook is True, then the children are reported one after
   --  the other, but all the widget from the same notebook are reported in the
   --  same order as the notebook pages. Floating children do not belong to a
   --  notebook, and are also reported together. To find out to which notebook
   --  a child belongs, use Get_Notebook below.
   --
   --  If Group_By_Notebook is False, it is garanteed that the first child is
   --  the one that currently has the focus in the MDI. The children are
   --  returned in the order in which they last had the focus.
   --
   --  If Visible_Only is true, then only those children currently visible in
   --  the perspective are returned. The children that were part of a former
   --  perspective are not returned.

   procedure Next (Iterator : in out Child_Iterator);
   --  Move to the next child in the MDI

   function Get_Notebook
     (Iterator : Child_Iterator) return Gtk.Notebook.Gtk_Notebook;
   --  Return the notebook to which the current child belongs. null is returned
   --  for floating children

   function Get (Iterator : Child_Iterator) return MDI_Child;
   --  Return the child pointed to by Iterator.
   --  If Iterator is no longer valid, null is returned.

   -----------------------
   -- Floating children --
   -----------------------

   procedure Float_Child
     (Child             : not null access MDI_Child_Record'Class;
      Float             : Boolean;
      Position_At_Mouse : Boolean := True;
      X, Y              : Gint := 0);
   --  Change the floating state of a child.
   --  If Float is True:
   --     - if Position_At_Mouse is True, position the window
   --       under the mouse pointer.
   --     - if Position_At_Mouse is False, use position the window at X, Y.

   function Is_Floating
     (Child : not null access MDI_Child_Record'Class) return Boolean;
   --  Return True if Child is currently in a separate window

   procedure Set_Default_Size_For_Floating_Window
     (Child : not null access MDI_Child_Record;
      Win   : not null access Gtk.Window.Gtk_Window_Record'Class;
      Width, Height : Glib.Gint);
   --  Set the default size for a floating window.
   --  Width and Height are the values that have bee computed, from either
   --  the non-floating size of the child, or from the child's preferred
   --  size. This procedure can be overridden, though, to force other
   --  values, for instance if you would like to restore a specific size.

   procedure Set_All_Floating_Mode
     (MDI : access MDI_Window_Record; All_Floating : Boolean);
   --  If All_Floating is set to true, the MDI will have a size of 0x0, and all
   --  children are set to floating. This can be used if you wish to let the
   --  window manager handle the windows. If All_Floating is True, children
   --  can no longer be maximized.

   procedure Use_Short_Titles_For_Floats
     (MDI : access MDI_Window_Record; Short_Titles : Boolean);
   --  If Short_Titles is set to true, only short titles will ever be used
   --  either in the title bars (in notebooks) or as the title for floating
   --  windows.

   procedure Create_Float_Window_For_Child
      (Child     : not null access MDI_Child_Record;
       Win       : out Gtk.Window.Gtk_Window;
       Container : out Gtk.Container.Gtk_Container);
   --  Creates the window to use when a child is made floating.
   --  This procedure provides reasonable default, but can be overridden in
   --  your application if you have special needs (like creating a window
   --  with specific menubar or decorations for instance).
   --  Win must be set to the window that has been created, and Container
   --  to the area of the window that will contain Child.
   --  The window's title will be set automatically.
   --  The window's size will be set by the MDI by calling
   --  Child.Set_Default_Size_For_Floating_Window.

   ----------------------
   -- Closing children --
   ----------------------

   procedure Close_Child
     (Child           : not null access MDI_Child_Record'Class;
      Force           : Boolean := False;
      Focus_Same_Area : Boolean := True);
   --  Same as Close, but applies directly to a MDI_Child.
   --  If Focus_Same_Area is True, the focus will return to the previously
   --  focused child in the same area / notebook as Child, and which is not
   --  Child itself.
   --  Otherwise, the focus will return to the previously focused child, no
   --  matter its area/notebook.

   ---------------------------
   -- Reorganizing children --
   ---------------------------

   procedure Raise_Child
     (Child      : not null access MDI_Child_Record'Class;
      Give_Focus : Boolean := True);
   --  Put Child in the foreground.
   --  Note that this does not give the focus to this child, unless
   --  Give_Focus is set to True. If Child and the current focus child are in
   --  the same notebook, Child will always gain the focus, so that the focus
   --  is not left on an invisible window.

   function Is_Raised
     (Child : not null access MDI_Child_Record'Class) return Boolean;
   --  Whether the child is currently raised, ie fully visible to the user

   procedure Lower_Child (Child : not null access MDI_Child_Record'Class);
   --  Put Child in the background.
   --  If the children are maximized, this selected the next page from the
   --  notebook.

   procedure Give_Focus_To_Previous_Child
     (Child          : access MDI_Child_Record'Class;
      From_Same_Area : Boolean := True);
   --  Give focus to the last child.
   --  If From_Same_Area is True, it will return the previously focused child
   --  in the same area / notebook as Child, and which is not Child itself.
   --  Otherwise, it will return the previously focused child, no matter its
   --  area/notebook.

   type Split_Mode is
     (Before, Before_Reuse,
      After,  After_Reuse,
      Any_Side_Reuse);
   --  How a child should be split:
   --  If "Before", the child is put above or to the left of its current
   --  position. A new window is created to containing it. If the "_Reuse"
   --  version is used, and a window already exist at that position, the child
   --  will be put in it instead of creating a new one.
   --  Any_Side_Reuse indicates that the child will be put on either side,
   --  depending on where a window already exists. If there is no window on the
   --  side, a new one is created.

   procedure Split
     (MDI           : access MDI_Window_Record;
      Orientation   : Gtk.Enums.Gtk_Orientation;
      Child         : MDI_Child := null;
      Mode          : Split_Mode := Before;
      Width, Height : Glib.Gint := 0);
   --  Split the notebook containing Child (by default, the current focus
   --  child).
   --  Mode indicates in which direction the splitting should occur. If you
   --  are splitting a child in the central area, splitting will never reuse
   --  a window outside of the central area.
   --  Width and Height indicate the desired geometry for the splitted area,
   --  0 indicate a 50/50 split.

   ----------------------
   -- Desktop Handling --
   ----------------------
   --  The MDI provides a way to save desktops, i.e the list of children
   --  currently open in the MDI and their location. It can then restore the
   --  desktop at some later point.
   --
   --  Desktops require support from the widgets that are put in the MDI. They
   --  need to register a function to save them and a function to recreate
   --  them. Using Ada streams for this didn't prove workable since some
   --  children might need extra parameters not available to them through
   --  streams. This is why the following subprograms are in a generic package,
   --  so that you can pass whatever parameter(s) is needed in your
   --  application.
   --
   --  Desktops are saved and restored in XML trees.
   --
   --  If you need your application to load a "default desktop" when the user
   --  hasn't defined one, it is recommended that you distribute an actual
   --  file containing this desktop. You could also create the XML tree in
   --  memory yourself, and thus hard-code the default desktop if need be.

   generic
      type User_Data is private;
      --  Generic type of parameter that is passed to all the children's save
      --  and restore functions.

      --  This package needs to be instantiated at library level

   package Desktop is

      type Menu_Registration_Procedure is access procedure
        (User       : User_Data;
         Item_Name  : String;
         Accel_Path : String);
      --  Function used to register in the application a static menu
      --  created by the MDI.

      procedure Set_Menu_Model
         (MDI   : not null access MDI_Window_Record'Class;
          App   : not null access Gtk.Application.Gtk_Application_Record'Class;
          Model : access Glib.Menu.Gmenu_Record'Class;
          User  : User_Data);
      --  Associates a menu model with the MDI.
      --  This model will be filled and maintained by the MDI, to provide
      --  useful actions like floating/docking items, selecting items,...

      function Create_Menu
        (MDI               : access MDI_Window_Record'Class;
         Accel_Path_Prefix : String := "<gtkada>";
         User              : User_Data;
         Registration      : Menu_Registration_Procedure := null)
         return Gtk.Menu.Gtk_Menu;
      --  Create a dynamic menu that can then be inserted into a menu bar. This
      --  menu is dynamic, ie its content will changed based on the focus
      --  child.
      --  If this function is called several times, a new menu is created
      --  every time. Accel_Path_Prefix must be the same for every call.
      --  Accel_Path_Prefix is used so that the key shortcuts associated with
      --  these menu items can be changed dynamically by the user (see
      --  gtk-accel_map.ads). The prefix must start with "<" and end with ">".
      --  User is used for the callbacks on perspective changes, and passed to
      --  Load_Perspective
      --  With recent versions of gtk+, the use of Glib.Menu_Model.Gmenu_Model
      --  is encouraged, so you should use Set_Menu_Model above instead.

      type Save_Desktop_Function is access function
        (Widget : access Gtk.Widget.Gtk_Widget_Record'Class;
         User   : User_Data) return Glib.Xml_Int.Node_Ptr;
      --  A general function that dumps the parameters of a widget into an XML
      --  tree.
      --
      --  Note: you should register one such function for all the widget types
      --  you will put in the MDI and that need to be saved when a desktop is
      --  saved. The MDI will call all the registered functions one after the
      --  other. Therefore, your function should return null if Widget is not
      --  of a type that is it can handle.
      --
      --  Before calling the registered save_desktop_function, the MDI will
      --  first use the child's Save_Desktop primitive function.

      type Load_Desktop_Function is access function
        (MDI : MDI_Window; Node : Glib.Xml_Int.Node_Ptr; User : User_Data)
         return MDI_Child;
      --  A general function that loads a widget from an XML tree.
      --
      --  As for Save_Desktop_Function, this function should return null if it
      --  doesn't know how to handle Node or if Node doesn't describe a widget
      --  type that it can handle.
      --
      --  This function returns an MDI_Widget that has been put in the MDI.

      procedure Register_Desktop_Functions
        (Save : Save_Desktop_Function;
         Load : Load_Desktop_Function);
      --  Register a set of functions to save and load desktops for some
      --  specific widget types. This can be called multiple times.
      --  Save might be null.

      function Restore_Desktop
        (MDI          : access MDI_Window_Record'Class;
         Perspectives : Glib.Xml_Int.Node_Ptr;
         From_Tree    : Glib.Xml_Int.Node_Ptr;
         User         : User_Data) return Boolean;
      --  Restore the contents of the MDI from its saved XML tree.
      --  Perspectives is the list of perspectives. It is cloned as needed, so
      --  the caller is still responsible for freeing it. The first perspective
      --  is loaded.
      --  From_Tree is the part of the desktop that describes the editor area.
      --  User is passed as a parameter to all of the Load_Desktop_Function
      --  registered by the widgets.
      --  Return False if the desktop couldn't be loaded
      --  It also restores the size and position of the toplevel window that
      --  contains the MDI

      procedure Load_Perspective
        (MDI          : access MDI_Window_Record'Class;
         Name         : String;
         User         : User_Data);
      --  Replace the current perspective by another one. This preserves the
      --  editor area.
      --  If the perspective does not exist, nothing is done, unless no
      --  perspective is currently loaded (in which case we load the first
      --  on in the list).

      procedure Create_Perspective
        (MDI          : access MDI_Window_Record'Class;
         Name         : String;
         User         : User_Data);
      --  Create a new perspective with the current desktop layout. If another
      --  perspective with the same name exists, it is replaced.

      procedure Define_Perspective
        (MDI          : access MDI_Window_Record'Class;
         XML          : Glib.Xml_Int.Node_Ptr;
         User         : User_Data);
      --  Define a new perspective (in the same format as returned by
      --  Save_Desktop, the central area is under control of the user so you
      --  cannot change it).
      --  If such a perspective already exists, nothing is done (since the user
      --  might have modified it already).
      --  XML's root node is the <perspective> node, including its "name"
      --  attribute.
      --  XML must be freed by the caller.

      procedure Save_Desktop
        (MDI          : access MDI_Window_Record'Class;
         User         : User_Data;
         Perspectives : out Glib.Xml_Int.Node_Ptr;
         Central      : out Glib.Xml_Int.Node_Ptr);
      --  Return XML representations of the perspectives and central area. Both
      --  nodes need to be freed by the caller, and can be saved in a file (to
      --  be passed to Restore_Desktop later on).
      --  This function calls each of the registered function for the children
      --  of the MDI.
      --  It also saves the size and position of the toplevel window that
      --  contains the MDI

      function Get_XML_Content
        (MDI : access MDI_Window_Record'Class;
         Tag : String) return Glib.Xml_Int.Node_Ptr;
      --  Return the first XML subtree starting with 'Tag'. This allows a
      --  module to retrieve its content after the 'Load_Desktop' call.

      procedure Free_Registered_Desktop_Functions;
      --  Free the memory allocated for the registered functions.

   private
      type Register_Node_Record;
      type Register_Node is access Register_Node_Record;
      type Register_Node_Record is record
         Save : Save_Desktop_Function;
         Load : Load_Desktop_Function;
         Next : Register_Node;
      end record;

      type Perspective_Menu_Item_Record
        is new Gtk.Radio_Menu_Item.Gtk_Radio_Menu_Item_Record
      with record
         MDI  : MDI_Window;
         Name : Natural;
         User : User_Data;
      end record;
      type Perspective_Menu_Item
        is access all Perspective_Menu_Item_Record'Class;

      procedure Change_Perspective
        (Item : access Gtk.Widget.Gtk_Widget_Record'Class);
      CP_Access : constant
        Gtkada.Handlers.Widget_Callback.Marshallers.Marshaller :=
        Gtkada.Handlers.Widget_Callback.To_Marshaller
          (Change_Perspective'Access);
      --  Internal, but needed so that we can have a 'Access on a callback

      procedure Create_Perspective_CB
        (Item : access Gtk.Widget.Gtk_Widget_Record'Class);
      CreateP_Access : constant
        Gtkada.Handlers.Widget_Callback.Marshallers.Marshaller :=
        Gtkada.Handlers.Widget_Callback.To_Marshaller
          (Create_Perspective_CB'Access);

      procedure On_Action_Select_Perspective
        (MDI       : access MDI_Window_Record'Class;
         Params    : Glib.Values.GValues;
         User      : User_Data);
      procedure On_Action_Create_Perspective
        (MDI       : access MDI_Window_Record'Class;
         Params    : Glib.Values.GValues;
         User      : User_Data);
      procedure On_Perspective_Changed_Update_Menu
         (Menu     : access Gtk.Widget.Gtk_Widget_Record'Class);

      On_Perspective_Changed_Update_Menu_Access : constant
         Gtkada.Handlers.Widget_Callback.Simple_Handler :=
            On_Perspective_Changed_Update_Menu'Access;

      Registers : Register_Node;
      --  Global variable that contains the list of functions that have been
      --  registered.
   end Desktop;

   function Desktop_Was_Loaded (MDI : access MDI_Window_Record) return Boolean;
   --  Return True if a desktop was loaded, False if the MDI is only the result
   --  of calls to Gtk_New and Put.

   function List_Of_Perspectives
     (MDI : access MDI_Window_Record)
      return GNAT.Strings.String_List_Access;
   --  Return the list of perspectives known to the MDI. The caller must not
   --  free the list

   function Current_Perspective
     (MDI : access MDI_Window_Record'Class) return String;
   --  Return the name of the currently displayed perspective

   -------------
   -- Signals --
   -------------

   --  <signals>
   --  The following new signals are defined for this widget:
   --
   --  - "child_selected"
   --    procedure Handler
   --       (MDI : access MDI_Window_Record'Class; Child : System.Address);
   --
   --    This signal is emitted when a new child has gained the focus. Convert
   --    Child to a MDI_Child by calling Gtk.Arguments.To_Object. This can be
   --    used to change some global information at the MDI level. You should
   --    connect to "selected" (see below) instead if you want to change some
   --    information at the child level.
   --    Child might be null if no child has the focus anymore
   --
   --  - "float_child"
   --  - "unfloat_child"
   --    procedure Handler
   --       (MDI : access MDI_Window_Record'Class; Child : System.Address);
   --
   --    A child was set as floating in the MDI. A similar signal is emitted on
   --    the child itself.
   --
   --  - "child_title_changed"
   --    procedure Handler
   --      (MDI : access MDI_Window_Record'Class; Child : System.Address);
   --
   --    Emitted when the title of a child is changed. This signal is not
   --    emitted if Set_Title is called for a child that hasn't been put in the
   --    MDI yet.
   --
   --  - "child_added"
   --     procedure Handler
   --       (MDI : access MDI_Window_Record'Class; Child : System.Address);
   --     Emitted when a new child is added. You cannot use the "add" signal
   --     since in fact the children are added to notebooks that are part of
   --     the MDI, and thus "add" is only emitted when a new notebook is
   --     created.
   --
   --  - "child_removed"
   --     procedure Handler
   --       (MDI : access MDI_Window_Record'Class; Child : System.Address);
   --     Emitted when a new child is removed. You cannot use the "remove"
   --     signal since in fact the children are removed from notebooks that are
   --     part of the MDI, and thus "remove" is only emitted when a new
   --     notebook is destroyed.
   --     When this signal is emitted, Child no longer contains a widget, and
   --     is no longer part of the children, although you can still access its
   --     titles.
   --
   --  - "child_icon_changed"
   --     procedure Handler
   --       (MDI : access MDI_Window_Record'Class; Child : System.Address);
   --     Emitted when the icon for Child has changed
   --
   --  - "children_reorganized"
   --     procedure Handler (MDI : access MDI_Window_Record'Class);
   --     Emitted when the children have been reorganized: either a split
   --     occurred, or a window was dropped into another position
   --
   --  - "perspective_changed"
   --     procedure Handler (MDI : access MDI_Window_Record'Class);
   --     Called when the user has selected a new perspective. One use is to
   --     save the new desktop to a file.
   --
   --  - "perspectives_added"
   --     procedure Handler
   --        (MDI : access MDI_Window_Record'Class; Name : String);
   --     Called when a new perspective is created
   --
   --  </signals>
   --
   --  <signals>
   --  The following new signals are defined for the MDI_Child_Record object:
   --
   --  - "delete_event"
   --    function Handler (Child : access Gtk_Widget_Record'Class)
   --                     return Boolean;
   --
   --    This signal is emitted for each item in the MDI window before it is
   --    actually deleted. The child is destroyed only if the handler returns
   --    False.
   --    Note that the Child passed in argument is exactly the one you passed
   --    to Put to insert it in the MDI window.
   --    Note that this is also the signal to use to prevent top level
   --    Gtk_Window from being destroyed.
   --
   --  - "selected"
   --    procedure Handler (Child : access MDI_Child_Record'Class);
   --
   --    This is emitted when the child is selected, ie gains the
   --    MDI focus. You should probably also connect to the "grab_focus" signal
   --    to be informed when the child gets the keyboard focus. This can be
   --    used to transfer the focus to some specific part of the
   --    widget. Connecting to "grab_focus" should be done with the After
   --    parameter set to True.
   --
   --  - "float_child"
   --    procedure Handler (Child : access MDI_Child_Record'Class);
   --
   --    Emitted when a child is set as floating
   --
   --  - "unfloat_child"
   --    procedure Handler (Child : access MDI_Child_Record'Class);
   --
   --    Emitted when a child is put back in the main MDI window
   --
   --  - "before_unfloat_child"
   --    procedure Handler (Child : access MDI_Child_Record'Class);
   --
   --    Emitted when a child is about to be put back in the main MDI window
   --
   --  - "child_state_changed"
   --    procedure Handler (Child : access MDI_Child_Record'Class);
   --
   --    Emitted when the state of the child has changed. See the function
   --    Get_State. In particular, this signal can be detected when a child is
   --    removed from the current perspective (the new state is "invisible"),
   --    and when it is put back (the new state is "normal" or "floating").
   --
   --  - "before_destroy_child"
   --    procedure Handler (Child : access MDI_Child_Record'Class);
   --
   --    Emitted when a child is about to be destroyed
   --
   --  - "before_remove_child"
   --    procedure Handler (Child : access MDI_Child_Record'Class);
   --
   --    Emitted when a child is about to be removed from its MDI_Notebook
   --
   --  - "double_click_child_tab"
   --    procedure Handler (Child : access MDI_Child_Record'Class);
   --
   --    Emitted when double clicking on the notebook's tab of a MDI_Child
   --
   --  </signals>

   type Cb_Gtkada_MDI_Window_MDI_Child_Void is not null access procedure
     (Self  : access MDI_Window_Record'Class;
      Child : not null access MDI_Child_Record'Class);

   type Cb_GObject_MDI_Child_Void is not null access procedure
     (Self  : access Glib.Object.GObject_Record'Class;
      Child : not null access MDI_Child_Record'Class);

   Signal_Child_Selected       : constant Signal_Name := "child_selected";
   procedure On_Child_Selected
     (Self  : not null access MDI_Window_Record'Class;
      Call  : Cb_Gtkada_MDI_Window_MDI_Child_Void;
      After : Boolean := False);
   procedure On_Child_Selected
     (Self  : not null access MDI_Window_Record'Class;
      Call  : Cb_GObject_MDI_Child_Void;
      Slot  : not null access Glib.Object.GObject_Record'Class;
      After : Boolean := False);

   Signal_Float_Child          : constant Signal_Name := "float_child";
   procedure On_Float_Child
     (Self  : not null access MDI_Window_Record'Class;
      Call  : Cb_Gtkada_MDI_Window_MDI_Child_Void;
      After : Boolean := False);
   procedure On_Float_Child
     (Self  : not null access MDI_Window_Record'Class;
      Call  : Cb_GObject_MDI_Child_Void;
      Slot  : not null access Glib.Object.GObject_Record'Class;
      After : Boolean := False);

   Signal_Child_Title_Changed  : constant Signal_Name := "child_title_changed";
   procedure On_Child_Title_Changed
     (Self  : not null access MDI_Window_Record'Class;
      Call  : Cb_Gtkada_MDI_Window_MDI_Child_Void;
      After : Boolean := False);
   procedure On_Child_Title_Changed
     (Self  : not null access MDI_Window_Record'Class;
      Call  : Cb_GObject_MDI_Child_Void;
      Slot  : not null access Glib.Object.GObject_Record'Class;
      After : Boolean := False);

   Signal_Child_Added          : constant Signal_Name := "child_added";
   procedure On_Child_Added
     (Self  : not null access MDI_Window_Record'Class;
      Call  : Cb_Gtkada_MDI_Window_MDI_Child_Void;
      After : Boolean := False);
   procedure On_Child_Added
     (Self  : not null access MDI_Window_Record'Class;
      Call  : Cb_GObject_MDI_Child_Void;
      Slot  : not null access Glib.Object.GObject_Record'Class;
      After : Boolean := False);

   Signal_Child_Removed        : constant Signal_Name := "child_removed";
   procedure On_Child_Removed
     (Self  : not null access MDI_Window_Record'Class;
      Call  : Cb_Gtkada_MDI_Window_MDI_Child_Void;
      After : Boolean := False);
   procedure On_Child_Removed
     (Self  : not null access MDI_Window_Record'Class;
      Call  : Cb_GObject_MDI_Child_Void;
      Slot  : not null access Glib.Object.GObject_Record'Class;
      After : Boolean := False);

   Signal_Child_Icon_Changed   : constant Signal_Name := "child_icon_changed";
   procedure On_Child_Icon_Changed
     (Self  : not null access MDI_Window_Record'Class;
      Call  : Cb_Gtkada_MDI_Window_MDI_Child_Void;
      After : Boolean := False);
   procedure On_Child_Icon_Changed
     (Self  : not null access MDI_Window_Record'Class;
      Call  : Cb_GObject_MDI_Child_Void;
      Slot  : not null access Glib.Object.GObject_Record'Class;
      After : Boolean := False);

   Signal_Delete_Event         : constant Signal_Name := "delete_event";
   procedure On_Delete_Event
     (Self  : not null access MDI_Window_Record'Class;
      Call  : Cb_Gtkada_MDI_Window_MDI_Child_Void;
      After : Boolean := False);
   procedure On_Delete_Event
     (Self  : not null access MDI_Window_Record'Class;
      Call  : Cb_GObject_MDI_Child_Void;
      Slot  : not null access Glib.Object.GObject_Record'Class;
      After : Boolean := False);

   Signal_Unfloat_Child        : constant Signal_Name := "unfloat_child";
   procedure On_Unfloat_Child
     (Self  : not null access MDI_Window_Record'Class;
      Call  : Cb_Gtkada_MDI_Window_MDI_Child_Void;
      After : Boolean := False);
   procedure On_Unfloat_Child
     (Self  : not null access MDI_Window_Record'Class;
      Call  : Cb_GObject_MDI_Child_Void;
      Slot  : not null access Glib.Object.GObject_Record'Class;
      After : Boolean := False);

   Signal_Before_Unfloat_Child : constant Signal_Name :=
     "before_unfloat_child";
   procedure On_Before_Unfloat_Child
     (Self  : not null access MDI_Window_Record'Class;
      Call  : Cb_Gtkada_MDI_Window_MDI_Child_Void;
      After : Boolean := False);
   procedure On_Before_Unfloat_Child
     (Self  : not null access MDI_Window_Record'Class;
      Call  : Cb_GObject_MDI_Child_Void;
      Slot  : not null access Glib.Object.GObject_Record'Class;
      After : Boolean := False);

   Signal_Before_Destroy_Child : constant Signal_Name :=
     "before_destroy_child";
   procedure On_Before_Destroy_Child
     (Self  : not null access MDI_Window_Record'Class;
      Call  : Cb_Gtkada_MDI_Window_MDI_Child_Void;
      After : Boolean := False);
   procedure On_Before_Destroy_Child
     (Self  : not null access MDI_Window_Record'Class;
      Call  : Cb_GObject_MDI_Child_Void;
      Slot  : not null access Glib.Object.GObject_Record'Class;
      After : Boolean := False);

   Signal_Before_Remove_Child  : constant Signal_Name := "before_remove_child";
   procedure On_Before_Remove_Child
     (Self  : not null access MDI_Window_Record'Class;
      Call  : Cb_Gtkada_MDI_Window_MDI_Child_Void;
      After : Boolean := False);
   procedure On_Before_Remove_Child
     (Self  : not null access MDI_Window_Record'Class;
      Call  : Cb_GObject_MDI_Child_Void;
      Slot  : not null access Glib.Object.GObject_Record'Class;
      After : Boolean := False);

   Signal_Selected             : constant Signal_Name := "selected";
   Signal_Perspective_Changed  : constant Signal_Name := "perspective_changed";
   Signal_Perspectives_Added   : constant Signal_Name := "perspectives_added";
   Signal_Children_Reorganized : constant Signal_Name :=
                                   "children_reorganized";
   Signal_Child_State_Changed  : constant Signal_Name := "child_state_changed";
   Signal_Maximize_Child       : constant Signal_Name := "maximize_child";
   Signal_Unmaximize           : constant Signal_Name := "unmaximize";

   procedure Child_Selected
      (Self  : not null access MDI_Window_Record'Class;
       Child : access MDI_Child_Record'Class := null);
   --  Emit the "child_selected" signal

private
   type Saved_Perspective_Record is record
      Height    : Gint;
      Width     : Gint;
      --  The sizes of the maximized container

      Container : Gtk.Widget.Gtk_Widget;
      --  The Container currently maximized
   end record;

   type Saved_Perspective is access all Saved_Perspective_Record;

   package Saved_Perspectives_Map is new Ada.Containers.Indefinite_Hashed_Maps
     (Key_Type        => String,
      Element_Type    => Saved_Perspective,
      Hash            => Ada.Strings.Hash,
      Equivalent_Keys => "=",
      "="             => "=");
   use Saved_Perspectives_Map;

   type String_Access is access all UTF8_String;

   type MDI_Child_Record is new Gtk.Event_Box.Gtk_Event_Box_Record with record
      Initial       : Gtk.Widget.Gtk_Widget;
      --  The widget we use to build this child.

      Main_Box      : Gtk.Box.Gtk_Box;
      --  The main container.

      State         : State_Type := Normal;
      Group         : Child_Group := Group_Default;
      Areas         : Allowed_Areas := Both;

      Title         : String_Access;
      Short_Title   : String_Access;
      --  Title of the item, as it appears in the title bar.
      --  These are UTF8-Encoded

      XML_Node_Name : String_Access;
      --  The name of the XML node when this child is saved in a desktop (if
      --  we know it). This is used to reuse a child when switching
      --  perspectives.

      MDI           : MDI_Window;
      --  The MDI to which the child belongs. We cannot get this information
      --  directly from Get_Parent since some children are actually floating
      --  and do not belong to the MDI anymore.

      Flags         : Child_Flags;

      Focus_Widget  : Gtk.Widget.Gtk_Widget;
      --  The widget which should actually get the keyboard focus

      Title_Box     : Gtk.Box.Gtk_Box;
      Title_Label   : Gtk.Label.Gtk_Label;
      Title_Icon    : Gtk.Image.Gtk_Image;
      --  Box that contains the title. It will be resized whenever the title
      --  font changes.

      Tab_Label     : Gtk.Label.Gtk_Label;
      Tab_Icon      : Gtk.Image.Gtk_Image;
      --  label used when child is in a notebook, null if not in a notebook

      Icon_Name     : GNAT.Strings.String_Access;

      Notebook_Before_Floating : Gtk.Notebook.Gtk_Notebook := null;
      --  The original notebook of a floating child. Used to put the child
      --  back in the same notebook when unfloating it.
   end record;

   type Child_Iterator (Group_By_Notebook : Boolean := False) is record
      Visible_Only : Boolean;

      case Group_By_Notebook is
         when False =>
            Iter : Gtk.Widget.Widget_List.Glist;

         when True =>
            MDI                 : MDI_Window;

            --  While iterating children
            Paned_Iter          : Gtkada.Multi_Paned.Child_Iterator;

            --  Whether we have already visited the children of the central
            --  area. This is True while iterating them, False afterward
            In_Central          : Boolean;

            --  While iterating the pages of a specific notebook (notebook is
            --  set to null when returning floating children)
            Notebook            : Gtk.Notebook.Gtk_Notebook;
            Notebook_Page       : Glib.Gint;

            --  While iterating the floating children
            Floating_Iter       : Gtk.Widget.Widget_List.Glist;
      end case;
   end record;

   type Drag_Status is (No_Drag, In_Pre_Drag, In_Drag);

   type MDI_Window_Record is new Gtkada.Multi_Paned.Gtkada_Multi_Paned_Record
   with record
      Items : Gtk.Widget.Widget_List.Glist := Gtk.Widget.Widget_List.Null_List;
      --  The list of all MDI children. This includes children in the editor
      --  area, even though they are technically in a separate multi_paned.
      --  Warning: this list might contain items which are in fact invisible in
      --  the MDI (in fact that are not even children of the MDI), if they
      --  existed in a previous perspective but no longer in the current one.

      Desktop_Was_Loaded : Boolean := False;
      --  True if a desktop was loaded

      Loading_Desktop : Boolean := False;
      --  Whether we are currently loading the desktop. This impacts a number
      --  of focus and sizing parameters, so that the desktop can be restored
      --  as accurately as possible.

      Focus_Child : MDI_Child := null;
      --  The child that currently has the focus. Some default actions will
      --  apply to this child only.

      Focus_Freeze : Natural := 0;
      --  We should not emit any focus change if this is > 0.

      Dnd_Message : String_Access;
      --  The message displayed during a dnd operation (see Set_Dnd_Message)

      Accel_Path_Prefix   : String_Access;
      --  The Accel path used for the dynamic menu

      Menu_Model          : Glib.Menu.Gmenu;
      Menu_Items_Section  : Glib.Menu.Gmenu;
      Application         : Gtk.Application.Gtk_Application;
      Action_Float        : Glib.Simple_Action.Gsimple_Action;
      Action_Select       : Glib.Simple_Action.Gsimple_Action;
      Action_Close        : Glib.Simple_Action.Gsimple_Action;
      Action_Select_Perspective : Glib.Simple_Action.Gsimple_Action;
      Perspectives_Menu   : Glib.Menu.Gmenu;

      Freeze_Float_Menu   : Boolean := False;

      Tab_Factory         : Tab_Contextual_Menu_Factory;
      --  Build the contextual menu when right-clicking on tabs

      Title_Bar_Height    : Glib.Gint;
      --  Height of the title bar for all the children

      Title_Font : Pango.Font.Pango_Font_Description;
      --  The font used for the titles of the children

      Close_Floating_Is_Unfloat : Boolean;
      --  True if destroying a floating window will put the child back in the
      --  MDI instead of destroying it. False if the child should be destroyed
      --  (provided it accepts so in its delete_event handler).

      Title_Bar_Color     : Gdk.RGBA.Gdk_RGBA := Gdk.RGBA.Null_RGBA;
      Focus_Title_Color   : Gdk.RGBA.Gdk_RGBA := Gdk.RGBA.Null_RGBA;
      Default_Title_Color : Gdk.RGBA.Gdk_RGBA := Gdk.RGBA.Null_RGBA;
      Css_Provider        : Gtk.Css_Provider.Gtk_Css_Provider;

      Cursor_Cross        : Gdk.Gdk_Cursor;
      Cursor_Fleur        : Gdk.Gdk_Cursor;
      --  Cached cursors

      Draw_Title_Bars   : Title_Bars_Policy := Always;
      Tabs_Position     : Gtk.Enums.Gtk_Position_Type := Gtk.Enums.Pos_Top;
      Tabs_Orientation  : Tab_Orientation_Type := Automatic;
      Show_Tabs_Policy  : Show_Tabs_Policy_Enum := Automatic;

      Selection_Dialog : Gtk.Widget.Gtk_Widget;
      --  The interactive dialog for selecting new children.

      Group : Gtk.Accel_Group.Gtk_Accel_Group;

      All_Floating_Mode : Boolean := False;
      --  Set to true if all windows should be set to floating

      Independent_Perspectives : Boolean := False;
      --  See documentation for Configure.

      Use_Short_Titles_For_Floats : Boolean := False;
      --  Set to true if all floating children should use their short titles.
      --  This also applies to docked windows.

      Homogeneous_Tabs : Boolean := True;

      --  Handling of Dnd
      Drag_Start_X, Drag_Start_Y : Gint;

      In_Drag                    : Drag_Status := No_Drag;
      --  The Dnd status

      Dnd_Rectangle              : Gdk.Rectangle.Gdk_Rectangle;
      --  the Dnd highlighted area (e.g: left side of notebook)

      Old_Dnd_Position           : Child_Position := Position_Automatic;
      --  The old Dnd position (e.g: top side of notebook). Used to know if
      --  we should refresh the Dnd overlay (and the message) or not.

      Dnd_Parent_Rect    : Gdk.Rectangle.Gdk_Rectangle;
      --  The area that corresponds to the Dnd target parent (e.g: parent
      --  notebook)

      Dnd_Area_Message   : Unbounded_String;
      --  The message displayed when Dnd is being performed, indicating the
      --  are where the MDI child will be dropped

      Dnd_Handler_Id     : Gtk.Handlers.Handler_Id;
      --  The Dnd overlay drawing handler

      Dnd_Target         : Gdk.Gdk_Window;
      --  The current target for DND

      Drag_Areas : Allowed_Areas;
      --  The allowed areas during a drag

      --  Loaded perspectives
      Perspectives           : Glib.Xml_Int.Node_Ptr;
      View_Contents          : Glib.Xml_Int.Node_Ptr;
      Perspective_Names      : GNAT.Strings.String_List_Access;
      Central                : Gtkada.Multi_Paned.Gtkada_Multi_Paned;

      Current_Perspective    : Glib.Xml_Int.Node_Ptr;
      --  pointer into Perspectives
      Saved_Sizes            : Saved_Perspectives_Map.Map;
      --  Map containing the sizes of the MDI children before the last
      --  child maximization

      Internal_Updating_Menu : Boolean := False;
      --  Flag to prevent giving focus to a child in response to a menu being
      --  toggled when it is the MDI itself that toggles the menu.
   end record;

   pragma Inline (Get_Widget);
   pragma Inline (Get_Focus_Child);
   pragma Inline (Get);
   pragma Inline (Next);
   pragma Inline (First_Child);

end Gtkada.MDI;