]> Dogcows Code - chaz/openbox/blob - src/config.hh
add a default icon
[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 unsigned long *default_icon;
25 long icon_w;
26 long icon_h;
27 long icon_length;
28
29 Config();
30 ~Config();
31 };
32
33 }
34
35 #endif // __config_hh
This page took 0.037654 seconds and 5 git commands to generate.