blob: 737b75213f4d81c0f5fc97d8a370d575dfc17d9e (
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
|
#
# xorg_gui.py: gui Xorg/DE/WM settings.
#
# Copyright (C) 2011 wiktor w brodlo
# Copyright (C) 2011 Gentoo Foundation
#
# 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/>.
#
import string
import gtk
import gtk.glade
import gtk.gdk
import gobject
import pango
import sys
import gui
from iw_gui import *
from constants import *
import gettext
_ = lambda x: gettext.ldgettext("anaconda", x)
class XorgWindow(InstallWindow):
des = ["fluxbox", "gnome", "kde", "lxde", "xfce4"]
def getNext(self):
for de in self.des:
cb = self.xml.get_widget(de)
if cb.get_property("active"):
self.anaconda.xorg = de
# All DEs need the X use flag
if self.anaconda.xorg:
if "X" not in self.anaconda.use_flags:
self.anaconda.use_flags.append("X")
if "-X" in self.anaconda.use_flags:
f = self.anaconda.use_flags.index("-X")
del self.anaconda.use_flags[f]
return None
def getScreen(self, anaconda):
self.anaconda = anaconda
self.intf = anaconda.intf
(self.xml, self.align) = gui.getGladeWidget("xorg.glade", "xorg_align")
for de in self.des:
icon = self.xml.get_widget(de+"_icon")
gui.readImageFromFile(de+".png", image=icon)
return self.align
|