all repos — fluxbox @ eae52404ec5c51032d96d5786fe96a928c7d588d

custom fork of the fluxbox windowmanager

minor update
fluxgen fluxgen
commit

eae52404ec5c51032d96d5786fe96a928c7d588d

parent

5c4fe96fc1973a02d6180330da449205fac2ef9b

2 files changed, 15 insertions(+), 15 deletions(-)

jump to
M src/Screen.ccsrc/Screen.cc

@@ -22,7 +22,7 @@ // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING

// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER // DEALINGS IN THE SOFTWARE. -// $Id: Screen.cc,v 1.55 2002/07/10 14:51:32 fluxgen Exp $ +// $Id: Screen.cc,v 1.56 2002/07/20 09:32:34 fluxgen Exp $ //use GNU extensions #ifndef _GNU_SOURCE

@@ -268,7 +268,7 @@ XDefineCursor(getBaseDisplay()->getXDisplay(), getRootWindow(),

fluxbox->getSessionCursor()); image_control = - new BImageControl(fluxbox, this, true, fluxbox->getColorsPerChannel(), + new BImageControl(fluxbox, this, true, fluxbox->colorsPerChannel(), fluxbox->getCacheLife(), fluxbox->getCacheMax()); image_control->installRootColormap(); root_colormap_installed = true;

@@ -276,7 +276,7 @@

fluxbox->load_rc(this); image_control->setDither(*resource.image_dither); - theme = new Theme(getBaseDisplay()->getXDisplay(), getRootWindow(), getColormap(), getScreenNumber(), + theme = new Theme(getBaseDisplay()->getXDisplay(), getRootWindow(), colormap(), getScreenNumber(), image_control, fluxbox->getStyleFilename(), getRootCommand().c_str()); #ifdef GNOME

@@ -320,8 +320,8 @@ geom_h += getBevelWidth()*2;

XSetWindowAttributes attrib; unsigned long mask = CWBorderPixel | CWColormap | CWSaveUnder; - attrib.border_pixel = getBorderColor()->getPixel(); - attrib.colormap = getColormap(); + attrib.border_pixel = getBorderColor()->pixel(); + attrib.colormap = colormap(); attrib.save_under = true; geom_window =

@@ -335,7 +335,7 @@ if (theme->getWindowStyle().t_focus.getTexture() ==

(BImage::FLAT | BImage::SOLID)) { geom_pixmap = None; XSetWindowBackground(getBaseDisplay()->getXDisplay(), geom_window, - theme->getWindowStyle().t_focus.getColor()->getPixel()); + theme->getWindowStyle().t_focus.color().pixel()); } else { geom_pixmap = image_control->renderImage(geom_w, geom_h, &theme->getWindowStyle().t_focus);

@@ -347,7 +347,7 @@ if (theme->getWindowStyle().l_focus.getTexture() ==

(BImage::FLAT | BImage::SOLID)) { geom_pixmap = None; XSetWindowBackground(getBaseDisplay()->getXDisplay(), geom_window, - theme->getWindowStyle().l_focus.getColor()->getPixel()); + theme->getWindowStyle().l_focus.color().pixel()); } else { geom_pixmap = image_control->renderImage(geom_w, geom_h, &theme->getWindowStyle().l_focus);

@@ -586,7 +586,7 @@ if (theme->getWindowStyle().t_focus.getTexture() ==

(BImage::FLAT | BImage::SOLID)) { geom_pixmap = None; XSetWindowBackground(getBaseDisplay()->getXDisplay(), geom_window, - theme->getWindowStyle().t_focus.getColor()->getPixel()); + theme->getWindowStyle().t_focus.color().pixel()); } else { geom_pixmap = image_control->renderImage(geom_w, geom_h, &theme->getWindowStyle().t_focus);

@@ -598,7 +598,7 @@ if (theme->getWindowStyle().l_focus.getTexture() ==

(BImage::FLAT | BImage::SOLID)) { geom_pixmap = None; XSetWindowBackground(getBaseDisplay()->getXDisplay(), geom_window, - theme->getWindowStyle().l_focus.getColor()->getPixel()); + theme->getWindowStyle().l_focus.color().pixel()); } else { geom_pixmap = image_control->renderImage(geom_w, geom_h, &theme->getWindowStyle().l_focus);

@@ -611,7 +611,7 @@

XSetWindowBorderWidth(getBaseDisplay()->getXDisplay(), geom_window, theme->getBorderWidth()); XSetWindowBorder(getBaseDisplay()->getXDisplay(), geom_window, - theme->getBorderColor().getPixel()); + theme->getBorderColor().pixel()); //reconfigure menus workspacemenu->reconfigure();
M src/Slit.ccsrc/Slit.cc

@@ -19,7 +19,7 @@ // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING

// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER // DEALINGS IN THE SOFTWARE. -// $Id: Slit.cc,v 1.16 2002/07/19 16:10:18 fluxgen Exp $ +// $Id: Slit.cc,v 1.17 2002/07/20 09:35:01 fluxgen Exp $ //use GNU extensions #ifndef _GNU_SOURCE

@@ -112,8 +112,8 @@ unsigned long create_mask = CWBackPixmap | CWBackPixel | CWBorderPixel |

CWColormap | CWOverrideRedirect | CWEventMask; attrib.background_pixmap = None; attrib.background_pixel = attrib.border_pixel = - screen->getBorderColor()->getPixel(); - attrib.colormap = screen->getColormap(); + screen->getBorderColor()->pixel(); + attrib.colormap = screen->colormap(); attrib.override_redirect = True; attrib.event_mask = SubstructureRedirectMask | ButtonPressMask | EnterWindowMask | LeaveWindowMask;

@@ -398,7 +398,7 @@ reposition();

XSetWindowBorderWidth(display ,frame.window, screen->getBorderWidth()); XSetWindowBorder(display, frame.window, - screen->getBorderColor()->getPixel()); + screen->getBorderColor()->pixel()); //did we actually use slit slots if (num_windows == 0)

@@ -412,7 +412,7 @@ BTexture *texture = &(screen->getToolbarStyle()->toolbar);

if (texture->getTexture() == (BImage::FLAT | BImage::SOLID)) { frame.pixmap = None; XSetWindowBackground(display, frame.window, - texture->getColor()->getPixel()); + texture->color().pixel()); } else { frame.pixmap = image_ctrl->renderImage(frame.width, frame.height, texture);