[prev in list] [next in list] [prev in thread] [next in thread] 

List:       kde-commits
Subject:    branches/work/~makmanalp/plasma
From:       Mehmet Ali Akmanalp <makmanalp () wpi ! edu>
Date:       2009-08-28 6:19:16
Message-ID: 1251440356.757747.32463.nullmailer () svn ! kde ! org
[Download RAW message or body]

SVN commit 1016576 by makmanalp:

Major refactoring pt 1:
- move all the stuff into animations/
- rename BaseAnimationElement to AbstractAnimation
- added license header to all
- add moc include that somehow disappeared? works fine now.

more goodies to come tomorrow after class.



 M  +3 -2      CMakeLists.txt  
 D             animationelements.cpp  
 D             animationelements.h  
 A             animations/animationelements.cpp   animationelements.cpp#1016375 [License: LGPL (v2+)]
 A             animations/animationelements.h   animationelements.h#1016375 [License: LGPL (v2+)]
 M  +19 -0     animations/expand.cpp  
 M  +20 -1     animations/expand.h  
 M  +19 -0     animations/fade.cpp  
 M  +20 -1     animations/fade.h  
 M  +19 -0     animations/grow.cpp  
 M  +20 -1     animations/grow.h  
 M  +19 -0     animations/slide.cpp  
 M  +20 -1     animations/slide.h  


--- branches/work/~makmanalp/plasma/CMakeLists.txt #1016575:1016576
@@ -54,7 +54,7 @@
     ${plasmagik_SRCS}
     abstractrunner.cpp
     animationdriver.cpp
-    animationelements.cpp
+    animations/animationelements.cpp
     animations/expand.cpp
     animations/fade.cpp
     animations/grow.cpp
@@ -202,7 +202,7 @@
 set(plasma_LIB_INCLUDES
     abstractrunner.h
     animationdriver.h
-    animationelements.h
+    animations/animationelements.h
     animator.h
     applet.h
     configloader.h
@@ -289,6 +289,7 @@
 endif(PHONON_FOUND)
 
 install(FILES
+    animations/animationelements.h
     animations/expand.h
     animations/fade.h
     animations/grow.h
--- branches/work/~makmanalp/plasma/animations/expand.cpp #1016575:1016576
@@ -1,3 +1,22 @@
+/*
+ *   Copyright 2009 Mehmet Ali Akmanalp <makmanalp@wpi.edu>
+ *
+ *   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.
+ */
+
 #include <plasma/animations/expand.h>
 #include <QRect>
 #include <kdebug.h>
--- branches/work/~makmanalp/plasma/animations/expand.h #1016575:1016576
@@ -1,3 +1,22 @@
+/*
+ *   Copyright 2009 Mehmet Ali Akmanalp <makmanalp@wpi.edu>
+ *
+ *   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.
+ */
+
 /**
  * @file This file contains the definition for the Expand effect.
  */
@@ -5,7 +24,7 @@
 #ifndef PLASMA_ANIMATIONS_Expand_H
 #define PLASMA_ANIMATIONS_Expand_H
 
-#include <plasma/animationelements.h>
+#include <plasma/animations/animationelements.h>
 #include <plasma/plasma_export.h>
 
 namespace Plasma
--- branches/work/~makmanalp/plasma/animations/fade.cpp #1016575:1016576
@@ -1,3 +1,22 @@
+/*
+ *   Copyright 2009 Mehmet Ali Akmanalp <makmanalp@wpi.edu>
+ *
+ *   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.
+ */
+
 #include <plasma/animations/fade.h>
 #include <QRect>
 #include <kdebug.h>
--- branches/work/~makmanalp/plasma/animations/fade.h #1016575:1016576
@@ -1,3 +1,22 @@
+/*
+ *   Copyright 2009 Mehmet Ali Akmanalp <makmanalp@wpi.edu>
+ *
+ *   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.
+ */
+
 /**
  * @file This file contains the definition for the Fade effect.
  */
@@ -5,7 +24,7 @@
 #ifndef PLASMA_ANIMATIONS_FADE_H
 #define PLASMA_ANIMATIONS_FADE_H
 
-#include <plasma/animationelements.h>
+#include <plasma/animations/animationelements.h>
 #include <plasma/plasma_export.h>
 
 namespace Plasma
--- branches/work/~makmanalp/plasma/animations/grow.cpp #1016575:1016576
@@ -1,3 +1,22 @@
+/*
+ *   Copyright 2009 Mehmet Ali Akmanalp <makmanalp@wpi.edu>
+ *
+ *   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.
+ */
+
 #include <plasma/animations/grow.h>
 #include <QRect>
 #include <kdebug.h>
--- branches/work/~makmanalp/plasma/animations/grow.h #1016575:1016576
@@ -1,3 +1,22 @@
+/*
+ *   Copyright 2009 Mehmet Ali Akmanalp <makmanalp@wpi.edu>
+ *
+ *   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.
+ */
+
 /**
  * @file This file contains the definition for the Grow effect.
  */
@@ -5,7 +24,7 @@
 #ifndef PLASMA_ANIMATIONS_GROW_H
 #define PLASMA_ANIMATIONS_GROW_H
 
-#include <plasma/animationelements.h>
+#include <plasma/animations/animationelements.h>
 #include <plasma/plasma_export.h>
 
 namespace Plasma
--- branches/work/~makmanalp/plasma/animations/slide.cpp #1016575:1016576
@@ -1,3 +1,22 @@
+/*
+ *   Copyright 2009 Mehmet Ali Akmanalp <makmanalp@wpi.edu>
+ *
+ *   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.
+ */
+
 #include <plasma/animations/slide.h>
 #include <QPointF>
 #include <kdebug.h>
--- branches/work/~makmanalp/plasma/animations/slide.h #1016575:1016576
@@ -1,3 +1,22 @@
+/*
+ *   Copyright 2009 Mehmet Ali Akmanalp <makmanalp@wpi.edu>
+ *
+ *   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.
+ */
+
 /**
  * @file This file contains the definition for the Slide effect.
  */
@@ -5,7 +24,7 @@
 #ifndef PLASMA_ANIMATIONS_SLIDE_H
 #define PLASMA_ANIMATIONS_SLIDE_H
 
-#include <plasma/animationelements.h>
+#include <plasma/animations/animationelements.h>
 #include <plasma/plasma_export.h>
 
 namespace Plasma
[prev in list] [next in list] [prev in thread] [next in thread] 

Configure | About | News | Add a list | Sponsored by KoreLogic