Branch: null

19f9c3f4 2010-03-11 02:10:59 tpearson
Added KDE3 version of Desktop Effects


git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/desktop-effects-kde@1101884 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
A 25enable-compiz
A DesktopEffects/DesktopEffectsCommon.py
A DesktopEffects/DesktopEffectsDialog.py
A DesktopEffects/DesktopEffectsKDE.py
A DesktopEffects/DesktopEffectsKDE4.py
A DesktopEffects/DesktopEffectsQt4Dialog.py
A DesktopEffects/__init__.py
A data/BlankEffects.ini
A data/DesktopEffectsDialog.ui
A data/DesktopEffectsQt4Dialog.ui
A data/HighEffects.ini
A data/MediumEffects.ini
A data/extraeffects.png
A data/noeffects.png
A data/standardeffects.png
A desktop-effects-kde
A desktop-effects-kde.desktop
A desktop-effects-kde4
A po/desktop-effects-kde.pot
A setup.py
diff --git a/25enable-compiz b/25enable-compiz
new file mode 100644
index 0000000..69ca556
--- /dev/null
+++ b/25enable-compiz
@@ -0,0 +1,3 @@
+if [ -e $HOME/.kde3/share/config/compizasWM ] ; then
+	export KDEWM="/opt/kde3/bin/compiz"
+fi 
diff --git a/DesktopEffects/DesktopEffectsCommon.py b/DesktopEffects/DesktopEffectsCommon.py
new file mode 100644
index 0000000..2212b02
--- /dev/null
+++ b/DesktopEffects/DesktopEffectsCommon.py
@@ -0,0 +1,230 @@
+# -*- coding: utf-8 -*-
+#
+# 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, see <http://www.gnu.org/licenses/>.
+#
+# Copyright 2007-2008 Martin B��hm <martin.bohm@...>
+# Copyright 2007-2008 Michael Anderson <nosrednaekim@...>
+
+# a class hosting the desktop-independent methods for the Desktop
+#��Effects Dialog
+
+import sys
+import os
+from optparse import OptionParser
+
+# for adept batch launching
+import subprocess
+# for compiz-kde package checking
+import apt_pkg
+from apt.progress import OpProgress
+
+import gettext
+def _(str):
+    return unicode(gettext.gettext(str), 'UTF-8')
+def __(catalog,str):
+    return unicode(gettext.dgettext(catalog, str), 'UTF-8')
+def utf8(str):
+  if isinstance(str, unicode):
+      return str
+  return unicode(str, 'UTF-8')
+
+class DesktopEffectsCommon(object):
+    def __init__(self):
+        self.action = 0
+        self.ibText = ""
+        self.check()
+        self.DATADIR = "/opt/kde3/share/apps/desktop-effects-kde/"
+
+    def checkInstalled(self):
+        progress = OpProgress()
+        cache = apt_pkg.GetCache(progress)
+        for pkg in cache.Packages:
+            if pkg.Name == "compiz-kde-kde3":
+                if pkg.CurrentVer is not None:
+                    return True
+        # otherwise
+        return False
+
+    def checkEnabled(self):
+	    '''checks if the compizasWM file is present, and if so, reads what mode we are in'''
+	    if os.path.exists(os.path.expanduser("~/.kde3/share/config/compizasWM")):
+		    compizasWM = open(os.path.expanduser("~/.kde3/share/config/compizasWM"))
+		    state = compizasWM.readline()
+		    return state
+	    else:
+		    return False
+
+    def check(self):
+      ''' checks the state and changes the UI accordingly. '''
+      self.installed = self.checkInstalled()
+      self.enabled   = self.checkEnabled()			
+      if(self.installed == True):
+          self.ibText = _("&Remove Desktop Effects")
+          self.showWarning()
+          self.enable()
+          self.pText = _("The Compiz engine is installed in your system.")
+          # remove, not install
+          self.rm = True
+      else:
+          self.pText = _("In order for Compiz Desktop Effects to work,"
+                         " the Compiz engine must be installed on your system.")
+          self.ibText = _("&Install Desktop Effects")
+          self.hideWarning()
+          self.disable()
+          # install, not remove
+          self.rm = False
+          #self.effectsBox.setDisabled(True)
+
+    def showWarning(self):
+        ''' shows the warning information, should be implemented in the UI class '''
+        raise NotImplementedError
+
+    def hideWarning(self):
+        ''' hides the warning, should be implemented in the UI class '''
+        raise NotImplementedError
+
+    def disable(self):
+        ''' disables the options, should be implemented in the UI '''
+        raise NotImplementedError
+
+    def enable(self):
+        ''' enables the options, should be implemented in the UI '''
+        raise NotImplementedError
+
+    def done(self):
+        ''' action to be done after the user clicks the "cancel" button '''
+        print "signalled" # DEBUG
+        self.close()
+
+    def apply(self):
+        '''��action to be done after the user clicks the "apply button '''
+        print "apply clicked" #DEBUG
+        if self.action > 0:
+           if self.action == 1:
+			 self.disableEffects()
+			 
+           elif self.action == 2:
+			 self.enableStandardEffects()
+           elif self.action == 3:
+			 self.enableExtraEffects()
+           elif self.action == 4:
+			 self.enableCustomEffects()
+	   if not self.enabled and not self.action == 1:
+		 os.spawnl(os.P_NOWAIT, "/opt/kde3/bin/compiz", "--replace")
+		 self.enabled = True		  	 		 
+
+    def btnInstallClicked(self):
+        if self.installed == True:
+            self.remove()
+            return
+        try:
+            ''' Installs the Compiz package. Not very nice as it is distribution dependent.��'''
+            subprocess.call(['kdesudo', '-c' '/opt/kde3/bin/adept_batch install compiz-kde-kde3 compiz-fusion-plugins-main-kde3 compiz-fusion-plugins-extra-kde3'])
+        except:
+            subprocess.call(['kdialog', '--sorry', 'Adept Batch is not installed on this system'])
+        self.check()
+
+
+    # the functions toggled by radio boxes
+    def noEffects(self):
+        print "radio toggled" # DEBUG
+        self.action = 1
+#        self.apply()
+    def standardEffects(self):
+        print "radio toggled" # DEBUG
+        self.action = 2
+#        self.apply()
+    def extraEffects(self):
+        print "radio toggled" # DEBUG
+        self.action = 3
+    def customEffects(self):
+        print "radio toggled" # DEBUG
+        self.action = 4
+#        self.apply()
+
+    def remove(self):
+        removeAnswer = subprocess.call(['kdialog', "--warningyesno", "Are you sure you wish to remove Compiz KDE?"])
+        if removeAnswer == 0:
+            try:
+                ''' Remove the Compiz package. Not very nice as it is distribution dependent.��'''
+                subprocess.call(['kdesudo', '-c' '/opt/kde3/bin/adept_batch remove compiz-kde-kde3 compiz-fusion-plugins-main-kde3 compiz-fusion-plugins-extra-kde3'])
+            except:
+                subprocess.call(['kdialog', '--sorry', 'Adept Batch is not installed on this system'])
+			 	 
+
+    def disableEffects(self):
+	    '''remove compiz as the default WM'''
+	    os.remove(os.path.expanduser("~/.kde3/share/config/compizasWM"))
+	    self.enabled = False 
+
+    
+    def enableStandardEffects(self):
+	    '''copy the .ini to Default.ini and enable compiz as default WM'''
+	    code = os.system('mkdir -p ~/.config/compiz/compizconfig')
+	    try:
+	    		enable = open(os.path.expanduser("~/.kde3/share/config/compizasWM"),"w")
+	    		if enable.readline() == "custom":
+	    			customeffects = open(os.path.expanduser("~/.config/compiz/compizconfig/Default.ini"),"r")
+				backupfile = open(os.path.expanduser("~/.config/compiz/compizconfig/Custom.ini"),"w")
+				backupfile.write(customeffects)
+				backupfile.close()
+				customeffects.close()
+	    except:
+			print "error"		
+	    enable.write("standardeffects")
+	    enable.close()
+	    config = open(os.path.join(self.DATADIR,"MediumEffects.ini"),"r")
+	    dest = open(os.path.expanduser("~/.config/compiz/compizconfig/Default.ini"),"w")
+	    dest.write(config.read())
+	    dest.close()
+	    config.close()
+	    print "standardEffects enabled" #DEBUG
+	    
+    def enableExtraEffects(self):
+	    ''' copy the extraeffects.ini to Default.ini and enable compiz as defaultWM'''
+	    code = os.system('mkdir -p ~/.config/compiz/compizconfig')
+	    if os.path.exists(os.path.expanduser("~/.kde3/share/config/compizasWM")):
+	    		enable = open(os.path.expanduser("~/.kde3/share/config/compizasWM"),"r")
+	    		if enable.readline() == "custom":
+	    			customeffects = open(os.path.expanduser("~/.config/compiz/compizconfig/Default.ini"),"r")
+				backupfile = open(os.path.expanduser("~/.config/compiz/compizconfig/Custom.ini"),"w")
+				backupfile.write(customeffects)
+				backupfile.close()
+				customeffects.close()
+				enable.close()
+
+	    enable = open(os.path.expanduser("~/.kde3/share/config/compizasWM"),"w")	
+	    enable.write("extraeffects")
+	    enable.close()
+	    config = open(os.path.join(self.DATADIR,"HighEffects.ini"),"r")
+	    dest = open(os.path.expanduser("~/.config/compiz/compizconfig/Default.ini"),"w")
+	    dest.write(config.read())
+	    dest.close()
+	    config.close()
+	    print "extraEffects enabled" #DEBUG
+	    
+    def enableCustomEffects(self):
+	    code = os.system('mkdir -p ~/.config/compiz/compizconfig')
+	    try:
+		    config = open(os.path.expanduser("~/.config/compiz/compizconfig/Custom.ini"),"r")
+	    except:
+		    print "no custom effects file, creating blank .ini" #DEBUG
+		    config = open(os.path.join(self.DATADIR,"BlankEffects.ini"),"r")
+	    enable = open(os.path.expanduser("~/.kde3/share/config/compizasWM"),"w")
+	    enable.write("custom")
+	    enable.close()	    
+	    dest = open(os.path.expanduser("~/.config/compiz/compizconfig/Default.ini"),"w")
+	    dest.write(config.read())
+	    dest.close()
+	    config.close()
diff --git a/DesktopEffects/DesktopEffectsDialog.py b/DesktopEffects/DesktopEffectsDialog.py
new file mode 100644
index 0000000..69d70d1
--- /dev/null
+++ b/DesktopEffects/DesktopEffectsDialog.py
 ** Diff limit reached (max: 250 lines) **
