X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=src%2Fconfig.cc;h=5c6ddfe9107f651cfdaf57bb524332269bc97067;hb=cce970813f088952e05e20f13d77d6f4766863e3;hp=d464ebbc5234a72cf3c59419dbee4f7c728d198b;hpb=532697b21ab8370265dcdcbca7b0c63c1c32f7ce;p=chaz%2Fopenbox diff --git a/src/config.cc b/src/config.cc index d464ebbc..5c6ddfe9 100644 --- a/src/config.cc +++ b/src/config.cc @@ -2,76 +2,60 @@ #include "config.h" -#include "config.hh" - -extern "C" { -#include -} - -#include - -namespace ob { - -static PyObject *obdict = NULL; - -bool python_get_long(const char *name, long *value) -{ - PyObject *val = PyDict_GetItemString(obdict, const_cast(name)); - if (!(val && PyInt_Check(val))) return false; - - *value = PyInt_AsLong(val); - return true; -} +/* + python_get_stringlist("DESKTOP_NAMES", &desktop_names); -bool python_get_string(const char *name, otk::ustring *value) -{ - PyObject *val = PyDict_GetItemString(obdict, const_cast(name)); - if (!(val && PyString_Check(val))) return false; + 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()); - std::string temp(PyString_AsString(val), PyString_Size(val)); - *value = temp; - return true; -} -bool python_get_stringlist(const char *name, std::vector *value) -{ - PyObject *val = PyDict_GetItemString(obdict, const_cast(name)); - if (!(val && PyList_Check(val))) return false; + if (!python_get_string("TITLEBAR_LAYOUT", &titlebar_layout)) { + fprintf(stderr, _("Unable to load config.%s\n"), "TITLEBAR_LAYOUT"); + ::exit(1); + } - 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)); + 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); } - return true; + 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() +Config::Config(int screen) + : _screen(screen) { - PyRun_SimpleString("import config;"); - // set up access to the python global variables - PyObject *obmodule = PyImport_AddModule("config"); - obdict = PyModule_GetDict(obmodule); - - python_get_stringlist("DESKTOP_NAMES", &desktop_names); - - python_get_string("THEME", &theme); - - if (!python_get_string("TITLEBAR_LAYOUT", &titlebar_layout)) - titlebar_layout = "NTIMC"; - - if (!python_get_long("DOUBLE_CLICK_DELAY", &double_click_delay)) - double_click_delay = 300; - if (!python_get_long("DRAG_THRESHOLD", &drag_threshold)) - drag_threshold = 3; - if (!python_get_long("NUMBER_OF_DESKTOPS", (long*)&num_desktops)) - num_desktops = 1; } Config::~Config() { } -} +*/