Panda3D
config_x11display.h
1 // Filename: config_x11display.h
2 // Created by: rdb (07Jul09)
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 CONFIG_X11DISPLAY_H
16 #define CONFIG_X11DISPLAY_H
17 
18 #include "pandabase.h"
19 #include "notifyCategoryProxy.h"
20 #include "configVariableString.h"
21 #include "configVariableBool.h"
22 #include "configVariableInt.h"
23 
24 NotifyCategoryDecl(x11display, EXPCL_PANDAX11, EXPTP_PANDAX11);
25 
26 extern EXPCL_PANDAX11 void init_libx11display();
27 
28 extern ConfigVariableString display_cfg;
29 extern ConfigVariableBool x_error_abort;
30 
31 extern ConfigVariableInt x_wheel_up_button;
32 extern ConfigVariableInt x_wheel_down_button;
33 extern ConfigVariableInt x_wheel_left_button;
34 extern ConfigVariableInt x_wheel_right_button;
35 
36 extern ConfigVariableString x_wm_class_name;
37 extern ConfigVariableString x_wm_class;
38 
39 #endif
This is a convenience class to specialize ConfigVariable as a boolean type.
This is a convenience class to specialize ConfigVariable as a string type.
This is a convenience class to specialize ConfigVariable as an integer type.