7e131609 2010-03-23 17:57:55 tpearson
Fixed images


git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/desktop-effects-kde@1106795 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
M data/extraeffects.png
M data/noeffects.png
M data/standardeffects.png
 ** Diff limit reached (max: 250 lines) **
c2ea0e09 2011-08-20 20:43:11 tpearson
Convert remaining references to kde3 (e.g. in paths) to trinity


git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/desktop-effects-kde@1248408 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
M 25enable-compiz
M DesktopEffects/DesktopEffectsCommon.py
M DesktopEffects/DesktopEffectsKDE.py
M DesktopEffects/DesktopEffectsKDE4.py
M desktop-effects-kde
M desktop-effects-kde4
 ** Diff limit reached (max: 250 lines) **
525b58a5 2011-11-04 16:44:28 Timothy Pearson
Added common directories
A .gitmodules
A admin
A cmake
 ** Diff limit reached (max: 250 lines) **
61660f8a 2011-11-05 21:57:02 Automated System
Reset submodule main/applications/desktop-effects-tde/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
01d2479d 2011-11-06 02:17:46 Timothy Pearson
Additional kde to tde renaming
M DesktopEffects/DesktopEffectsCommon.py
M DesktopEffects/DesktopEffectsDialog.py
M DesktopEffects/DesktopEffectsKDE.py
 ** Diff limit reached (max: 250 lines) **
