Panda3D
config_pnmtext.h
1 // Filename: config_pnmtext.h
2 // Created by: drose (08Sep03)
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_PNMTEXT_H
16 #define CONFIG_PNMTEXT_H
17 
18 #include "pandabase.h"
19 #include "notifyCategoryProxy.h"
20 #include "configVariableDouble.h"
21 #include "configVariableBool.h"
22 
23 class DSearchPath;
24 
25 NotifyCategoryDecl(pnmtext, EXPCL_PANDA_PNMTEXT, EXPTP_PANDA_PNMTEXT);
26 
27 extern ConfigVariableDouble text_point_size;
28 extern ConfigVariableDouble text_pixels_per_unit;
29 extern ConfigVariableDouble text_scale_factor;
30 extern ConfigVariableBool text_native_antialias;
31 
32 extern EXPCL_PANDA_PNMTEXT void init_libpnmtext();
33 
34 #endif
This is a convenience class to specialize ConfigVariable as a boolean type.
This is a convenience class to specialize ConfigVariable as a floating-point type.
This class stores a list of directories that can be searched, in order, to locate a particular file...
Definition: dSearchPath.h:32