]> Dogcows Code - chaz/openbox/blob - src/config.hh
6cbbaacd2ce15ecb6924a5860b122af3f07d1054
[chaz/openbox] / 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
This page took 0.036541 seconds and 3 git commands to generate.