6c6ca034 2011-11-06 02:58:54 Automated System
Reset submodule main/applications/desktop-effects-tde/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
e3cafb84 2011-11-06 02:58:55 Automated System
Reset submodule main/applications/desktop-effects-tde/cmake to latest HEAD
M cmake
 ** Diff limit reached (max: 250 lines) **
3ee4ab4f 2011-11-06 16:04:07 Automated System
Reset submodule main/applications/desktop-effects-tde/cmake to latest HEAD
M cmake
 ** Diff limit reached (max: 250 lines) **
22ea8cea 2011-11-06 22:19:15 Automated System
Reset submodule main/applications/desktop-effects-tde/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
a4d53c7d 2011-11-07 20:14:36 Timothy Pearson
Rename kwin to twin (part 1 of 2)
M DesktopEffects/DesktopEffectsKDE4.py
 ** Diff limit reached (max: 250 lines) **
b7fa68b4 2011-11-08 02:03:24 Automated System
Reset submodule main/applications/desktop-effects-tde/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
a2a070fb 2011-11-16 13:37:19 Timothy Pearson
Additional renaming of kde to tde
M DesktopEffects/DesktopEffectsCommon.py
M DesktopEffects/DesktopEffectsKDE.py
M DesktopEffects/DesktopEffectsKDE4.py
M DesktopEffects/DesktopEffectsQt4Dialog.py
M data/DesktopEffectsQt4Dialog.ui
M desktop-effects-kde.desktop
M setup.py
 ** Diff limit reached (max: 250 lines) **
