From 220b5c40f91c6509951ccd0d506a9bd77d9d6bac Mon Sep 17 00:00:00 2001 From: Dana Jansens Date: Tue, 4 Feb 2003 11:03:57 +0000 Subject: make python config variables very visible by making them all capitals. cleaner nicer documentation in the py modules. make public functions more visible. --- src/actions.cc | 4 ++-- src/frame.cc | 2 +- src/screen.cc | 6 +++--- 3 files changed, 6 insertions(+), 6 deletions(-) (limited to 'src') diff --git a/src/actions.cc b/src/actions.cc index 59aa1a19..28a5756b 100644 --- a/src/actions.cc +++ b/src/actions.cc @@ -153,7 +153,7 @@ void Actions::buttonReleaseHandler(const XButtonEvent &e) // XXX: dont load this every time!!@* long dblclick; - if (!python_get_long("double_click_delay", &dblclick)) + if (!python_get_long("DOUBLE_CLICK_DELAY", &dblclick)) dblclick = 300; if (e.time - _release.time < (unsigned)dblclick && @@ -283,7 +283,7 @@ void Actions::motionHandler(const XMotionEvent &e) int dx = x_root - _posqueue[0]->pos.x(); int dy = y_root - _posqueue[0]->pos.y(); // XXX: dont get this from python every time! - if (!python_get_long("drag_threshold", &threshold)) + if (!python_get_long("DRAG_THRESHOLD", &threshold)) threshold = 0; if (!(std::abs(dx) >= threshold || std::abs(dy) >= threshold)) return; // not at the threshold yet diff --git a/src/frame.cc b/src/frame.cc index ab21daff..57b338c8 100644 --- a/src/frame.cc +++ b/src/frame.cc @@ -173,7 +173,7 @@ void Frame::adjustSize() const int sep = bevel + 1; otk::ustring layout; - if (!python_get_string("titlebar_layout", &layout)) + if (!python_get_string("TITLEBAR_LAYOUT", &layout)) layout = "ILMC"; // this code ensures that the string only has one of each possible diff --git a/src/screen.cc b/src/screen.cc index c42ceeea..db0cb862 100644 --- a/src/screen.cc +++ b/src/screen.cc @@ -77,7 +77,7 @@ Screen::Screen(int screen) // XXX: initialize the screen's style /* otk::ustring stylepath; - python_get_string("theme", &stylepath); + python_get_string("THEME", &stylepath); otk::Configuration sconfig(false); sconfig.setFile(otk::expandTilde(stylepath.c_str())); if (!sconfig.load()) { @@ -103,7 +103,7 @@ Screen::Screen(int screen) // Set the net_desktop_names property std::vector names; - python_get_stringlist("desktop_names", &names); + python_get_stringlist("DESKTOP_NAMES", &names); otk::Property::set(_info->rootWindow(), otk::Property::atoms.net_desktop_names, otk::Property::utf8, names); @@ -112,7 +112,7 @@ Screen::Screen(int screen) _desktop = 0; - if (!python_get_long("number_of_desktops", &_num_desktops)) + if (!python_get_long("NUMBER_OF_DESKTOPS", &_num_desktops)) _num_desktops = 1; changeNumDesktops(_num_desktops); // set the hint -- cgit v1.2.3