summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2003-02-16 16:32:21 +0000
committerDana Jansens <danakj@orodu.net>2003-02-16 16:32:21 +0000
commit8cbabdcb93a61110a111f77d6f0f51cf3f6dd834 (patch)
treecc0530cb20f6bb5154bef51c871d063dccfb8b77 /src
parentbb4990af2b94baa59fc704e58b911085e78bfc34 (diff)
import the config module properly.
shit all over stderr and exit when something from the config module couldn't be loaded
Diffstat (limited to 'src')
-rw-r--r--src/config.cc31
1 files changed, 21 insertions, 10 deletions
diff --git a/src/config.cc b/src/config.cc
index d464ebbc..b1495dc8 100644
--- a/src/config.cc
+++ b/src/config.cc
@@ -6,6 +6,9 @@
extern "C" {
#include <Python.h>
+
+#include "gettext.h"
+#define _(str) gettext(str)
}
#include <cstring>
@@ -50,24 +53,32 @@ bool python_get_stringlist(const char *name, std::vector<otk::ustring> *value)
Config::Config()
{
- PyRun_SimpleString("import config;");
// set up access to the python global variables
- PyObject *obmodule = PyImport_AddModule("config");
+ PyObject *obmodule = PyImport_ImportModule("config");
obdict = PyModule_GetDict(obmodule);
+ Py_DECREF(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_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))
- 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;
+ 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);
+ }
}
Config::~Config()