ff1bc273 2011-11-16 14:32:31 Automated System
Reset submodule main/applications/desktop-effects-tde/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
8da384f9 2011-11-16 14:32:32 Automated System
Reset submodule main/applications/desktop-effects-tde/cmake to latest HEAD
M cmake
 ** Diff limit reached (max: 250 lines) **
8883be08 2011-11-16 16:05:51 Timothy Pearson
Finish rename from prior commit
A desktop-effects-tde
A desktop-effects-tde.desktop
A desktop-effects-tde4
A po/desktop-effects-tde.pot
R desktop-effects-kde
R desktop-effects-kde.desktop
R desktop-effects-kde4
R po/desktop-effects-kde.pot
 ** Diff limit reached (max: 250 lines) **
f06c403e 2011-11-18 01:49:03 Automated System
Reset submodule main/applications/desktop-effects-tde/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
84421e4a 2011-11-26 14:21:23 Automated System
Reset submodule main/applications/desktop-effects-tde/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
d1ffb683 2011-12-03 22:58:00 Automated System
Reset submodule main/applications/desktop-effects-tde/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
a3bef23b 2011-12-07 20:26:20 Automated System
Reset submodule main/applications/desktop-effects-tde/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
e01d3840 2011-12-31 23:57:45 Automated System
Reset submodule main/applications/desktop-effects-tde/cmake to latest HEAD
M cmake
 ** Diff limit reached (max: 250 lines) **
2944945e 2012-01-02 11:53:56 Automated System
Reset submodule main/applications/desktop-effects-tde/cmake to latest HEAD
M cmake
 ** Diff limit reached (max: 250 lines) **
e5a7827c 2012-01-20 01:51:09 Automated System
Reset submodule main/applications/desktop-effects-tde/cmake to latest HEAD
M cmake
 ** Diff limit reached (max: 250 lines) **
c896f4be 2012-02-01 16:52:31 Automated System
Reset submodule main/applications/desktop-effects-tde/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
0a7b6f29 2012-02-02 03:40:47 Automated System
Reset submodule main/applications/desktop-effects-tde/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
7a53b09a 2012-02-02 14:09:00 Automated System
Reset submodule main/applications/desktop-effects-tde/cmake to latest HEAD
M cmake
 ** Diff limit reached (max: 250 lines) **
297b9b58 2012-02-03 18:20:35 Timothy Pearson
Rename KDETMP KDEVARTMP and KDEWM
M 25enable-compiz
 ** Diff limit reached (max: 250 lines) **
be55ee39 2012-02-07 19:32:46 Automated System
Reset submodule main/applications/desktop-effects-tde/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
098828ff 2012-02-10 13:20:16 Automated System
Reset submodule main/applications/desktop-effects-tde/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
fc7bb499 2012-02-11 14:14:34 Automated System
Reset submodule main/applications/desktop-effects-tde/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
3997a727 2012-02-11 14:14:35 Automated System
Reset submodule main/applications/desktop-effects-tde/cmake to latest HEAD
M cmake
 ** Diff limit reached (max: 250 lines) **
3af3e945 2012-02-12 17:11:23 Automated System
Reset submodule main/applications/desktop-effects-tde/cmake to latest HEAD
M cmake
 ** Diff limit reached (max: 250 lines) **
