summaryrefslogtreecommitdiffstats
path: root/DesktopEffects/DesktopEffectsKDE.py
blob: 832e45f66e8388ace1ab681cfaaaa9cb3262a3ea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
#!/usr/bin/python
# -*- 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@kubuntu.org>
# Copyright 2007-2008 Michael Anderson <nosrednaekim@gmail.com>

import sys
import os
from optparse import OptionParser
from qt import *
from tdeui import *
from tdecore import *
# for adept batch launching
import subprocess
# for compiz-kde package checking
import apt_pkg
from apt.progress import OpProgress

from DesktopEffectsDialog import DesktopEffectsDialog
from DesktopEffectsCommon import DesktopEffectsCommon

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 DesktopEffectsKDE(DesktopEffectsDialog, DesktopEffectsCommon):
    def __init__(self):
      '''launches the app, draws the window '''
      
      app = TDEApplication (sys.argv, "gd-test")
      DesktopEffectsCommon.__init__(self)
      DesktopEffectsDialog.__init__(self)
      # bind the locale
      localesApp="desktop-effects"
      localesDir="/opt/trinity/share/locale"
      gettext.bindtextdomain(localesApp, localesDir)
      gettext.textdomain(localesApp)
      # initialize variables

      # self.action contains the action to be done after the user clicks "Apply".
      # 0 - do not do anything
      # 1 - disable effects
      # 2 - set standard effects
      # 3 - set extra effects
      # 4 - keep the custom effects, or revert to the last known effects state
      self.action = 0

      # set the screenshot pictures
      self.noEffectsImage.setPixmap(QPixmap("./data/noeffects.png"))
      self.standardEffectsImage.setPixmap(QPixmap("./data/standardeffects.png"))
      self.extraEffectsImage.setPixmap(QPixmap("./data/extraeffects.png"))

      # set the translations & icons
      # Apply
      self.applyButton.setText(__("tdelibs","&Apply"))
      self.applyButton.setIconSet(KGlobal.iconLoader().loadIconSet("apply",
                                                                   KIcon.NoGroup, KIcon.SizeSmall))

      # Close    
      self.cancelButton.setText(__("tdelibs","&Cancel"))
      self.cancelButton.setIconSet(KGlobal.iconLoader().loadIconSet("cancel", 
                                                                   KIcon.NoGroup, KIcon.SizeSmall))

      # check the state
      self.check()

      app.setMainWidget(self)
      self.show()
      app.exec_loop()


    def check(self):
      ''' checks the state and changes the UI accordingly. '''
      self.installed = self.checkInstalled()
      self.enabled   = self.checkEnabled()
      if(self.installed == True):
          self.installButton.setText(_("&Remove Desktop Effects"))
          self.effectsGroup.setDisabled(False)
          self.warningText.show()
          self.warningIcon.show()
          self.packageText.setText(_("The Compiz engine is installed in your system."))
          self.installButton.setIconSet(KGlobal.iconLoader().loadIconSet("remove",KIcon.NoGroup,KIcon.SizeSmall))
          # remove, not install
          self.rm = True
      else:
          self.packageText.setText(_("In order for Compiz Desktop Effects to work,"
                                     " the Compiz engine must be installed on your system."))
          self.installButton.setText(_("&Install Desktop Effects"))
          self.warningText.show()
          self.warningIcon.show()
          # install, not remove
          self.rm = False
          #self.effectsBox.setDisabled(True)
          self.installButton.setIconSet(KGlobal.iconLoader().loadIconSet("add",KIcon.NoGroup,KIcon.SizeSmall))

    def checkInstalled(self):
        progress = OpProgress()
        cache = apt_pkg.GetCache(progress)
        for pkg in cache.Packages:
            if pkg.Name == "compiz-kde-trinity":
                if pkg.CurrentVer is not None:
                    return True
        # otherwise
        return False
    def checkEnabled(self):
        return False

    def cancel(self):
        ''' action to be done after the user clicks the "cancel" button '''
        self.close()

    def apply(self):
        ''' action to be done after the user click the "apply button '''
        # if self.action > 0:
        #   if self.action == 1:
        #   elif self.action == 2:
        #   elif self.action == 3:
        #   elif self.action == 4:
        self.close()


    def installButtonClicked(self):
        ''' Installs or removes the compiz packages. '''
        if self.rm == True:
            self.remove()
        else:
            self.install()

        # check (again) if the package is installed
        self.check()