diff options
| author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-01-07 04:10:07 +0000 | 
|---|---|---|
| committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-01-07 04:10:07 +0000 | 
| commit | fd3a982e26813f5bcc82c7e89ce6fa2ad44432bf (patch) | |
| tree | 9eda848e56fcb862fdfdf479adeccd95b6fe387a /kwin/events.cpp | |
| parent | 02f67d0e1355b79b1806746efb0f2f640e57f13d (diff) | |
| download | tdebase-fd3a982e26813f5bcc82c7e89ce6fa2ad44432bf.tar.gz tdebase-fd3a982e26813f5bcc82c7e89ce6fa2ad44432bf.zip | |
Revert automated changes
Sorry guys, they are just not ready for prime time
Work will continue as always
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdebase@1212480 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kwin/events.cpp')
| -rw-r--r-- | kwin/events.cpp | 66 | 
1 files changed, 33 insertions, 33 deletions
| diff --git a/kwin/events.cpp b/kwin/events.cpp index dba2e5a47..a30e915e1 100644 --- a/kwin/events.cpp +++ b/kwin/events.cpp @@ -11,7 +11,7 @@ License. See the file "COPYING" for the exact licensing terms.  /* - This file tqcontains things relevant to handling incoming events. + This file contains things relevant to handling incoming events.  */ @@ -51,37 +51,37 @@ void WinInfo::changeDesktop(int desktop)      m_client->workspace()->sendClientToDesktop( m_client, desktop, true );      } -void WinInfo::changeState( unsigned long state, unsigned long tqmask ) +void WinInfo::changeState( unsigned long state, unsigned long mask )      { -    tqmask &= ~NET::Sticky; // KWin doesn't support large desktops, ignore -    tqmask &= ~NET::Hidden; // clients are not allowed to change this directly -    state &= tqmask; // for safety, clear all other bits +    mask &= ~NET::Sticky; // KWin doesn't support large desktops, ignore +    mask &= ~NET::Hidden; // clients are not allowed to change this directly +    state &= mask; // for safety, clear all other bits -    if(( tqmask & NET::FullScreen ) != 0 && ( state & NET::FullScreen ) == 0 ) +    if(( mask & NET::FullScreen ) != 0 && ( state & NET::FullScreen ) == 0 )          m_client->setFullScreen( false, false ); -    if ( (tqmask & NET::Max) == NET::Max ) +    if ( (mask & NET::Max) == NET::Max )          m_client->setMaximize( state & NET::MaxVert, state & NET::MaxHoriz ); -    else if ( tqmask & NET::MaxVert ) +    else if ( mask & NET::MaxVert )          m_client->setMaximize( state & NET::MaxVert, m_client->maximizeMode() & Client::MaximizeHorizontal ); -    else if ( tqmask & NET::MaxHoriz ) +    else if ( mask & NET::MaxHoriz )          m_client->setMaximize( m_client->maximizeMode() & Client::MaximizeVertical, state & NET::MaxHoriz ); -    if ( tqmask & NET::Shaded ) +    if ( mask & NET::Shaded )          m_client->setShade( state & NET::Shaded ? ShadeNormal : ShadeNone ); -    if ( tqmask & NET::KeepAbove) +    if ( mask & NET::KeepAbove)          m_client->setKeepAbove( (state & NET::KeepAbove) != 0 ); -    if ( tqmask & NET::KeepBelow) +    if ( mask & NET::KeepBelow)          m_client->setKeepBelow( (state & NET::KeepBelow) != 0 ); -    if( tqmask & NET::SkipTaskbar ) +    if( mask & NET::SkipTaskbar )          m_client->setSkipTaskbar( ( state & NET::SkipTaskbar ) != 0, true ); -    if( tqmask & NET::SkipPager ) +    if( mask & NET::SkipPager )          m_client->setSkipPager( ( state & NET::SkipPager ) != 0 ); -    if( tqmask & NET::DemandsAttention ) +    if( mask & NET::DemandsAttention )          m_client->demandAttention(( state & NET::DemandsAttention ) != 0 ); -    if( tqmask & NET::Modal ) +    if( mask & NET::Modal )          m_client->setModal( ( state & NET::Modal ) != 0 );      // unsetting fullscreen first, setting it last (because e.g. maximize works only for !isFullScreen() ) -    if(( tqmask & NET::FullScreen ) != 0 && ( state & NET::FullScreen ) != 0 ) +    if(( mask & NET::FullScreen ) != 0 && ( state & NET::FullScreen ) != 0 )          m_client->setFullScreen( true, false );      } @@ -625,9 +625,9 @@ bool Client::windowEvent( XEvent* e )          default:              if( e->xany.window == window())              { -            if( e->type == Shape::tqshapeEvent() ) +            if( e->type == Shape::shapeEvent() )                  { -                is_tqshape = Shape::hasShape( window()); // workaround for #19644 +                is_shape = Shape::hasShape( window()); // workaround for #19644                  updateShape();                  }              } @@ -925,7 +925,7 @@ void Client::leaveNotifyEvent( XCrossingEvent* e )              mode = PositionCenter;              setCursor( arrowCursor );              } -        bool lostMouse = !rect().tqcontains( TQPoint( e->x, e->y ) ); +        bool lostMouse = !rect().contains( TQPoint( e->x, e->y ) );          // 'lostMouse' wouldn't work with e.g. B2 or Keramik, which have non-rectangular decorations          // (i.e. the LeaveNotify event comes before leaving the rect and no LeaveNotify event          // comes after leaving the rect) - so lets check if the pointer is really outside the window @@ -1083,7 +1083,7 @@ bool Client::eventFilter( TQObject* o, TQEvent* e )          if (e->type() == TQEvent::MouseButtonRelease)              {              int buttonMask, buttonPressed, x, y, x_root, y_root; -            unsigned int tqmask; +            unsigned int mask;              TQMouseEvent *qe = (TQMouseEvent *)e;              Window inner_window, parent_window, pointer_window, root_window;              XButtonEvent xe; @@ -1109,7 +1109,7 @@ bool Client::eventFilter( TQObject* o, TQEvent* e )              // simulated events              root_window = qt_xrootwin();              XQueryPointer(qt_xdisplay(), root_window, &root_window, -                    &pointer_window, &x_root, &y_root, &x, &y, &tqmask); +                    &pointer_window, &x_root, &y_root, &x, &y, &mask);              if (pointer_window != None)                  { @@ -1119,7 +1119,7 @@ bool Client::eventFilter( TQObject* o, TQEvent* e )                  // which causes KWin to refocus windows properly                  parent_window = pointer_window;                  XQueryPointer(qt_xdisplay(), parent_window, &root_window, -                        &pointer_window, &x_root, &y_root, &x, &y, &tqmask); +                        &pointer_window, &x_root, &y_root, &x, &y, &mask);                  inner_window = pointer_window;                  while (pointer_window != None) @@ -1130,7 +1130,7 @@ bool Client::eventFilter( TQObject* o, TQEvent* e )                      // found the child that will receive the simulated event                      parent_window = pointer_window;                      XQueryPointer(qt_xdisplay(), parent_window, &root_window, -                            &pointer_window, &x_root, &y_root, &x, &y, &tqmask); +                            &pointer_window, &x_root, &y_root, &x, &y, &mask);                      }                  pointer_window = parent_window;                  } @@ -1190,7 +1190,7 @@ bool Client::eventFilter( TQObject* o, TQEvent* e )          else if (e->type() == TQEvent::Wheel)              {              int x, y, x_root, y_root; -            unsigned int buttonMask, buttonPressed, tqmask; +            unsigned int buttonMask, buttonPressed, mask;              TQWheelEvent *wheelEvent = (TQWheelEvent *)e;              Window inner_window, parent_window, pointer_window,                  root_window; @@ -1207,7 +1207,7 @@ bool Client::eventFilter( TQObject* o, TQEvent* e )              // simulated events              root_window = qt_xrootwin();              XQueryPointer(qt_xdisplay(), root_window, &root_window, -                    &pointer_window, &x_root, &y_root, &x, &y, &tqmask); +                    &pointer_window, &x_root, &y_root, &x, &y, &mask);              if (pointer_window != None)                  { @@ -1217,7 +1217,7 @@ bool Client::eventFilter( TQObject* o, TQEvent* e )                  // which causes KWin to refocus windows properly                  parent_window = pointer_window;                  XQueryPointer(qt_xdisplay(), parent_window, &root_window, -                        &pointer_window, &x_root, &y_root, &x, &y, &tqmask); +                        &pointer_window, &x_root, &y_root, &x, &y, &mask);                  inner_window = pointer_window;                  while (pointer_window != None) @@ -1228,7 +1228,7 @@ bool Client::eventFilter( TQObject* o, TQEvent* e )                      // found the child that will receive the simulated event                      parent_window = pointer_window;                      XQueryPointer(qt_xdisplay(), parent_window, &root_window, -                            &pointer_window, &x_root, &y_root, &x, &y, &tqmask); +                            &pointer_window, &x_root, &y_root, &x, &y, &mask);                      }                  pointer_window = parent_window;                  } @@ -1615,7 +1615,7 @@ void Client::focusInEvent( XFocusInEvent* e )  // from it to its transient, the fullscreen would be kept in the Active layer  // at the beginning and at the end, but not in the middle, when the active  // client would be temporarily none (see Client::belongToLayer() ). -// Therefore, the events queue is checked, whether it tqcontains the matching +// Therefore, the events queue is checked, whether it contains the matching  // FocusIn event, and if yes, deactivation of the previous client will  // be skipped, as activation of the new one will automatically deactivate  // previously active client. @@ -1711,13 +1711,13 @@ void Client::NETMoveResize( int x_root, int y_root, NET::Direction direction )          }      else if( direction == NET::KeyboardMove )          { // ignore mouse coordinates given in the message, mouse position is used by the moving algorithm -        TQCursor::setPos( tqgeometry().center() ); -        performMouseCommand( Options::MouseUnrestrictedMove, tqgeometry().center()); +        TQCursor::setPos( geometry().center() ); +        performMouseCommand( Options::MouseUnrestrictedMove, geometry().center());          }      else if( direction == NET::KeyboardSize )          { // ignore mouse coordinates given in the message, mouse position is used by the resizing algorithm -        TQCursor::setPos( tqgeometry().bottomRight()); -        performMouseCommand( Options::MouseUnrestrictedResize, tqgeometry().bottomRight()); +        TQCursor::setPos( geometry().bottomRight()); +        performMouseCommand( Options::MouseUnrestrictedResize, geometry().bottomRight());          }      } | 