39902e9e 2012-02-14 21:54:13 Automated System
Reset submodule main/applications/desktop-effects-tde/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
373ab2ae 2012-02-16 17:21:36 Automated System
Reset submodule main/applications/desktop-effects-tde/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
ed833c1d 2012-02-19 15:52:15 Automated System
Reset submodule main/applications/desktop-effects-tde/cmake to latest HEAD
M cmake
 ** Diff limit reached (max: 250 lines) **
256aadda 2012-02-25 17:20:24 Automated System
Reset submodule main/applications/desktop-effects-tde/cmake to latest HEAD
M cmake
 ** Diff limit reached (max: 250 lines) **
880615d9 2012-02-26 15:50:58 Automated System
Reset submodule main/applications/desktop-effects-tde/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
cbc6db15 2012-02-26 15:51:00 Automated System
Reset submodule main/applications/desktop-effects-tde/cmake to latest HEAD
M cmake
 ** Diff limit reached (max: 250 lines) **
58e1e248 2012-02-27 17:30:12 Timothy Pearson
Rename tqt3 color functions
M DesktopEffects/DesktopEffectsDialog.py
 ** Diff limit reached (max: 250 lines) **
1e04dc17 2012-03-05 19:22:28 Darrell Anderson
Update desktop files: OnlyShowIn=KDE; -> OnlyShowIn=TDE;
M desktop-effects-tde.desktop
 ** Diff limit reached (max: 250 lines) **
f1ec3113 2012-03-06 00:24:37 Automated System
Reset submodule main/applications/desktop-effects-tde/cmake to latest HEAD
M cmake
 ** Diff limit reached (max: 250 lines) **
89eff4f9 2012-03-06 12:44:07 Automated System
Reset submodule main/applications/desktop-effects-tde/cmake to latest HEAD
M cmake
 ** Diff limit reached (max: 250 lines) **
404f91f9 2012-03-13 03:08:09 Automated System
Reset submodule main/applications/desktop-effects-tde/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
bb46d0fe 2012-03-26 16:13:20 Automated System
Reset submodule main/applications/desktop-effects-tde/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
1db4a909 2012-04-11 00:44:33 Automated System
Reset submodule main/applications/desktop-effects-tde/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
dfcec6c1 2012-04-11 00:44:34 Automated System
Reset submodule main/applications/desktop-effects-tde/cmake to latest HEAD
M cmake
 ** Diff limit reached (max: 250 lines) **
c661faa3 2012-04-14 17:45:54 Automated System
Reset submodule main/applications/desktop-effects-tde/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
072e82e6 2012-05-19 02:34:10 Automated System
Reset submodule main/applications/desktop-effects-tde/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
619a2470 2012-06-08 17:21:30 Automated System
Reset submodule main/applications/desktop-effects-tde/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
4f765b5d 2012-06-08 17:21:32 Automated System
Reset submodule main/applications/desktop-effects-tde/cmake to latest HEAD
M cmake
 ** Diff limit reached (max: 250 lines) **
e9687059 2012-06-08 17:25:02 Darrell Anderson
Update XDG information in support of bug report 892.
M admin
M cmake
M setup.py
 ** Diff limit reached (max: 250 lines) **
cf30e55d 2012-06-08 18:23:53 Automated System
Reset submodule main/applications/desktop-effects-tde/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
ded5f927 2012-06-08 18:23:55 Automated System
Reset submodule main/applications/desktop-effects-tde/cmake to latest HEAD
M cmake
 ** Diff limit reached (max: 250 lines) **
4c5ab1df 2012-06-12 17:32:25 Automated System
Reset submodule main/applications/desktop-effects-tde/cmake to latest HEAD
M cmake
 ** Diff limit reached (max: 250 lines) **
e759a0d5 2012-06-14 02:09:30 Automated System
Reset submodule main/applications/desktop-effects-tde/cmake to latest HEAD
M cmake
 ** Diff limit reached (max: 250 lines) **
d4a0804c 2012-06-15 09:02:02 Automated System
Reset submodule main/applications/desktop-effects-tde/cmake to latest HEAD
M cmake
 ** Diff limit reached (max: 250 lines) **
2bdfc4da 2012-06-19 16:55:47 Automated System
Reset submodule main/applications/desktop-effects-tde/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
91c7096f 2012-06-21 20:32:03 Automated System
Reset submodule main/applications/desktop-effects-tde/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
14ac49fb 2012-08-07 02:18:35 Automated System
Reset submodule main/applications/desktop-effects-tde/cmake to latest HEAD
M cmake
 ** Diff limit reached (max: 250 lines) **
