Phase -> Animator
svn path=/trunk/KDE/kdebase/workspace/libs/plasma/; revision=800875
This commit is contained in:
parent
202e01e44d
commit
72db181c7c
@ -19,6 +19,7 @@ set(plasma_LIB_SRCS
|
|||||||
${plasmagik_SRCS}
|
${plasmagik_SRCS}
|
||||||
abstractrunner.cpp
|
abstractrunner.cpp
|
||||||
animationdriver.cpp
|
animationdriver.cpp
|
||||||
|
animator.cpp
|
||||||
applet.cpp
|
applet.cpp
|
||||||
appletbrowser.cpp
|
appletbrowser.cpp
|
||||||
appletbrowser/customdragtreeview.cpp
|
appletbrowser/customdragtreeview.cpp
|
||||||
@ -38,7 +39,6 @@ set(plasma_LIB_SRCS
|
|||||||
#FOR FUTURE
|
#FOR FUTURE
|
||||||
#layouts/borderlayout.cpp
|
#layouts/borderlayout.cpp
|
||||||
packages.cpp
|
packages.cpp
|
||||||
phase.cpp
|
|
||||||
plasma.cpp
|
plasma.cpp
|
||||||
plasma_export.h
|
plasma_export.h
|
||||||
searchmatch.cpp
|
searchmatch.cpp
|
||||||
@ -100,6 +100,7 @@ install(FILES ${plasmagik_HEADERS} DESTINATION ${INCLUDE_INSTALL_DIR}/plasma/)
|
|||||||
set(plasma_LIB_INCLUDES
|
set(plasma_LIB_INCLUDES
|
||||||
abstractrunner.h
|
abstractrunner.h
|
||||||
animationdriver.h
|
animationdriver.h
|
||||||
|
animator.h
|
||||||
applet.h
|
applet.h
|
||||||
appletbrowser.h
|
appletbrowser.h
|
||||||
configxml.h
|
configxml.h
|
||||||
@ -109,7 +110,6 @@ set(plasma_LIB_INCLUDES
|
|||||||
dataengine.h
|
dataengine.h
|
||||||
dataenginemanager.h
|
dataenginemanager.h
|
||||||
dialog.h
|
dialog.h
|
||||||
phase.h
|
|
||||||
plasma.h
|
plasma.h
|
||||||
plasma_export.h
|
plasma_export.h
|
||||||
searchmatch.h
|
searchmatch.h
|
||||||
@ -155,13 +155,13 @@ install(FILES
|
|||||||
install(FILES
|
install(FILES
|
||||||
includes/AbstractRunner
|
includes/AbstractRunner
|
||||||
includes/AnimationDriver
|
includes/AnimationDriver
|
||||||
|
includes/Animator
|
||||||
includes/Applet
|
includes/Applet
|
||||||
includes/AppletBrowser
|
includes/AppletBrowser
|
||||||
includes/ConfigXml
|
includes/ConfigXml
|
||||||
includes/Corona
|
includes/Corona
|
||||||
includes/Containment
|
includes/Containment
|
||||||
includes/Dialog
|
includes/Dialog
|
||||||
includes/Phase
|
|
||||||
includes/Plasma
|
includes/Plasma
|
||||||
includes/Package
|
includes/Package
|
||||||
includes/PackageStructure
|
includes/PackageStructure
|
||||||
|
@ -28,7 +28,7 @@
|
|||||||
#include <kgenericfactory.h>
|
#include <kgenericfactory.h>
|
||||||
|
|
||||||
#include <plasma/plasma_export.h>
|
#include <plasma/plasma_export.h>
|
||||||
#include <plasma/phase.h>
|
#include <plasma/animator.h>
|
||||||
|
|
||||||
class QGraphicsItem;
|
class QGraphicsItem;
|
||||||
|
|
||||||
|
@ -18,7 +18,7 @@
|
|||||||
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "phase.h"
|
#include "animator.h"
|
||||||
|
|
||||||
#include <QGraphicsItem>
|
#include <QGraphicsItem>
|
||||||
|
|
||||||
@ -644,4 +644,4 @@ void Animator::init()
|
|||||||
|
|
||||||
} // namespace Plasma
|
} // namespace Plasma
|
||||||
|
|
||||||
#include <phase.moc>
|
#include <animator.moc>
|
@ -24,7 +24,7 @@
|
|||||||
#include <QtGui/QGraphicsItem>
|
#include <QtGui/QGraphicsItem>
|
||||||
#include <QTimer>
|
#include <QTimer>
|
||||||
|
|
||||||
#include "phase.h"
|
#include "animator.h"
|
||||||
#include "svg.h"
|
#include "svg.h"
|
||||||
|
|
||||||
namespace Plasma
|
namespace Plasma
|
||||||
|
@ -43,7 +43,7 @@
|
|||||||
|
|
||||||
#include "applethandle_p.h"
|
#include "applethandle_p.h"
|
||||||
#include "corona.h"
|
#include "corona.h"
|
||||||
#include "phase.h"
|
#include "animator.h"
|
||||||
#include "desktoptoolbox_p.h"
|
#include "desktoptoolbox_p.h"
|
||||||
#include "paneltoolbox_p.h"
|
#include "paneltoolbox_p.h"
|
||||||
#include "svg.h"
|
#include "svg.h"
|
||||||
|
@ -30,7 +30,7 @@
|
|||||||
#include <kgenericfactory.h>
|
#include <kgenericfactory.h>
|
||||||
|
|
||||||
#include <plasma/applet.h>
|
#include <plasma/applet.h>
|
||||||
#include <plasma/phase.h>
|
#include <plasma/animator.h>
|
||||||
|
|
||||||
#include "widgets/icon.h"
|
#include "widgets/icon.h"
|
||||||
|
|
||||||
|
@ -29,7 +29,7 @@
|
|||||||
|
|
||||||
#include <plasma/toolbox_p.h>
|
#include <plasma/toolbox_p.h>
|
||||||
|
|
||||||
#include "phase.h"
|
#include "animator.h"
|
||||||
|
|
||||||
namespace Plasma
|
namespace Plasma
|
||||||
{
|
{
|
||||||
|
1
includes/Animator
Normal file
1
includes/Animator
Normal file
@ -0,0 +1 @@
|
|||||||
|
#include "../../plasma/animator.h"
|
@ -1 +0,0 @@
|
|||||||
#include "../../plasma/phase.h"
|
|
@ -29,7 +29,7 @@
|
|||||||
|
|
||||||
#include <plasma/toolbox_p.h>
|
#include <plasma/toolbox_p.h>
|
||||||
|
|
||||||
#include "phase.h"
|
#include "animator.h"
|
||||||
|
|
||||||
namespace Plasma
|
namespace Plasma
|
||||||
{
|
{
|
||||||
|
@ -24,7 +24,7 @@
|
|||||||
#include <QGraphicsItem>
|
#include <QGraphicsItem>
|
||||||
#include <QObject>
|
#include <QObject>
|
||||||
|
|
||||||
#include "phase.h"
|
#include "animator.h"
|
||||||
|
|
||||||
namespace Plasma
|
namespace Plasma
|
||||||
{
|
{
|
||||||
|
@ -30,7 +30,7 @@
|
|||||||
|
|
||||||
#include <KDebug>
|
#include <KDebug>
|
||||||
|
|
||||||
#include <plasma/phase.h>
|
#include <plasma/animator.h>
|
||||||
|
|
||||||
using namespace Plasma;
|
using namespace Plasma;
|
||||||
|
|
||||||
|
@ -52,7 +52,7 @@
|
|||||||
|
|
||||||
#include <plasma/theme.h>
|
#include <plasma/theme.h>
|
||||||
|
|
||||||
#include "phase.h"
|
#include "animator.h"
|
||||||
#include "svg.h"
|
#include "svg.h"
|
||||||
|
|
||||||
namespace Plasma
|
namespace Plasma
|
||||||
|
@ -29,7 +29,7 @@
|
|||||||
#include <QGraphicsWidget>
|
#include <QGraphicsWidget>
|
||||||
|
|
||||||
#include <plasma/dataengine.h>
|
#include <plasma/dataengine.h>
|
||||||
#include <plasma/phase.h>
|
#include <plasma/animator.h>
|
||||||
#include <plasma/plasma_export.h>
|
#include <plasma/plasma_export.h>
|
||||||
|
|
||||||
class QAction;
|
class QAction;
|
||||||
|
@ -33,7 +33,7 @@
|
|||||||
#include <plasma/svg.h>
|
#include <plasma/svg.h>
|
||||||
|
|
||||||
#include "icon.h"
|
#include "icon.h"
|
||||||
#include "phase.h"
|
#include "animator.h"
|
||||||
|
|
||||||
class QAction;
|
class QAction;
|
||||||
class QPainter;
|
class QPainter;
|
||||||
|
Loading…
Reference in New Issue
Block a user