00001 // Filename: gtkStatsMenuId.h 00002 // Created by: drose (16Jan06) 00003 // 00004 //////////////////////////////////////////////////////////////////// 00005 // 00006 // PANDA 3D SOFTWARE 00007 // Copyright (c) Carnegie Mellon University. All rights reserved. 00008 // 00009 // All use of this software is subject to the terms of the revised BSD 00010 // license. You should have received a copy of this license along 00011 // with this source code in a file named "LICENSE." 00012 // 00013 //////////////////////////////////////////////////////////////////// 00014 00015 #ifndef GTKSTATSMENUID_H 00016 #define GTKSTATSMENUID_H 00017 00018 #include "pandatoolbase.h" 00019 00020 //////////////////////////////////////////////////////////////////// 00021 // Enum : GtkStatsMenuId 00022 // Description : The enumerated values here are used for menu ID's for 00023 // the various pulldown menus in the application. 00024 //////////////////////////////////////////////////////////////////// 00025 enum GtkStatsMenuId { 00026 MI_none, 00027 MI_time_ms, 00028 MI_time_hz, 00029 MI_frame_rate_label, 00030 MI_speed_1, 00031 MI_speed_2, 00032 MI_speed_3, 00033 MI_speed_6, 00034 MI_speed_12, 00035 MI_pause, 00036 00037 // This one is last and represents the beginning of the range for 00038 // the various "new chart" menu options. 00039 MI_new_chart 00040 }; 00041 00042 #endif 00043