da468706 2012-09-10 01:46:23 Automated System
Reset submodule main/applications/desktop-effects-tde/cmake to latest HEAD
M cmake
 ** Diff limit reached (max: 250 lines) **
a7f69d57 2012-09-14 22:33:51 Automated System
Reset submodule main/applications/desktop-effects-tde/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
d33e9282 2012-11-20 04:39:51 Automated System
Reset submodule main/applications/desktop-effects-tde/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
e85e19a7 2012-11-20 04:39:55 Automated System
Reset submodule main/applications/desktop-effects-tde/cmake to latest HEAD
M cmake
 ** Diff limit reached (max: 250 lines) **
3750e7f4 2012-11-27 13:42:31 Automated System
Reset submodule main/applications/desktop-effects-tde/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
404f2528 2012-11-27 13:42:37 Automated System
Reset submodule main/applications/desktop-effects-tde/cmake to latest HEAD
M cmake
 ** Diff limit reached (max: 250 lines) **
a0dcfe4d 2013-01-19 23:53:11 Timothy Pearson
Rename KApplication to TDEApplication to avoid conflicts with KDE4
M DesktopEffects/DesktopEffectsDialog.py
M DesktopEffects/DesktopEffectsKDE.py
 ** Diff limit reached (max: 250 lines) **
0ba40711 2013-01-20 02:20:13 Automated System
Reset submodule main/applications/desktop-effects-tde/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
ede755ba 2013-01-21 18:25:15 Timothy Pearson
Rename KCmdLineArgs to TDECmdLineArgs to avoid conflicts with KDE4
M DesktopEffects/DesktopEffectsDialog.py
 ** Diff limit reached (max: 250 lines) **
7fd8a4be 2013-01-22 21:01:07 Automated System
Reset submodule main/applications/desktop-effects-tde/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
6050d68c 2013-01-24 13:18:36 Timothy Pearson
Rename KGlobal, KProcess, and KClipboard to avoid conflicts with KDE4
M DesktopEffects/DesktopEffectsKDE.py
 ** Diff limit reached (max: 250 lines) **
a51cd5e6 2013-01-26 14:58:44 Automated System
Reset submodule main/applications/desktop-effects-tde/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
c59f117e 2013-01-27 01:36:01 Automated System
Reset submodule main/applications/desktop-effects-tde/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
61318caa 2013-01-27 01:36:04 Automated System
Reset submodule main/applications/desktop-effects-tde/cmake to latest HEAD
M cmake
 ** Diff limit reached (max: 250 lines) **
4bec54fa 2013-01-27 20:54:38 Timothy Pearson
Rename kiobuffer and KHTML
M cmake
 ** Diff limit reached (max: 250 lines) **
aba1a513 2013-01-28 08:57:09 Automated System
Reset submodule main/applications/desktop-effects-tde/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
e2873432 2013-01-30 00:09:37 Automated System
Reset submodule main/applications/desktop-effects-tde/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
7814c5cc 2013-02-04 14:00:43 Timothy Pearson
Rename KIcon to enhance compatibility with KDE4
M DesktopEffects/DesktopEffectsKDE.py
 ** Diff limit reached (max: 250 lines) **
8b273591 2013-02-11 04:46:51 Automated System
Reset submodule main/applications/desktop-effects-tde/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
766687d9 2013-02-15 23:53:55 Automated System
Reset submodule main/applications/desktop-effects-tde/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
26406a23 2013-02-15 23:53:57 Automated System
Reset submodule main/applications/desktop-effects-tde/cmake to latest HEAD
M cmake
 ** Diff limit reached (max: 250 lines) **
7f1f7fe5 2013-02-16 13:20:01 Automated System
Reset submodule main/applications/desktop-effects-tde/cmake to latest HEAD
M cmake
 ** Diff limit reached (max: 250 lines) **
dc4f6501 2013-02-18 13:39:34 Automated System
Reset submodule main/applications/desktop-effects-tde/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
a691947f 2013-02-19 00:39:27 Automated System
Reset submodule main/applications/desktop-effects-tde/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
ee609e00 2013-02-20 18:34:27 Automated System
Reset submodule main/applications/desktop-effects-tde/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
b851640a 2013-02-21 15:09:36 Timothy Pearson
Second part of prior commit
M admin
M cmake
 ** Diff limit reached (max: 250 lines) **
