Panda3D
 All Classes Functions Variables Enumerations
winStatsMenuId.h
1 // Filename: winStatsMenuId.h
2 // Created by: drose (11Jan04)
3 //
4 ////////////////////////////////////////////////////////////////////
5 //
6 // PANDA 3D SOFTWARE
7 // Copyright (c) Carnegie Mellon University. All rights reserved.
8 //
9 // All use of this software is subject to the terms of the revised BSD
10 // license. You should have received a copy of this license along
11 // with this source code in a file named "LICENSE."
12 //
13 ////////////////////////////////////////////////////////////////////
14 
15 #ifndef WINSTATSMENUID_H
16 #define WINSTATSMENUID_H
17 
18 #include "pandatoolbase.h"
19 
20 ////////////////////////////////////////////////////////////////////
21 // Enum : WinStatsMenuId
22 // Description : The enumerated values here are used for menu ID's for
23 // the various pulldown menus in the application.
24 ////////////////////////////////////////////////////////////////////
25 enum WinStatsMenuId {
26  MI_none,
27  MI_time_ms,
28  MI_time_hz,
29  MI_frame_rate_label,
30  MI_speed_1,
31  MI_speed_2,
32  MI_speed_3,
33  MI_speed_6,
34  MI_speed_12,
35  MI_pause,
36 
37  // This one is last and represents the beginning of the range for
38  // the various "new chart" menu options.
39  MI_new_chart
40 };
41 
42 #endif
43