Panda3D
 All Classes Functions Variables Enumerations
config_windisplay.h
1 // Filename: config_windisplay.h
2 // Created by: drose (20Dec02)
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_WINDISPLAY_H
16 #define CONFIG_WINDISPLAY_H
17 
18 #include "pandabase.h"
19 #include "filename.h"
20 #include "notifyCategoryProxy.h"
21 #include "configVariableBool.h"
22 
23 NotifyCategoryDecl(windisplay, EXPCL_PANDAWIN, EXPTP_PANDAWIN);
24 
25 extern ConfigVariableBool responsive_minimized_fullscreen_window;
26 extern ConfigVariableBool hold_keys_across_windows;
27 extern ConfigVariableBool do_vidmemsize_check;
28 extern ConfigVariableBool auto_cpu_data;
29 extern ConfigVariableBool ime_composition_w;
30 extern ConfigVariableBool ime_aware;
31 extern ConfigVariableBool ime_hide;
32 extern ConfigVariableBool request_dxdisplay_information;
33 extern ConfigVariableBool dpi_aware;
34 extern ConfigVariableBool dpi_window_resize;
35 
36 extern EXPCL_PANDAWIN ConfigVariableBool swapbuffer_framelock;
37 
38 extern EXPCL_PANDAWIN void init_libwindisplay();
39 
40 #endif
This is a convenience class to specialize ConfigVariable as a boolean type.