summaryrefslogtreecommitdiff
path: root/src/config.cc
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2003-03-21 18:42:39 +0000
committerDana Jansens <danakj@orodu.net>2003-03-21 18:42:39 +0000
commita52a6d96d701c993896f276e4198003317632aaf (patch)
treebe2f51e6a433d1fdf9a7c8248b343cb3f6297212 /src/config.cc
parenta36c7543d4eedaa9e10bfd9f4d9b81279b1bb7e6 (diff)
rm the old code including the .pys and the c++ shit
Diffstat (limited to 'src/config.cc')
-rw-r--r--src/config.cc61
1 files changed, 0 insertions, 61 deletions
diff --git a/src/config.cc b/src/config.cc
deleted file mode 100644
index 5c6ddfe9..00000000
--- a/src/config.cc
+++ /dev/null
@@ -1,61 +0,0 @@
-// -*- mode: C++; indent-tabs-mode: nil; c-basic-offset: 2; -*-
-
-#include "config.h"
-
-/*
- 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()
-{
-}
-
-*/