]> Dogcows Code - chaz/openbox/blob - src/config.hh
Fixed a bug in grab handling for chains
[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 struct Config {
17 std::vector<otk::ustring> desktop_names;
18 otk::ustring theme;
19 otk::ustring titlebar_layout;
20 long double_click_delay;
21 long drag_threshold;
22 long num_desktops;
23
24 Config();
25 ~Config();
26 };
27
28 }
29
30 #endif // __config_hh
This page took 0.036579 seconds and 4 git commands to generate.