all repos — fluxbox @ 4a58deecfdc2452f598618f037dcfa50e664949a

custom fork of the fluxbox windowmanager

transient check fixes
fluxgen fluxgen
commit

4a58deecfdc2452f598618f037dcfa50e664949a

parent

dca62ae742156a4621a0f24489703400f947507d

1 files changed, 50 insertions(+), 18 deletions(-)

jump to
M src/Window.ccsrc/Window.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: Window.cc,v 1.73 2002/08/30 14:06:40 fluxgen Exp $ +// $Id: Window.cc,v 1.74 2002/08/30 16:07:17 fluxgen Exp $ #include "Window.hh"

@@ -380,10 +380,15 @@ //guard from having transient_for = this

if (client.transient_for == this) { #ifdef DEBUG cerr<<__FILE__<<"("<<__LINE__<<"): WARNING! client.transient_for == this WARNING!"<<endl; + assert(0); #endif //DEBUG client.transient_for = 0; + } - + if (client.transient == this) { + client.transient = 0; + assert(0); + } fluxbox->setFocusedWindow(client.transient_for); }

@@ -3746,6 +3751,10 @@

} void FluxboxWindow::checkTransient() { + // default values + client.transient_for = 0; + client.transient = 0; + Fluxbox *fluxbox = Fluxbox::instance(); // determine if this is a transient window Window win;

@@ -3753,36 +3762,59 @@ if (!XGetTransientForHint(display, client.window, &win)) {

client.transient_for = 0; return; } + + if (win == client.window) + return; + if (win && (win != client.window)) { - FluxboxWindow *tr; - if ((tr = fluxbox->searchWindow(win))) { - - while (tr->client.transient) { + FluxboxWindow *tr = fluxbox->searchWindow(win); + if (tr != 0) { + + while (tr->client.transient != 0) { tr = tr->client.transient; - if (tr && tr == tr->client.transient) { //ops! something is wrong with transient + if (tr == tr->client.transient) { //ops! something is wrong with transient tr->client.transient = 0; + if (tr->client.transient_for == tr) + tr->client.transient_for = 0; + break; } } - - client.transient_for = tr; - tr->client.transient = this; - stuck = client.transient_for->stuck; - transient = true; + if (tr != this) { + client.transient_for = tr; + tr->client.transient = this; + transient = true; + } else { + client.transient_for = 0; + client.transient = 0; + } + if (client.transient_for != 0) { + stuck = client.transient_for->stuck; + } + } else if (win == client.window_group) { if ((tr = fluxbox->searchGroup(win, this))) { - while (tr->client.transient) { + while (tr->client.transient != 0) { tr = tr->client.transient; if (tr && tr == tr->client.transient) { //ops! somehtin is wrong with transient tr->client.transient = 0; } } - - client.transient_for = tr; - tr->client.transient = this; - stuck = client.transient_for->stuck; - transient = true; + + if (tr != this) { + client.transient_for = tr; + tr->client.transient = this; + transient = true; + } else { + client.transient_for = 0; + client.transient = 0; + } + + if (client.transient_for != 0) { + stuck = client.transient_for->stuck; + } + } } }