]> icculus.org git repositories - mikachu/openbox.git/blob - src/config.hh
make labels' parent relative actually work :>
[mikachu/openbox.git] / src / config.hh
1 // -*- mode: C++; indent-tabs-mode: nil; c-basic-offset: 2; -*-
2 #ifndef   __config_hh
3 #define   __config_hh
4
5 /*! @file config.hh
6   @brief The Config class contains configuration options set by the user's
7          scripts
8 */
9
10 #include "otk/ustring.hh"
11
12 #include <vector>
13
14 namespace ob {
15
16 class Config {
17   int _screen;
18
19 public:
20   std::vector<otk::ustring> desktop_names;
21   otk::ustring theme;
22   otk::ustring titlebar_layout;
23   long double_click_delay;
24   long drag_threshold;
25   long num_desktops;
26
27   Config(int screen);
28   ~Config();
29
30   void load();
31 };
32
33 }
34
35 #endif // __config_hh