Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2011-05-08 | Can check CARDINAL properties in CLIENT PATTERNS | nacitar sevaht | 1 | -20/+10 | |
Introduces a new member function, FbWindow::cardinalProperty() This change also changes other code that previously used FbWindow::property() to do the same thing as the new function; this reduces code duplication. There are still some bits of code (Ewmh.cc, extractNetWmIcon()) that use FbWindow::property() to retrieve XA_CARDINAL values, but as the new method is designed for getting a _single_ property, and that code uses FbWindow::property() to retrieve the number of values present, and then grab all of them; it's a different use case. I opted to not try to make cardinalProperty() into some monolithic all-purpose cardinal method; FbWindow::property() works just fine for that. This change also adds an optional (default=NULL) boolean to FbWindow::textProperty and friends that allows the caller to determine whether or not a value was actually retrieved. This was necessary for integrating FbWindow::cardinalProperty with the codebase, and it seemed to fit with FbWindow::textProperty as well. Prior to this change, if you got a return value of "", you wouldn't know if you successfully retrieved the value which happened to be blank, or if you failed to retrieve the value. Now, you can pass the address of a boolean if you so choose in order to differentiate these situations; the same applies to the new FbWindow::cardinalProperty(). | |||||
2011-03-23 | compile fix: sunCC 5.11 (sunstudio 12) compiles and links again | Mathias Gumz | 1 | -9/+9 | |
biggest change: renaming of 'class Layer' to 'class ResourceLayer' in Layer.hh to handle complaints about 'ambiguous Layer: Layer or FbTk::Layer'. 'ResourceLayer' sounds crappy, but that was the best I could come up with right now. | |||||
2010-09-13 | code simplification | Mathias Gumz | 1 | -0/+1 | |
we do not need a std::map just to store an attribute on an AtomHandler, it makes housekeeping just more annoying. | |||||
2010-09-08 | introduced FbTk::BidiString | Mathias Gumz | 1 | -10/+9 | |
a 'BidiString' holds both the logical content and the visual reordered version of the content of a string. this helps to reduce the number of calls to reorder the string before drawing it (as introduced in the patch from Ken Bloom) and to be more consistent in menus and textboxes (drawing cursors and underlining text). | |||||
2010-03-17 | Changed #ifdef DEBUG ... cerr << to using fbdbg. | Henrik Kinnunen | 1 | -65/+34 | |
This will reduce the number of #ifdef DEBUG for simple debug messages. include "Debug.hh" and use fbdbg instead of cerr for debug. | |||||
2009-09-30 | compile fix: ISO C++ forbids variable length array 'names' | Mathias Gumz | 1 | -3/+5 | |
2008-01-04 | remove old svn $Id$ tags | Mark Tiefenbruck | 1 | -2/+0 | |
2007-12-30 | removed some unneeded headers | Mathias Gumz | 1 | -3/+2 | |
2007-12-19 | remove reassoc argument from FluxboxWindow::deiconify | Mark Tiefenbruck | 1 | -1/+1 | |
2007-07-15 | make sure menus close only when right clicking down and up on the titlebar | markt | 1 | -1/+1 | |
2007-07-08 | remove _NET_WM_DESKTOP, _NET_WM_STATE, and Gnome hints on client close | markt | 1 | -0/+11 | |
2007-06-29 | updates for compiling with gcc 4.3 | markt | 1 | -0/+5 | |
2006-12-31 | Fix _NET_FRAME_EXTENTS on 64-bit systems | simonb | 1 | -1/+1 | |
2006-10-30 | Cosmetic patch from Slava Semushin | mathias | 1 | -56/+60 | |
2006-08-09 | it never existed (what never existed?) | markt | 1 | -5/+4 | |
2006-08-08 | fix some compiler warnings in gcc 4.1 | markt | 1 | -4/+5 | |
2006-07-30 | little cleanup, remove FluxboxWindow::isInitialized() | markt | 1 | -1/+1 | |
2006-06-21 | fix nls... notably classify text on conversion whether its for X or | simonb | 1 | -1/+1 | |
console, plus handle catalogs better. | |||||
2006-04-02 | size_t fixes, thanks Semushin Slava aka php-coder | fluxgen | 1 | -3/+3 | |
2006-02-20 | moved class Layer from class Fluxbox and thus reduces some dependecies | fluxgen | 1 | -10/+12 | |
2006-02-16 | updated copyright info | mathias | 1 | -1/+1 | |
2005-07-04 | cleaning, change getCount to numberOfWorkspaces | fluxgen | 1 | -3/+3 | |
2005-05-14 | Vadim pointed out that _NET_CLIENT_LIST and _NET_CLIENT_LIST_STACKING are ↵ | mathias | 1 | -1/+1 | |
not updated when sending _BLACKBOX_NOTIFY_WINDOW_DEL _NET_WM_DESKTOP and _WIN_WORKSPACE had wrong initial values (-1), which lead to probems with (eg) fbpager (unaware of newly created windows and such things) | |||||
2005-05-13 | fix a segfault | simonb | 1 | -1/+1 | |
2005-01-31 | closes #1107213, 64bit issues with XChangeProperty | mathias | 1 | -4/+4 | |
submitted by Matthieu Herrb <matthieu.herrb@laas.fr> | |||||
2005-01-24 | copyright date | mathias | 1 | -1/+1 | |
2004-11-19 | svn propset svn:keywords "Id" | mathias | 1 | -1/+1 | |
2004-08-11 | debug messages and some minor cleaning | fluxgen | 1 | -10/+37 | |
2004-06-28 | minor stuff | fluxgen | 1 | -2/+15 | |
2004-06-07 | update NLS string handling... | rathnor | 1 | -2/+4 | |
2004-02-20 | fixed focus issues with remember hidden, patch from Mathias Gumz | fluxgen | 1 | -2/+5 | |
2004-01-19 | minor update | fluxgen | 1 | -19/+22 | |
2003-10-02 | address some memory issues shown up with valgrind | rathnor | 1 | -2/+2 | |
2003-07-28 | update many things to use WinClient instead of FluxboxWindow | rathnor | 1 | -16/+18 | |
2003-07-17 | fix java bug (wasn't sending ConfigureNotify events in response to | rathnor | 1 | -1/+7 | |
ConfigureRequests). Also fix no border on transients and some initial gnome atom values. | |||||
2003-07-04 | support in remember for specifying groups. | rathnor | 1 | -3/+3 | |
Also split atomhandler::setupWindow | |||||
2003-06-26 | speedups for having lots of stuck windows | rathnor | 1 | -2/+5 | |
2003-06-23 | fix grouping to persist over restart, plus various related bugs. | rathnor | 1 | -10/+21 | |
Also move a large proportion of window initialisation from FluxboxWindow to WinClient | |||||
2003-06-12 | using desktop names | fluxgen | 1 | -12/+13 | |
2003-05-19 | using property and changeProperty | fluxgen | 1 | -32/+27 | |
2003-05-15 | minor cleaning in BScreen interface | fluxgen | 1 | -2/+2 | |
2003-05-15 | cleaning in FluxboxWindow interface | fluxgen | 1 | -10/+10 | |
2003-05-11 | minor cleaning | fluxgen | 1 | -5/+5 | |
2003-05-11 | minor cleaning | fluxgen | 1 | -4/+4 | |
2003-05-10 | using FbRootWindow | fluxgen | 1 | -8/+8 | |
2003-05-08 | fix updating of gnome layer atom | rathnor | 1 | -2/+3 | |
2003-04-25 | fixed include | fluxgen | 1 | -1/+2 | |
2003-04-15 | cleaning | fluxgen | 1 | -3/+4 | |
2003-04-15 | fixed client count bug | fluxgen | 1 | -8/+23 | |
2003-04-14 | merged with embedded-tab-branch | fluxgen | 1 | -6/+6 | |