summaryrefslogtreecommitdiff
path: root/src/config.cc
blob: 04728de2b38c01d2ab39e28419de168772873da3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
// -*- mode: C++; indent-tabs-mode: nil; c-basic-offset: 2; -*-

#include "config.h"

#include "config.hh"
#include "otk/screeninfo.hh"
#include "otk/renderstyle.hh"
#include "otk/util.hh"
#include "otk/property.hh"
#include "otk/display.hh"

extern "C" {
#include <Python.h>

#include "gettext.h"
#define _(str) gettext(str)
}

#include <cstring>

namespace ob {

static PyObject *obdict = NULL;

bool python_get_long(const char *name, long *value)
{
  PyObject *val = PyDict_GetItemString(obdict, const_cast<char*>(name));
  if (!(val && PyInt_Check(val))) return false;
  
  *value = PyInt_AsLong(val);
  return true;
}

bool python_get_string(const char *name, otk::ustring *value)
{
  PyObject *val = PyDict_GetItemString(obdict, const_cast<char*>(name));
  if (!(val && PyString_Check(val))) return false;

  std::string temp(PyString_AsString(val), PyString_Size(val));
  *value = temp;
  return true;
}

bool python_get_stringlist(const char *name, std::vector<otk::ustring> *value)
{
  PyObject *val = PyDict_GetItemString(obdict, const_cast<char*>(name));
  if (!(val && PyList_Check(val))) return false;

  value->clear();
  
  for (int i = 0, end = PyList_Size(val); i < end; ++i) {
    PyObject *str = PyList_GetItem(val, i);
    if (PyString_Check(str))
      value->push_back(PyString_AsString(str));
  }
  return true;
}

void Config::load()
{
  const otk::ScreenInfo *info = otk::display->screenInfo(_screen);
  Window root = info->rootWindow();

  // set up access to the python global variables
  PyObject *obmodule = PyImport_ImportModule("config");
  obdict = PyModule_GetDict(obmodule);
  Py_DECREF(obmodule);

  python_get_stringlist("DESKTOP_NAMES", &desktop_names);

  python_get_string("THEME", &theme);
  // initialize the screen's style
  otk::RenderStyle::setStyle(_screen, theme);
  // draw the root window
  otk::bexec("obsetroot " + otk::RenderStyle::style(_screen)->rootArgs(),
             info->displayString());


  if (!python_get_string("TITLEBAR_LAYOUT", &titlebar_layout)) {
    fprintf(stderr, _("Unable to load config.%s\n"), "TITLEBAR_LAYOUT");
    ::exit(1);
  }

  if (!python_get_long("DOUBLE_CLICK_DELAY", &double_click_delay)) {
    fprintf(stderr, _("Unable to load config.%s\n"), "DOUBLE_CLICK_DELAY");
    ::exit(1);
  }
  if (!python_get_long("DRAG_THRESHOLD", &drag_threshold)) {
    fprintf(stderr, _("Unable to load config.%s\n"), "DRAG_THRESHOLD");
    ::exit(1);
  }
  if (!python_get_long("NUMBER_OF_DESKTOPS", (long*)&num_desktops)) {
    fprintf(stderr, _("Unable to load config.%s\n"), "NUMBER_OF_DESKTOPS");
    ::exit(1);
  }

  // Set the net_desktop_names property
  otk::Property::set(root,
                     otk::Property::atoms.net_desktop_names,
                     otk::Property::utf8, desktop_names);
  // the above set() will cause screen::updateDesktopNames to fire right away
  // so we have a list of desktop names

  XEvent ce;
  ce.xclient.type = ClientMessage;
  ce.xclient.message_type = otk::Property::atoms.net_number_of_desktops;
  ce.xclient.display = **otk::display;
  ce.xclient.window = root;
  ce.xclient.format = 32;
  ce.xclient.data.l[0] = num_desktops;
  XSendEvent(**otk::display, root, False,
	     SubstructureNotifyMask | SubstructureRedirectMask, &ce);
}

Config::Config(int screen)
  : _screen(screen)
{
}

Config::~Config()
{
}

}