1. -- 
  2. -- Copyright (c) 2012 Kevin Wellwood 
  3. -- All rights reserved. 
  4. -- 
  5. -- This source code is distributed under the Modified BSD License. For terms and 
  6. -- conditions, see license.txt. 
  7. -- 
  8.  
  9. package Game_Views.Ked.Menubar is 
  10.  
  11.     procedure Make_Menubar( view : not null A_Ked_View; 
  12.                             win  : not null A_Window ); 
  13.  
  14.     -- Call this when a new map is loaded to update the menu bar 
  15.     procedure Handle_New_Map( view : not null A_Ked_View ); 
  16.  
  17.     -- Returns the height of the menubar in pixels 
  18.     function Get_Menubar_Height return Natural; 
  19.  
  20. end Game_Views.Ked.Menubar;