home *** CD-ROM | disk | FTP | other *** search
/ Dream 52 / Amiga_Dream_52.iso / Linux / Divers / freedraft.tar.gz / freedraft.tar / FREEdraft-050298 / VIEWPORT / vdapp_enum.h < prev    next >
C/C++ Source or Header  |  1998-04-30  |  3KB  |  151 lines

  1. // vdapp_enum.h
  2.  
  3.  
  4. // Copyright (C) 1997  Cliff Johnson                                       //
  5. //                                                                         //
  6. // This program is free software; you can redistribute it and/or           //
  7. // modify it under the terms of the GNU  General Public                    //
  8. // License as published by the Free Software Foundation; either            //
  9. // version 2 of the License, or (at your option) any later version.        //
  10. //                                                                         //
  11. // This software is distributed in the hope that it will be useful,        //
  12. // but WITHOUT ANY WARRANTY; without even the implied warranty of          //
  13. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU       //
  14. // General Public License for more details.                                //
  15. //                                                                         //
  16. // You should have received a copy of the GNU General Public License       //
  17. // along with this software (see COPYING); if not, write to the        //
  18. // Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. //
  19.  
  20. #ifndef VDAPP_ENUM_H
  21. #define VDAPP_ENUM_H
  22.  
  23. // menus and widgets and V definitions
  24. enum{
  25.  
  26. // type mask selection bar actions
  27.                 // because of the way TypeMaskBehavior works, 
  28.     m_Point = 5000,        // it would be nice if the button numbers
  29.     m_Line,            // matched the entity type numbers in geom_enum.h
  30.     m_Circle,        // so well keep them in the same order
  31.     m_Segment,
  32.     m_Arc,
  33.     m_Ellipse,
  34.     m_Curve,
  35.     m_Group,
  36.  
  37.     m_ClearMask,
  38.     m_Wildcard,
  39.     m_Sum,
  40.  
  41.     m_EndPoint,
  42.     m_MidPoint,
  43.     m_Center,
  44.     m_Intersection,
  45.     m_Support,
  46.  
  47.     m_Pan,
  48.     m_CView,
  49.     m_ZoomIn,
  50.     m_ZoomOut,
  51.     m_MaxZoom,
  52.     
  53. // menu actions
  54.     m_ViewMenu,
  55.         m_ViewReset,
  56.         m_ViewScale,
  57.  
  58.     m_Attribute,
  59.         m_LayerAttribute,
  60.         m_LineTypeAttribute,
  61.         m_ColorAttribute,
  62.  
  63.     m_Modules,
  64.         m_GeometryModule,
  65.         m_MeasurementModule,
  66.         m_NoModule,
  67.  
  68.     m_Parameters,
  69.         m_System,
  70.         m_Selection,
  71.         m_Plotting,
  72.  
  73.     m_InputStatusPane,
  74.     m_Fframe0,
  75.     m_Fframe1,
  76.     m_Fframe2,
  77.     m_Fframe3,
  78.     m_Fframe4,
  79.     m_Fframe5,
  80.     m_Fframe6,
  81.     m_Fframe7,
  82.     m_Fframe8,
  83.     m_Fframe9,
  84.     m_Fframe10,
  85.     
  86.     m_ColorBtn,
  87.  
  88. // generic buttons for function commands
  89.  
  90.     MENULABEL0,
  91.     MENULABEL1,
  92.     MENULABEL2,
  93.     MENULABEL3,
  94.     MENULABEL4,
  95.     MENULABEL5,
  96.     MENULABEL6,
  97.     MENULABEL7,
  98.     MENULABEL8,
  99.     MENULABEL9,
  100.     MENULABEL10,
  101.     MENUBUTTON00,
  102.     MENUBUTTON01,
  103.     MENUBUTTON10,
  104.     MENUBUTTON11,
  105.     MENUBUTTON20,
  106.     MENUBUTTON21,
  107.     MENUBUTTON30,
  108.     MENUBUTTON31,
  109.     MENUBUTTON40,
  110.     MENUBUTTON41,
  111.     MENUBUTTON50,
  112.     MENUBUTTON51,
  113.     MENUBUTTON60,
  114.     MENUBUTTON61,
  115.     MENUBUTTON70,
  116.     MENUBUTTON71,
  117.     MENUBUTTON80,
  118.     MENUBUTTON81,
  119.     MENUBUTTON90,
  120.     MENUBUTTON91,
  121.     MENUBUTTON100,
  122.     MENUBUTTON101,
  123.  
  124. // dialog stuff thats not currently used
  125.     m_PDCancel,
  126.     m_PDFieldMode,
  127.     m_PDOK,
  128.     m_PDSnap,
  129.     m_PDlabel1,
  130.     m_PDlabel2,
  131.     m_PDlabel3,
  132.     m_PDlabel4,
  133.     m_PDxval,
  134.     m_PDyval,
  135.     m_PDzval,
  136.  
  137. // intercepted keyboard codes 
  138.     KB_CenterView = 65367,
  139.     KB_ZoomUp = 65365,
  140.     KB_ZoomDown = 65366,
  141.     KB_LeftArrow =  65361,
  142.     KB_UpArrow,
  143.     KB_RightArrow,
  144.     KB_DownArrow,
  145.     KB_SpaceBar = 32
  146.  
  147. };
  148.  
  149.  
  150. #endif
  151.