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.Toolbar is 
  10.  
  11.     -- Builds the GUI for the tool bar. 
  12.     procedure Make_Toolbar( view : not null A_Ked_View; 
  13.                             win  : not null A_Window ); 
  14.  
  15.     procedure Handle_New_Map( view : not null A_Ked_View ); 
  16.  
  17.     -- Call this procedure when the active tool has changed. 
  18.     procedure Handle_Tool_Changed( view : not null A_Ked_View; 
  19.                                    tool : not null A_Tool ); 
  20.  
  21.     -- Returns the width of the toolbar in pixels 
  22.     function Get_Toolbar_Width return Natural; 
  23.  
  24. end Game_Views.Ked.Toolbar;