c9b5e0fe 2013-04-18 20:20:25 Automated System
Reset submodule main/applications/desktop-effects-tde/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
72f9f7d0 2013-05-23 21:51:32 Automated System
Reset submodule main/applications/desktop-effects-tde/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
da8f12ef 2013-08-27 18:18:14 Slávek Banko
Reset submodule main/applications/desktop-effects-tde/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
a72bd081 2013-08-29 18:30:53 Slávek Banko
Reset submodule main/applications/desktop-effects-tde/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
1e9a8eed 2013-09-03 12:56:23 Slávek Banko
Additional k => tde renaming and fixes
M admin
 ** Diff limit reached (max: 250 lines) **
e7b999d7 2013-09-15 09:23:22 Automated System
Reset submodule main/applications/desktop-effects-tde/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
5a6622e3 2013-09-15 09:23:23 Automated System
Reset submodule main/applications/desktop-effects-tde/cmake to latest HEAD
M cmake
 ** Diff limit reached (max: 250 lines) **
017c4e7c 2013-12-23 06:08:05 Slávek Banko
Rename kdewidgets => tdewidgets
M admin
M cmake
 ** Diff limit reached (max: 250 lines) **
584a962d 2013-12-26 17:01:11 Darrell Anderson
KDE->TDE branding cleanup.
M data/DesktopEffectsDialog.ui
 ** Diff limit reached (max: 250 lines) **
07e5787a 2013-12-26 17:07:06 Darrell Anderson
KDE->TDE branding cleanup.
M data/DesktopEffectsQt4Dialog.ui
 ** Diff limit reached (max: 250 lines) **
a1a1a7cc 2014-02-11 16:45:04 Darrell Anderson
Make desktop file consistent.
M desktop-effects-tde.desktop
 ** Diff limit reached (max: 250 lines) **
893bc167 2014-03-27 04:17:27 Automated System
Reset submodule main/applications/desktop-effects-tde/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
277ae2e3 2014-03-27 04:17:29 Automated System
Reset submodule main/applications/desktop-effects-tde/cmake to latest HEAD
M cmake
 ** Diff limit reached (max: 250 lines) **
fa207e5d 2014-03-28 19:14:58 Automated System
Reset submodule main/applications/desktop-effects-tde/cmake to latest HEAD
M cmake
 ** Diff limit reached (max: 250 lines) **
6cf91cca 2014-04-17 00:31:28 Automated System
Reset submodule main/applications/desktop-effects-tde/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
5a01932f 2014-05-26 20:13:57 Automated System
Reset submodule main/applications/desktop-effects-tde/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
f3cdf3aa 2014-09-14 14:20:49 Automated System
Reset submodule main/applications/desktop-effects-tde/cmake to latest HEAD
M cmake
 ** Diff limit reached (max: 250 lines) **
0e73ee9f 2014-09-24 12:10:11 Slávek Banko
Fix remaining renaming knewstuff
M admin
 ** Diff limit reached (max: 250 lines) **
9f905cf2 2014-09-28 21:52:10 Automated System
Reset submodule main/applications/desktop-effects-tde/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
9daf2492 2014-09-29 11:57:03 Automated System
Reset submodule main/applications/desktop-effects-tde/cmake to latest HEAD
M cmake
 ** Diff limit reached (max: 250 lines) **
43378692 2014-10-12 11:26:29 Automated System
Reset submodule main/applications/desktop-effects-tde/cmake to latest HEAD
M cmake
 ** Diff limit reached (max: 250 lines) **
4ecc715d 2014-10-13 17:30:48 Automated System
Reset submodule main/applications/desktop-effects-tde/cmake to latest HEAD
M cmake
 ** Diff limit reached (max: 250 lines) **
c7da4f7c 2014-10-14 11:52:28 Automated System
Reset submodule main/applications/desktop-effects-tde/cmake to latest HEAD
M cmake
 ** Diff limit reached (max: 250 lines) **
9833846f 2014-10-19 21:39:11 Automated System
Reset submodule main/applications/desktop-effects-tde/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **