Source Code (Use browser search to find items of interest.)

Class Index

klipper'MyKApplication (./kdeutils/klipper/mykapp.h:7)

class MyKApplication : public KApplication
{
public:

  MyKApplication() :
    KApplication() { accel = 0L; }
  ~MyKApplication() {}

  void setGlobalKeys( KGlobalAccel *a ) { accel = a; }

private:

  KGlobalAccel *accel;

  inline bool x11EventFilter( XEvent *e )
  {
    if ( accel )
      {
	if ( accel->x11EventFilter( e ) )
	  return true;
      }

    return KApplication::x11EventFilter( e );
  }

};

klipper'MyKApplication::x11EventFilter() (./kdeutils/klipper/mykapp.h:21)

  inline bool x11EventFilter( XEvent *e )
  {
    if ( accel )
      {
	if ( accel->x11EventFilter( e ) )
	  return true;
      }

    return KApplication::x11EventFilter( e );
  }

};