krazy fixes, mostly include guards and copyright tags
svn path=/trunk/KDE/kdelibs/; revision=1066779
This commit is contained in:
parent
4c1f9b51d3
commit
6e9943e36c
@ -25,13 +25,14 @@
|
||||
#ifndef PLASMA_ANIMATION_H
|
||||
#define PLASMA_ANIMATION_H
|
||||
|
||||
#include <QGraphicsWidget>
|
||||
#include <QObject>
|
||||
#include <QPropertyAnimation>
|
||||
#include <QAbstractAnimation>
|
||||
#include <QtGui/QGraphicsWidget>
|
||||
#include <QtCore/QObject>
|
||||
#include <QtCore/QPropertyAnimation>
|
||||
#include <QtCore/QAbstractAnimation>
|
||||
#include <QtCore/QEasingCurve>
|
||||
|
||||
#include <plasma/plasma_export.h>
|
||||
#include <plasma/plasma.h>
|
||||
#include <QEasingCurve>
|
||||
|
||||
namespace Plasma
|
||||
{
|
||||
|
@ -21,8 +21,8 @@
|
||||
* @file This file contains the definition for the Fade effect.
|
||||
*/
|
||||
|
||||
#ifndef PLASMA_ANIMATIONS_FADE_H
|
||||
#define PLASMA_ANIMATIONS_FADE_H
|
||||
#ifndef PLASMA_ANIMATIONS_FADE_P_H
|
||||
#define PLASMA_ANIMATIONS_FADE_P_H
|
||||
|
||||
#include <plasma/animations/animation.h>
|
||||
#include <plasma/plasma_export.h>
|
||||
@ -104,4 +104,4 @@ private:
|
||||
|
||||
}
|
||||
|
||||
#endif
|
||||
#endif // PLASMA_ANIMATIONS_FADE_P_H
|
||||
|
@ -21,8 +21,8 @@
|
||||
* @file This file contains the definition for the Geometry effect.
|
||||
*/
|
||||
|
||||
#ifndef PLASMA_ANIMATIONS_GEO_H
|
||||
#define PLASMA_ANIMATIONS_GEO_H
|
||||
#ifndef PLASMA_ANIMATIONS_GEOMETRY_P_H
|
||||
#define PLASMA_ANIMATIONS_GEOMETRY_P_H
|
||||
|
||||
#include <plasma/animations/animation.h>
|
||||
#include <plasma/plasma_export.h>
|
||||
@ -66,7 +66,7 @@ public:
|
||||
void setStartGeometry(const QRectF &geometry);
|
||||
|
||||
/**
|
||||
* Acess the final geometry of animated widget.
|
||||
* Access the final geometry of animated widget.
|
||||
*
|
||||
* \todo: check if it was set and case negative, handle the error.
|
||||
* @return Target geometry.
|
||||
@ -91,6 +91,6 @@ private:
|
||||
QRectF m_targetGeometry;
|
||||
};
|
||||
|
||||
}
|
||||
} // PLASMA_ANIMATIONS_GEOMETRY_P_H
|
||||
|
||||
#endif
|
||||
|
@ -21,8 +21,8 @@
|
||||
* @file This file contains the definition for the Grow effect.
|
||||
*/
|
||||
|
||||
#ifndef PLASMA_ANIMATIONS_GROW_H
|
||||
#define PLASMA_ANIMATIONS_GROW_H
|
||||
#ifndef PLASMA_ANIMATIONS_GROW_P_H
|
||||
#define PLASMA_ANIMATIONS_GROW_P_H
|
||||
|
||||
#include <plasma/animations/animation.h>
|
||||
#include <plasma/plasma_export.h>
|
||||
@ -85,4 +85,4 @@ private:
|
||||
|
||||
}
|
||||
|
||||
#endif
|
||||
#endif // PLASMA_ANIMATIONS_GROW_P_H
|
||||
|
@ -20,8 +20,8 @@
|
||||
* @file This file contains the definition for the Pulse effect.
|
||||
*/
|
||||
|
||||
#ifndef PLASMA_ANIMATIONS_PULSE_H
|
||||
#define PLASMA_ANIMATIONS_PULSE_H
|
||||
#ifndef PLASMA_ANIMATIONS_PULSER_P_H
|
||||
#define PLASMA_ANIMATIONS_PULSER_P_H
|
||||
|
||||
#include <plasma/animations/animation.h>
|
||||
#include <plasma/plasma_export.h>
|
||||
@ -90,7 +90,7 @@ private:
|
||||
|
||||
}
|
||||
|
||||
#endif
|
||||
#endif // PLASMA_ANIMATIONS_PULSER_P_H
|
||||
|
||||
|
||||
|
||||
|
@ -1,24 +1,21 @@
|
||||
////////////////////////////////////////////////////////////////////////
|
||||
// rotation.cpp //
|
||||
// //
|
||||
// Copyright(C) 2009 Igor Trindade Oliveira <igor.oliveira@indt.org.br>//
|
||||
// Copyright(C) 2009 Adenilson Cavalcanti <adenilson.silva@idnt.org.br>//
|
||||
// //
|
||||
// This library is free software; you can redistribute it and/or //
|
||||
// modify it under the terms of the GNU Lesser General Public //
|
||||
// License as published by the Free Software Foundation; either //
|
||||
// version 2.1 of the License, or (at your option) any later version. //
|
||||
// //
|
||||
// This library is distributed in the hope that it will be useful, //
|
||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of //
|
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU //
|
||||
// Lesser General Public License for more details. //
|
||||
// //
|
||||
// You should have received a copy of the GNU Lesser General Public //
|
||||
// License along with this library; if not, write to the Free Software //
|
||||
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA //
|
||||
// 02110-1301 USA //
|
||||
/////////////////////////////////////////////////////////////////////////
|
||||
/*
|
||||
Copyright (C) 2009 Igor Trindade Oliveira <igor.oliveira@indt.org.br>
|
||||
Copyright (C) 2009 Adenilson Cavalcanti <adenilson.silva@idnt.org.br>
|
||||
|
||||
This library is free software; you can redistribute it and/or
|
||||
modify it under the terms of the GNU Lesser General Public
|
||||
License as published by the Free Software Foundation; either
|
||||
version 2.1 of the License, or (at your option) any later version.
|
||||
|
||||
This library is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
Lesser General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Lesser General Public
|
||||
License along with this library. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#include "rotation_p.h"
|
||||
|
||||
#include <QGraphicsRotation>
|
||||
|
@ -1,24 +1,21 @@
|
||||
/***********************************************************************/
|
||||
/* rotation.h */
|
||||
/* */
|
||||
/* Copyright(C) 2009 Igor Trindade Oliveira <igor.oliveira@indt.org.br>*/
|
||||
/* Copyright(C) 2009 Adenilson Cavalcanti <adenilson.silva@idnt.org.br>*/
|
||||
/* */
|
||||
/* This library is free software; you can redistribute it and/or */
|
||||
/* modify it under the terms of the GNU Lesser General Public */
|
||||
/* License as published by the Free Software Foundation; either */
|
||||
/* version 2.1 of the License, or (at your option) any later version. */
|
||||
/* */
|
||||
/* This library is distributed in the hope that it will be useful, */
|
||||
/* but WITHOUT ANY WARRANTY; without even the implied warranty of */
|
||||
/* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU */
|
||||
/* Lesser General Public License for more details. */
|
||||
/* */
|
||||
/* You should have received a copy of the GNU Lesser General Public */
|
||||
/* License along with this library; if not, write to the Free Software */
|
||||
/* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA */
|
||||
/* 02110-1301 USA */
|
||||
/***********************************************************************/
|
||||
/*
|
||||
Copyright (C) 2009 Igor Trindade Oliveira <igor.oliveira@indt.org.br>
|
||||
Copyright (C) 2009 Adenilson Cavalcanti <adenilson.silva@idnt.org.br>
|
||||
|
||||
This library is free software; you can redistribute it and/or
|
||||
modify it under the terms of the GNU Lesser General Public
|
||||
License as published by the Free Software Foundation; either
|
||||
version 2.1 of the License, or (at your option) any later version.
|
||||
|
||||
This library is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
Lesser General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Lesser General Public
|
||||
License along with this library. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
/**
|
||||
* @file This file contains the definition for the 2D Rotation effect.
|
||||
*/
|
||||
|
@ -1,23 +1,19 @@
|
||||
/***********************************************************************/
|
||||
/* rotationstacked.h */
|
||||
/* */
|
||||
/* Copyright(C) 2009 Igor Trindade Oliveira <igor.oliveira@indt.org.br>*/
|
||||
/* */
|
||||
/* This library is free software; you can redistribute it and/or */
|
||||
/* modify it under the terms of the GNU Lesser General Public */
|
||||
/* License as published by the Free Software Foundation; either */
|
||||
/* version 2.1 of the License, or (at your option) any later version. */
|
||||
/* */
|
||||
/* This library is distributed in the hope that it will be useful, */
|
||||
/* but WITHOUT ANY WARRANTY; without even the implied warranty of */
|
||||
/* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU */
|
||||
/* Lesser General Public License for more details. */
|
||||
/* */
|
||||
/* You should have received a copy of the GNU Lesser General Public */
|
||||
/* License along with this library; if not, write to the Free Software */
|
||||
/* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA */
|
||||
/* 02110-1301 USA */
|
||||
/***********************************************************************/
|
||||
/*
|
||||
Copyright (C) 2009 Igor Trindade Oliveira <igor.oliveira@indt.org.br>
|
||||
|
||||
This library is free software; you can redistribute it and/or
|
||||
modify it under the terms of the GNU Lesser General Public
|
||||
License as published by the Free Software Foundation; either
|
||||
version 2.1 of the License, or (at your option) any later version.
|
||||
|
||||
This library is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
Lesser General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Lesser General Public
|
||||
License along with this library. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#include "rotationstacked_p.h"
|
||||
#include <QGraphicsRotation>
|
||||
|
@ -1,30 +1,26 @@
|
||||
/////////////////////////////////////////////////////////////////////////
|
||||
// rotationstacked.h //
|
||||
// //
|
||||
// Copyright(C) 2009 Igor Trindade Oliveira <igor.oliveira@indt.org.br>//
|
||||
// //
|
||||
// This library is free software; you can redistribute it and/or //
|
||||
// modify it under the terms of the GNU Lesser General Public //
|
||||
// License as published by the Free Software Foundation; either //
|
||||
// version 2.1 of the License, or (at your option) any later version. //
|
||||
// //
|
||||
// This library is distributed in the hope that it will be useful, //
|
||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of //
|
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU //
|
||||
// Lesser General Public License for more details. //
|
||||
// //
|
||||
// You should have received a copy of the GNU Lesser General Public //
|
||||
// License along with this library; if not, write to the Free Software //
|
||||
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA //
|
||||
// 02110-1301 USA //
|
||||
/////////////////////////////////////////////////////////////////////////
|
||||
/*
|
||||
Copyright (C) 2009 Igor Trindade Oliveira <igor.oliveira@indt.org.br>
|
||||
|
||||
This library is free software; you can redistribute it and/or
|
||||
modify it under the terms of the GNU Lesser General Public
|
||||
License as published by the Free Software Foundation; either
|
||||
version 2.1 of the License, or (at your option) any later version.
|
||||
|
||||
This library is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
Lesser General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Lesser General Public
|
||||
License along with this library. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
/**
|
||||
* @file This file contains the definition for the StackedRotationAnimation.
|
||||
*/
|
||||
|
||||
#ifndef PLASMA_ROTATIONSTACKED_H
|
||||
#define PLASMA_ROTATIONSTACKED_H
|
||||
#ifndef PLASMA_ROTATIONSTACKED_P_H
|
||||
#define PLASMA_ROTATIONSTACKED_P_H
|
||||
|
||||
#include <plasma/animations/animation.h>
|
||||
#include <plasma/plasma_export.h>
|
||||
@ -129,4 +125,4 @@ private:
|
||||
};
|
||||
} // Plasma
|
||||
|
||||
#endif
|
||||
#endif // PLASMA_ROTATIONSTACKED_P_H
|
||||
|
@ -21,8 +21,8 @@
|
||||
* @file This file contains the definition for the Slide effect.
|
||||
*/
|
||||
|
||||
#ifndef PLASMA_ANIMATIONS_SLIDE_H
|
||||
#define PLASMA_ANIMATIONS_SLIDE_H
|
||||
#ifndef PLASMA_ANIMATIONS_SLIDE_P_H
|
||||
#define PLASMA_ANIMATIONS_SLIDE_P_H
|
||||
|
||||
#include "plasma/animations/animation.h"
|
||||
#include "plasma/plasma_export.h"
|
||||
@ -93,4 +93,4 @@ private:
|
||||
|
||||
}
|
||||
|
||||
#endif
|
||||
#endif // PLASMA_ANIMATIONS_SLIDE_P_H
|
||||
|
@ -1,23 +1,19 @@
|
||||
/***********************************************************************/
|
||||
/* stackedlayout.c */
|
||||
/* */
|
||||
/* Copyright(C) 2009 Igor Trindade Oliveira <igor.oliveira@indt.org.br>*/
|
||||
/* */
|
||||
/* This library is free software; you can redistribute it and/or */
|
||||
/* modify it under the terms of the GNU Lesser General Public */
|
||||
/* License as published by the Free Software Foundation; either */
|
||||
/* version 2.1 of the License, or (at your option) any later version. */
|
||||
/* */
|
||||
/* This library is distributed in the hope that it will be useful, */
|
||||
/* but WITHOUT ANY WARRANTY; without even the implied warranty of */
|
||||
/* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU */
|
||||
/* Lesser General Public License for more details. */
|
||||
/* */
|
||||
/* You should have received a copy of the GNU Lesser General Public */
|
||||
/* License along with this library; if not, write to the Free Software */
|
||||
/* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA */
|
||||
/* 02110-1301 USA */
|
||||
/***********************************************************************/
|
||||
/*
|
||||
Copyright (C) 2009 Igor Trindade Oliveira <igor.oliveira@indt.org.br>
|
||||
|
||||
This library is free software; you can redistribute it and/or
|
||||
modify it under the terms of the GNU Lesser General Public
|
||||
License as published by the Free Software Foundation; either
|
||||
version 2.1 of the License, or (at your option) any later version.
|
||||
|
||||
This library is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
Lesser General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Lesser General Public
|
||||
License along with this library. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#include "stackedlayout.h"
|
||||
|
||||
|
@ -1,23 +1,19 @@
|
||||
////////////////////////////////////////////////////////////////////////
|
||||
// stackedlayout.h //
|
||||
// //
|
||||
// Copyright(C) 2009 Igor Trindade Oliveira <igor.oliveira@indt.org.br>//
|
||||
// //
|
||||
// This library is free software; you can redistribute it and/or //
|
||||
// modify it under the terms of the GNU Lesser General Public //
|
||||
// License as published by the Free Software Foundation; either //
|
||||
// version 2.1 of the License, or (at your option) any later version. //
|
||||
// //
|
||||
// This library is distributed in the hope that it will be useful, //
|
||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of //
|
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU //
|
||||
// Lesser General Public License for more details. //
|
||||
// //
|
||||
// You should have received a copy of the GNU Lesser General Public //
|
||||
// License along with this library; if not, write to the Free Software //
|
||||
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA //
|
||||
// 02110-1301 USA //
|
||||
/////////////////////////////////////////////////////////////////////////
|
||||
/*
|
||||
Copyright (C) 2009 Igor Trindade Oliveira <igor.oliveira@indt.org.br>
|
||||
|
||||
This library is free software; you can redistribute it and/or
|
||||
modify it under the terms of the GNU Lesser General Public
|
||||
License as published by the Free Software Foundation; either
|
||||
version 2.1 of the License, or (at your option) any later version.
|
||||
|
||||
This library is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
Lesser General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Lesser General Public
|
||||
License along with this library. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#ifndef STACKEDLAYOUT_H
|
||||
#define STACKEDLAYOUT_H
|
||||
|
@ -21,8 +21,8 @@
|
||||
* @file This file contains the definition for the Zoom animation.
|
||||
*/
|
||||
|
||||
#ifndef PLASMA_ANIMATIONS_ZOOM_H
|
||||
#define PLASMA_ANIMATIONS_ZOOM_H
|
||||
#ifndef PLASMA_ANIMATIONS_ZOOM_P_H
|
||||
#define PLASMA_ANIMATIONS_ZOOM_P_H
|
||||
|
||||
#include <plasma/animations/animation.h>
|
||||
#include <plasma/plasma_export.h>
|
||||
@ -57,4 +57,4 @@ private:
|
||||
|
||||
}
|
||||
|
||||
#endif
|
||||
#endif // PLASMA_ANIMATIONS_ZOOM_P_H
|
||||
|
32
animator.cpp
32
animator.cpp
@ -1,21 +1,19 @@
|
||||
/*
|
||||
* Copyright(C) 2009 Adenilson Cavalcanti <adenilson.silva@idnt.org.br>*
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Library General Public License as
|
||||
* published by the Free Software Foundation; either version 2, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details
|
||||
*
|
||||
* You should have received a copy of the GNU Library General Public
|
||||
* License along with this program; if not, write to the
|
||||
* Free Software Foundation, Inc.,
|
||||
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||||
*/
|
||||
Copyright (C) 2009 Adenilson Cavalcanti <adenilson.silva@idnt.org.br>
|
||||
|
||||
This library is free software; you can redistribute it and/or
|
||||
modify it under the terms of the GNU Lesser General Public
|
||||
License as published by the Free Software Foundation; either
|
||||
version 2.1 of the License, or (at your option) any later version.
|
||||
|
||||
This library is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
Lesser General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Lesser General Public
|
||||
License along with this library. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#include "animator.h"
|
||||
#include "private/animator_p.h"
|
||||
|
@ -17,8 +17,8 @@
|
||||
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||||
*/
|
||||
|
||||
#ifndef PLASMA_CONTEXTACTION_H
|
||||
#define PLASMA_CONTEXTACTION_H
|
||||
#ifndef PLASMA_CONTAINMENTACTIONS_H
|
||||
#define PLASMA_CONTAINMENTACTIONS_H
|
||||
|
||||
#include <QList>
|
||||
|
||||
@ -256,4 +256,4 @@ K_PLUGIN_FACTORY(factory, registerPlugin<classname>();) \
|
||||
K_EXPORT_PLUGIN(factory("plasma_containmentactions_" #libname)) \
|
||||
K_EXPORT_PLUGIN_VERSION(PLASMA_VERSION)
|
||||
|
||||
#endif // multiple inclusion guard
|
||||
#endif // PLASMA_CONTAINMENTACTIONS_H
|
||||
|
@ -1,25 +1,22 @@
|
||||
/***********************************************************************/
|
||||
/* animationprivate.h */
|
||||
/* */
|
||||
/* Copyright(C) 2009 Adenilson Cavalcanti <adenilson.silva@idnt.org.br>*/
|
||||
/* */
|
||||
/* This library is free software; you can redistribute it and/or */
|
||||
/* modify it under the terms of the GNU Lesser General Public */
|
||||
/* License as published by the Free Software Foundation; either */
|
||||
/* version 2.1 of the License, or (at your option) any later version. */
|
||||
/* */
|
||||
/* This library is distributed in the hope that it will be useful, */
|
||||
/* but WITHOUT ANY WARRANTY; without even the implied warranty of */
|
||||
/* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU */
|
||||
/* Lesser General Public License for more details. */
|
||||
/* */
|
||||
/* You should have received a copy of the GNU Lesser General Public */
|
||||
/* License along with this library; if not, write to the Free Software */
|
||||
/* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA */
|
||||
/* 02110-1301 USA */
|
||||
/***********************************************************************/
|
||||
#ifndef PLASMA_ANIMATIONPRIVATE_H
|
||||
#define PLASMA_ANIMATIONPRIVATE_H
|
||||
/*
|
||||
Copyright (C) 2009 Adenilson Cavalcanti <adenilson.silva@idnt.org.br>
|
||||
|
||||
This library is free software; you can redistribute it and/or
|
||||
modify it under the terms of the GNU Lesser General Public
|
||||
License as published by the Free Software Foundation; either
|
||||
version 2.1 of the License, or (at your option) any later version.
|
||||
|
||||
This library is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
Lesser General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Lesser General Public
|
||||
License along with this library. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#ifndef PLASMA_ABSTRACTANIMATIONPRIVATE_P_H
|
||||
#define PLASMA_ABSTRACTANIMATIONPRIVATE_P_H
|
||||
|
||||
#include <QEasingCurve>
|
||||
#include <QWeakPointer>
|
||||
@ -69,4 +66,4 @@ public:
|
||||
|
||||
}
|
||||
|
||||
#endif
|
||||
#endif // PLASMA_ABSTRACTANIMATIONPRIVATE_P_H
|
||||
|
@ -1,25 +1,22 @@
|
||||
/***********************************************************************/
|
||||
/* animationprivate.h */
|
||||
/* */
|
||||
/* Copyright(C) 2009 Adenilson Cavalcanti <adenilson.silva@idnt.org.br>*/
|
||||
/* */
|
||||
/* This library is free software; you can redistribute it and/or */
|
||||
/* modify it under the terms of the GNU Lesser General Public */
|
||||
/* License as published by the Free Software Foundation; either */
|
||||
/* version 2.1 of the License, or (at your option) any later version. */
|
||||
/* */
|
||||
/* This library is distributed in the hope that it will be useful, */
|
||||
/* but WITHOUT ANY WARRANTY; without even the implied warranty of */
|
||||
/* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU */
|
||||
/* Lesser General Public License for more details. */
|
||||
/* */
|
||||
/* You should have received a copy of the GNU Lesser General Public */
|
||||
/* License along with this library; if not, write to the Free Software */
|
||||
/* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA */
|
||||
/* 02110-1301 USA */
|
||||
/***********************************************************************/
|
||||
#ifndef PLASMA_ANIMATIONPRIVATE_H
|
||||
#define PLASMA_ANIMATIONPRIVATE_H
|
||||
/*
|
||||
Copyright (C) 2009 Adenilson Cavalcanti <adenilson.silva@idnt.org.br>
|
||||
|
||||
This library is free software; you can redistribute it and/or
|
||||
modify it under the terms of the GNU Lesser General Public
|
||||
License as published by the Free Software Foundation; either
|
||||
version 2.1 of the License, or (at your option) any later version.
|
||||
|
||||
This library is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
Lesser General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Lesser General Public
|
||||
License along with this library. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#ifndef PLASMA_ANIMATIONPRIVATE_P_H
|
||||
#define PLASMA_ANIMATIONPRIVATE_P_H
|
||||
|
||||
#include <QEasingCurve>
|
||||
#include <QWeakPointer>
|
||||
@ -51,4 +48,4 @@ public:
|
||||
|
||||
}
|
||||
|
||||
#endif
|
||||
#endif // PLASMA_ANIMATIONPRIVATE_P_H
|
||||
|
@ -17,8 +17,8 @@
|
||||
* Boston, MA 02110-1301 USA
|
||||
*/
|
||||
|
||||
#ifndef AUTHORIZATIONMANAGER_P_H
|
||||
#define AUTHORIZATIONMANAGER_P_H
|
||||
#ifndef PLASMA_AUTHORIZATIONMANAGER_P_H
|
||||
#define PLASMA_AUTHORIZATIONMANAGER_P_H
|
||||
|
||||
#include "config-plasma.h"
|
||||
|
||||
@ -90,4 +90,4 @@ class AuthorizationManagerPrivate
|
||||
|
||||
}
|
||||
|
||||
#endif
|
||||
#endif // PLASMA_AUTHORIZATIONMANAGER_P_H
|
||||
|
@ -17,8 +17,8 @@
|
||||
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||||
*/
|
||||
|
||||
#ifndef PLASMA_CONTEXTACTIONPRIVATE_H
|
||||
#define PLASMA_CONTEXTACTIONPRIVATE_H
|
||||
#ifndef PLASMA_CONTAINMENTACTIONSPRIVATE_H
|
||||
#define PLASMA_CONTAINMENTACTIONSPRIVATE_H
|
||||
|
||||
#include "plasma/private/dataengineconsumer_p.h"
|
||||
|
||||
@ -47,5 +47,5 @@ public:
|
||||
};
|
||||
|
||||
} // namespace Plasma
|
||||
#endif
|
||||
#endif //PLASMA_CONTAINMENTACTIONSPRIVATE_H
|
||||
|
||||
|
@ -49,7 +49,7 @@ void ServiceMonitor::slotJobFinished(Plasma::ServiceJob *job)
|
||||
QPair<QString, QString> pair(location, engineName);
|
||||
kDebug() << "pair = " << pair;
|
||||
if (!m_consumer->m_remoteEngines.contains(pair)) {
|
||||
kDebug() << "engine doesnt exist yet!";
|
||||
kDebug() << "engine does not exist yet!";
|
||||
} else {
|
||||
KUrl engineLocation(location);
|
||||
engineLocation.setFileName(job->result().toString());
|
||||
|
@ -16,8 +16,8 @@
|
||||
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||||
*/
|
||||
|
||||
#ifndef PUBLICKEYSERVICE_H
|
||||
#define PUBLICKEYSERVICE_H
|
||||
#ifndef PLASMA_DATAENGINESERVICE_P_H
|
||||
#define PLASMA_DATAENGINESERVICE_P_H
|
||||
|
||||
#include <QStringList>
|
||||
|
||||
@ -57,4 +57,4 @@ class DataEngineService : public Plasma::Service
|
||||
|
||||
}
|
||||
|
||||
#endif
|
||||
#endif // PLASMA_DATAENGINESERVICE_P_H
|
||||
|
@ -18,8 +18,8 @@
|
||||
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||||
*/
|
||||
|
||||
#ifndef PLASMA_TOOLBOX_P_H
|
||||
#define PLASMA_TOOLBOX_P_H
|
||||
#ifndef PLASMA_INTERNALTOOLBOX_P_H
|
||||
#define PLASMA_INTERNALTOOLBOX_P_H
|
||||
|
||||
#include <QGraphicsWidget>
|
||||
|
||||
@ -116,5 +116,6 @@ private:
|
||||
};
|
||||
|
||||
} // Plasma namespace
|
||||
#endif // multiple inclusion guard
|
||||
|
||||
#endif // PLASMA_INTERNALTOOLBOX_P_H
|
||||
|
||||
|
@ -1,24 +1,23 @@
|
||||
////////////////////////////////////////////////////////////////////////
|
||||
// kineticscroll.cpp //
|
||||
// //
|
||||
// Copyright(C) 2009 Igor Trindade Oliveira <igor.oliveira@indt.org.br>//
|
||||
// Copyright(C) 2009 Adenilson Cavalcanti <adenilson.silva@idnt.org.br>//
|
||||
// //
|
||||
// This library is free software; you can redistribute it and/or //
|
||||
// modify it under the terms of the GNU Lesser General Public //
|
||||
// License as published by the Free Software Foundation; either //
|
||||
// version 2.1 of the License, or (at your option) any later version. //
|
||||
// //
|
||||
// This library is distributed in the hope that it will be useful, //
|
||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of //
|
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU //
|
||||
// Lesser General Public License for more details. //
|
||||
// //
|
||||
// You should have received a copy of the GNU Lesser General Public //
|
||||
// License along with this library; if not, write to the Free Software //
|
||||
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA //
|
||||
// 02110-1301 USA //
|
||||
/////////////////////////////////////////////////////////////////////////
|
||||
/*
|
||||
Copyright (C) 2009 Igor Trindade Oliveira <igor.oliveira@indt.org.br>
|
||||
Copyright (C) 2009 Adenilson Cavalcanti <adenilson.silva@idnt.org.br>
|
||||
|
||||
This library is free software; you can redistribute it and/or
|
||||
modify it under the terms of the GNU Lesser General Public
|
||||
License as published by the Free Software Foundation; either
|
||||
version 2.1 of the License, or (at your option) any later version.
|
||||
|
||||
This library is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
Lesser General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Lesser General Public
|
||||
License along with this library. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#include "kineticscroll_p.h"
|
||||
|
||||
#include <QtCore/qglobal.h>
|
||||
#include <QtCore/qmetatype.h>
|
||||
#include <QGraphicsScene>
|
||||
@ -32,8 +31,6 @@
|
||||
|
||||
#include <kdebug.h>
|
||||
|
||||
#include "kineticscroll_p.h"
|
||||
|
||||
/* TODO:
|
||||
* - clean up the code(remove duplicated code, constify)
|
||||
* - port to Plasma::Animator
|
||||
|
@ -1,24 +1,21 @@
|
||||
/***********************************************************************/
|
||||
/* kineticscroll.h */
|
||||
/* */
|
||||
/* Copyright(C) 2009 Igor Trindade Oliveira <igor.oliveira@indt.org.br>*/
|
||||
/* Copyright(C) 2009 Adenilson Cavalcanti <adenilson.silva@idnt.org.br>*/
|
||||
/* */
|
||||
/* This library is free software; you can redistribute it and/or */
|
||||
/* modify it under the terms of the GNU Lesser General Public */
|
||||
/* License as published by the Free Software Foundation; either */
|
||||
/* version 2.1 of the License, or (at your option) any later version. */
|
||||
/* */
|
||||
/* This library is distributed in the hope that it will be useful, */
|
||||
/* but WITHOUT ANY WARRANTY; without even the implied warranty of */
|
||||
/* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU */
|
||||
/* Lesser General Public License for more details. */
|
||||
/* */
|
||||
/* You should have received a copy of the GNU Lesser General Public */
|
||||
/* License along with this library; if not, write to the Free Software */
|
||||
/* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA */
|
||||
/* 02110-1301 USA */
|
||||
/***********************************************************************/
|
||||
/*
|
||||
Copyright (C) 2009 Igor Trindade Oliveira <igor.oliveira@indt.org.br>
|
||||
Copyright (C) 2009 Adenilson Cavalcanti <adenilson.silva@idnt.org.br>
|
||||
|
||||
This library is free software; you can redistribute it and/or
|
||||
modify it under the terms of the GNU Lesser General Public
|
||||
License as published by the Free Software Foundation; either
|
||||
version 2.1 of the License, or (at your option) any later version.
|
||||
|
||||
This library is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
Lesser General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Lesser General Public
|
||||
License along with this library. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#ifndef PLASMA_KINETICSCROLLING_H
|
||||
#define PLASMA_KINETICSCROLLING_H
|
||||
|
||||
|
@ -17,8 +17,8 @@
|
||||
* Boston, MA 02110-1301 USA
|
||||
*/
|
||||
|
||||
#ifndef PLASMA_PINPAIRINGAUTHORIZATION_H
|
||||
#define PLASMA_PINPAIRINGAUTHORIZATION_H
|
||||
#ifndef PLASMA_PINPAIRINGAUTHORIZATION_P_H
|
||||
#define PLASMA_PINPAIRINGAUTHORIZATION_P_H
|
||||
|
||||
#include <QtCore/QObject>
|
||||
|
||||
@ -47,5 +47,5 @@ class PLASMA_EXPORT PinPairingAuthorization : public AuthorizationInterface
|
||||
};
|
||||
} // Plasma namespace
|
||||
|
||||
#endif
|
||||
#endif // PLASMA_PINPAIRINGAUTHORIZATION_P_H
|
||||
|
||||
|
@ -28,7 +28,6 @@
|
||||
#include <plasma/packagemetadata.h>
|
||||
#include <plasma/service.h>
|
||||
#include <plasma/servicejob.h>
|
||||
#include <plasma/packagemetadata.h>
|
||||
|
||||
#include <kdebug.h>
|
||||
#include <ktemporaryfile.h>
|
||||
|
@ -1,22 +1,19 @@
|
||||
/*********************************************************************/
|
||||
/* */
|
||||
/* Copyright(C)2009 Adenilson Cavalcanti adenilson.silva@idnt.org.br */
|
||||
/* */
|
||||
/* This program is free software; you can redistribute it and/or */
|
||||
/* modify it under the terms of the GNU General Public License */
|
||||
/* as published by the Free Software Foundation; either version 2 */
|
||||
/* of the License, or (at your option) any later version. */
|
||||
/* */
|
||||
/* This program is distributed in the hope that it will be useful, */
|
||||
/* but WITHOUT ANY WARRANTY; without even the implied warranty of */
|
||||
/* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the */
|
||||
/* GNU General Public License for more details. */
|
||||
/* */
|
||||
/* You should have received a copy of the GNU General Public License */
|
||||
/* along with this program; if not, write to the Free Software */
|
||||
/* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA */
|
||||
/* 02110-1301, USA. */
|
||||
/*********************************************************************/
|
||||
/*
|
||||
Copyright (C) 2009 Adenilson Cavalcanti <adenilson.silva@idnt.org.br>
|
||||
|
||||
This library is free software; you can redistribute it and/or
|
||||
modify it under the terms of the GNU Lesser General Public
|
||||
License as published by the Free Software Foundation; either
|
||||
version 2.1 of the License, or (at your option) any later version.
|
||||
|
||||
This library is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
Lesser General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Lesser General Public
|
||||
License along with this library. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#include "pulsershadow_p.h"
|
||||
#include <QPainter>
|
||||
|
@ -1,25 +1,22 @@
|
||||
/*********************************************************************/
|
||||
/* */
|
||||
/* Copyright(C)2009 Adenilson Cavalcanti adenilson.silva@idnt.org.br */
|
||||
/* */
|
||||
/* This program is free software; you can redistribute it and/or */
|
||||
/* modify it under the terms of the GNU General Public License */
|
||||
/* as published by the Free Software Foundation; either version 2 */
|
||||
/* of the License, or (at your option) any later version. */
|
||||
/* */
|
||||
/* This program is distributed in the hope that it will be useful, */
|
||||
/* but WITHOUT ANY WARRANTY; without even the implied warranty of */
|
||||
/* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the */
|
||||
/* GNU General Public License for more details. */
|
||||
/* */
|
||||
/* You should have received a copy of the GNU General Public License */
|
||||
/* along with this program; if not, write to the Free Software */
|
||||
/* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA */
|
||||
/* 02110-1301, USA. */
|
||||
/*********************************************************************/
|
||||
/*
|
||||
Copyright (C) 2009 Adenilson Cavalcanti <adenilson.silva@idnt.org.br>
|
||||
|
||||
#ifndef PULSERSHADOW_P_H
|
||||
#define PULSERSHADOW_P_H
|
||||
This library is free software; you can redistribute it and/or
|
||||
modify it under the terms of the GNU Lesser General Public
|
||||
License as published by the Free Software Foundation; either
|
||||
version 2.1 of the License, or (at your option) any later version.
|
||||
|
||||
This library is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
Lesser General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Lesser General Public
|
||||
License along with this library. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#ifndef PLASMA_PULSERSHADOW_P_H
|
||||
#define PLASMA_PULSERSHADOW_P_H
|
||||
|
||||
#include <QGraphicsWidget>
|
||||
|
||||
@ -47,4 +44,4 @@ private:
|
||||
|
||||
}
|
||||
|
||||
#endif
|
||||
#endif // PLASMA_PULSERSHADOW_P_H
|
||||
|
@ -16,8 +16,8 @@
|
||||
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||||
*/
|
||||
|
||||
#ifndef PLASMA_REMOTESERVICE_H
|
||||
#define PLASMA_REMOTESERVICE_H
|
||||
#ifndef PLASMA_REMOTESERVICE_P_H
|
||||
#define PLASMA_REMOTESERVICE_P_H
|
||||
|
||||
#include <QtCore/QQueue>
|
||||
#include <QtJolie/Message>
|
||||
@ -83,4 +83,4 @@ class RemoteService : public Plasma::Service
|
||||
|
||||
} //namespace Plasma
|
||||
|
||||
#endif // REMOTESERVICE_H
|
||||
#endif // PLASMA_REMOTESERVICE_P_H
|
||||
|
@ -16,8 +16,8 @@
|
||||
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||||
*/
|
||||
|
||||
#ifndef PLASMA_REMOTESERVICEJOB_H
|
||||
#define PLASMA_REMOTESERVICEJOB_H
|
||||
#ifndef PLASMA_REMOTESERVICEJOB_P_H
|
||||
#define PLASMA_REMOTESERVICEJOB_P_H
|
||||
|
||||
#include <QtCore/QByteArray>
|
||||
#include <kurl.h>
|
||||
@ -67,4 +67,4 @@ class RemoteServiceJob : public Plasma::ServiceJob
|
||||
|
||||
} // namespace Plasma
|
||||
|
||||
#endif //REMOTESERVICEJOB_H
|
||||
#endif // PLASMA_REMOTESERVICEJOB_P_H
|
||||
|
@ -17,7 +17,7 @@
|
||||
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||||
*/
|
||||
|
||||
#include "runnermanager.h"
|
||||
#include "runnerjobs_p.h"
|
||||
|
||||
#include <QTimer>
|
||||
|
||||
@ -26,7 +26,7 @@
|
||||
//#include <Weaver/DebuggingAids.h>
|
||||
#include <Weaver/ThreadWeaver.h>
|
||||
|
||||
#include "runnerjobs_p.h"
|
||||
#include "runnermanager.h"
|
||||
#include "plasma/querymatch.h"
|
||||
|
||||
using ThreadWeaver::Job;
|
||||
|
@ -17,8 +17,8 @@
|
||||
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||||
*/
|
||||
|
||||
#ifndef PLASMA_RUNNERJOBS_H
|
||||
#define PLASMA_RUNNERJOBS_H
|
||||
#ifndef PLASMA_RUNNERJOBS_P_H
|
||||
#define PLASMA_RUNNERJOBS_P_H
|
||||
|
||||
#include <QHash>
|
||||
#include <QMutex>
|
||||
@ -27,6 +27,8 @@
|
||||
#include <Weaver/Job.h>
|
||||
#include <Weaver/QueuePolicy.h>
|
||||
|
||||
#include "abstractrunner.h"
|
||||
|
||||
using ThreadWeaver::Job;
|
||||
|
||||
class QTimer;
|
||||
@ -138,4 +140,4 @@ private:
|
||||
|
||||
}
|
||||
|
||||
#endif
|
||||
#endif // PLASMA_RUNNERJOBS_P_H
|
||||
|
@ -16,8 +16,8 @@
|
||||
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||||
*/
|
||||
|
||||
#ifndef SERVICEPROVIDER_H
|
||||
#define SERVICEPROVIDER_H
|
||||
#ifndef PLASMA_SERVICEPROVIDER_P_H
|
||||
#define PLASMA_SERVICEPROVIDER_P_H
|
||||
|
||||
#include <QtCore/QMap>
|
||||
|
||||
@ -59,11 +59,11 @@ class ServiceProvider : public Jolie::AbstractAdaptor
|
||||
void authorize(const Jolie::Message &message, const QByteArray &validToken);
|
||||
void authorizationSuccess(const Jolie::Message &message);
|
||||
void authorizationFailed(const Jolie::Message &message, const QByteArray &error);
|
||||
|
||||
|
||||
Service *m_service;
|
||||
int m_descriptor;
|
||||
QString m_providerName;
|
||||
|
||||
|
||||
QMap<ServiceJob*, Jolie::Message> m_messageMap;
|
||||
QMap<QString, QByteArray> m_tokens;
|
||||
QMap<QByteArray, int> m_descriptorMap;
|
||||
@ -73,4 +73,4 @@ class ServiceProvider : public Jolie::AbstractAdaptor
|
||||
|
||||
} //namespace Plasma
|
||||
|
||||
#endif //SERVICEPROVIDER_H
|
||||
#endif //PLASMA_SERVICEPROVIDER_P_H
|
||||
|
@ -18,8 +18,8 @@
|
||||
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||||
*/
|
||||
|
||||
#ifndef PLASMA_WALLPAPERRENDERTHREAD_H
|
||||
#define PLASMA_WALLPAPERRENDERTHREAD_H
|
||||
#ifndef PLASMA_WALLPAPERRENDERTHREAD_P_H
|
||||
#define PLASMA_WALLPAPERRENDERTHREAD_P_H
|
||||
|
||||
#include <QColor>
|
||||
#include <QImage>
|
||||
@ -70,4 +70,5 @@ private:
|
||||
};
|
||||
|
||||
} // namespace Plasma
|
||||
#endif // RENDERTHREAD_H
|
||||
|
||||
#endif // PLASMA_WALLPAPERRENDERTHREAD_P_H
|
||||
|
@ -213,7 +213,7 @@ void WindowPreview::mouseMoveEvent(QMouseEvent *event)
|
||||
}
|
||||
|
||||
int i = 0;
|
||||
foreach (QRect rect, m_thumbnailRects) {
|
||||
foreach (const QRect &rect, m_thumbnailRects) {
|
||||
if (rect.contains(event->pos())) {
|
||||
WindowEffects::highlightWindows(effectiveWinId(), QList<WId>()<<effectiveWinId()<<ids[i]);
|
||||
return;
|
||||
|
@ -17,8 +17,8 @@
|
||||
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||||
*/
|
||||
|
||||
#ifndef PLASMA_PLASMOIDACCESSJOB_H
|
||||
#define PLASMA_PLASMOIDACCESSJOB_H
|
||||
#ifndef PLASMA_ACCESSAPPLETJOB_H
|
||||
#define PLASMA_ACCESSAPPLETJOB_H
|
||||
|
||||
#include <kjob.h>
|
||||
|
||||
@ -76,5 +76,5 @@ private:
|
||||
|
||||
} // namespace Plasma
|
||||
|
||||
#endif // multiple inclusion guard
|
||||
#endif // PLASMA_ACCESSAPPLETJOB_H
|
||||
|
||||
|
@ -410,7 +410,7 @@ bool RunnerContext::removeMatches(const QStringList matchIdList)
|
||||
QList<const QueryMatch*> presentMatchList;
|
||||
|
||||
LOCK_FOR_READ(d)
|
||||
foreach(QString matchId, matchIdList) {
|
||||
foreach(const QString &matchId, matchIdList) {
|
||||
const QueryMatch* match = d->matchesById.value(matchId, 0);
|
||||
if (match) {
|
||||
presentMatchList << match;
|
||||
@ -427,7 +427,7 @@ bool RunnerContext::removeMatches(const QStringList matchIdList)
|
||||
foreach(const QueryMatch *match, presentMatchList) {
|
||||
d->matches.removeAll(*match);
|
||||
}
|
||||
foreach(QString matchId, presentMatchIdList) {
|
||||
foreach(const QString &matchId, presentMatchIdList) {
|
||||
d->matchesById.remove(matchId);
|
||||
}
|
||||
UNLOCK(d)
|
||||
|
@ -1065,7 +1065,7 @@ void IconWidget::paint(QPainter *painter, const QStyleOptionGraphicsItem *option
|
||||
!textBoundingRect.isEmpty()) {
|
||||
QRect labelRect = d->labelRectangle(option, icon, d->text).toRect();
|
||||
|
||||
foreach (QRect rect, d->haloRects) {
|
||||
foreach (const QRect &rect, d->haloRects) {
|
||||
Plasma::PaintUtils::drawHalo(painter, rect);
|
||||
}
|
||||
}
|
||||
|
@ -207,7 +207,7 @@ void showWindowThumbnails(WId parent, const QList<WId> &windows, const QList<QRe
|
||||
#endif
|
||||
}
|
||||
|
||||
void presentWindows(WId controler, const QList<WId> &ids)
|
||||
void presentWindows(WId controller, const QList<WId> &ids)
|
||||
{
|
||||
#ifdef Q_WS_X11
|
||||
const int numWindows = ids.count();
|
||||
@ -227,20 +227,20 @@ void presentWindows(WId controler, const QList<WId> &ids)
|
||||
if (!data.isEmpty()) {
|
||||
Display *dpy = QX11Info::display();
|
||||
Atom atom = XInternAtom(dpy, "_KDE_PRESENT_WINDOWS_GROUP", False);
|
||||
XChangeProperty(dpy, controler, atom, atom, 32, PropModeReplace,
|
||||
XChangeProperty(dpy, controller, atom, atom, 32, PropModeReplace,
|
||||
reinterpret_cast<unsigned char *>(data.data()), data.size());
|
||||
}
|
||||
#endif
|
||||
}
|
||||
|
||||
void presentWindows(WId controler, int desktop)
|
||||
void presentWindows(WId controller, int desktop)
|
||||
{
|
||||
#ifdef Q_WS_X11
|
||||
QVarLengthArray<long, 32> data(1);
|
||||
data[0] = desktop;
|
||||
Display *dpy = QX11Info::display();
|
||||
Atom atom = XInternAtom(dpy, "_KDE_PRESENT_WINDOWS_DESKTOP", False);
|
||||
XChangeProperty(dpy, controler, atom, atom, 32, PropModeReplace,
|
||||
XChangeProperty(dpy, controller, atom, atom, 32, PropModeReplace,
|
||||
reinterpret_cast<unsigned char *>(data.data()), data.size());
|
||||
#endif
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user