summaryrefslogtreecommitdiffstats
path: root/mouse.py
blob: 50cbc09c0fc9d9157b073bd6c6407d60f43465d7 (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
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
#
# mouse.py: mouse configuration data
#
# Copyright 2001 Red Hat, Inc.
#
# This software may be freely redistributed under the terms of the GNU
# library public license.
#
# You should have received a copy of the GNU Library Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
#

import kudzu
from simpleconfig import SimpleConfigFile
import os
from translate import _, N_

class Mouse (SimpleConfigFile):
    mice = {
        # (gpm protocol, X protocol, device, emulate3, shortname)
        N_("ALPS - GlidePoint (PS/2)"):
        ("ps/2", "GlidePointPS/2", "psaux", 1, "alpsps/2"),
	N_("ASCII - MieMouse (serial)"):
        ("ms3", "IntelliMouse", "ttyS", 0, "ascii"),
	N_("ASCII - MieMouse (PS/2)"):
        ("ps/2", "NetMousePS/2", "psaux", 1, "asciips/2"),
	N_("ATI - Bus Mouse"):
        ("Busmouse", "BusMouse", "atibm", 1, "atibm"),
	N_("Generic - 2 Button Mouse (serial)"):
        ("Microsoft", "Microsoft", "ttyS", 1, "generic"),
	N_("Generic - 3 Button Mouse (serial)"):
        ("Microsoft", "Microsoft", "ttyS", 0, "generic3"),
	N_("Generic - 2 Button Mouse (PS/2)"):
        ("ps/2", "PS/2", "psaux", 1, "genericps/2"),
	N_("Generic - 3 Button Mouse (PS/2)"):
        ("ps/2", "PS/2", "psaux", 0, "generic3ps/2"),
	N_("Generic - 2 Button Mouse (USB)"):
        ("imps2", "IMPS/2", "input/mice", 1, "genericusb"),
	N_("Generic - 3 Button Mouse (USB)"):
        ("imps2", "IMPS/2", "input/mice", 0, "generic3usb"),
	N_("Genius - NetMouse (serial)"):
        ("ms3", "IntelliMouse", "ttyS", 1, "geniusnm"),
	N_("Genius - NetMouse (PS/2)"):
        ("netmouse", "NetMousePS/2", "psaux", 1, "geniusnmps/2"),
	N_("Genius - NetMouse Pro (PS/2)"):
        ("netmouse", "NetMousePS/2", "psaux", 1, "geniusprops/2"),
	N_("Genius - NetScroll (PS/2)"):
        ("netmouse", "NetScrollPS/2", "psaux", 1, "geniusscrollps/2"),
	N_("Kensington - Thinking Mouse (serial)"):
        ("Microsoft", "ThinkingMouse", "ttyS", 1, "thinking"),
	N_("Kensington - Thinking Mouse (PS/2)"):
        ("ps/2", "ThinkingMousePS/2", "psaux", 1, "thinkingps/2"),
	N_("Logitech - C7 Mouse (serial, old C7 type)"):
        ("Logitech", "Logitech", "ttyS", 0, "logitech"),
	N_("Logitech - CC Series (serial)"):
        ("logim", "MouseMan", "ttyS", 0, "logitechcc"),
	N_("Logitech - Bus Mouse"):
        ("Busmouse", "BusMouse", "logibm", 0, "logibm"),
	N_("Logitech - MouseMan/FirstMouse (serial)"):
        ("MouseMan", "MouseMan", "ttyS", 0, "logimman"),
	N_("Logitech - MouseMan/FirstMouse (PS/2)"):
        ("ps/2", "PS/2", "psaux", 0, "logimmanps/2"),
	N_("Logitech - MouseMan+/FirstMouse+ (serial)"):
        ("pnp", "IntelliMouse", "ttyS", 0, "logimman+"),
        N_("Logitech - MouseMan+/FirstMouse+ (PS/2)"):
        ("ps/2", "MouseManPlusPS/2", "psaux", 0, "logimman+ps/2"),
	N_("Logitech - MouseMan Wheel (USB)"):
        ("ps/2", "IMPS/2", "input/mice", 0, "logimmusb"),
	N_("Microsoft - Compatible Mouse (serial)"):
        ("Microsoft", "Microsoft", "ttyS", 1, "microsoft"),
	N_("Microsoft - Rev 2.1A or higher (serial)"):
        ("pnp", "Auto", "ttyS", 1, "msnew"),
	N_("Microsoft - IntelliMouse (serial)"):
        ("ms3", "IntelliMouse", "ttyS", 0, "msintelli"),
	N_("Microsoft - IntelliMouse (PS/2)"):
        ("imps2", "IMPS/2", "psaux", 0, "msintellips/2"),
        
	N_("Microsoft - IntelliMouse (USB)"):
        ("ps/2", "IMPS/2", "input/mice", 0, "msintelliusb"),
        
	N_("Microsoft - Bus Mouse"):
        ("Busmouse", "BusMouse", "inportbm", 1, "msbm"),
	N_("Mouse Systems - Mouse (serial)"):
        ("MouseSystems", "MouseSystems", "ttyS", 1, "mousesystems"), 
	N_("MM - Series (serial)"):
        ("MMSeries", "MMSeries", "ttyS", 1, "mmseries"),
	N_("MM - HitTablet (serial)"):
        ("MMHitTab", "MMHittab", "ttyS", 1, "mmhittab"),
#        "None - None" :
#                ("none", "none", "null", 0, "none"),
	N_("Sun - Mouse"): ("sun", "sun", "sunmouse", 0, "sun"),
	}
    
    
    def mouseToMouse(self):
        types = {}
        for mouse in self.mice.keys():
            mouseType = self.mice[mouse][4]
            types[mouseType] = mouse
        return types
        

    # XXX fixme - externalize
    def __init__ (self, skipProbe = 0):
        self.info = {}
        self.device = None
        self.emulate = 0
        self.set ("Generic - 3 Button Mouse (PS/2)")
	self.wasProbed = 0
	if not skipProbe:
	    self.probe()

        self.orig_mouse = self.get()

    def get_Orig(self):
        return self.orig_mouse
        
    def probed(self):
	return self.wasProbed

    def probe (self, frob = 0):

        list = kudzu.probe(kudzu.CLASS_MOUSE, kudzu.BUS_UNSPEC, 
                           kudzu.PROBE_ONE)

        if (list):
            (device, module, desc) = list[0]
            
            if frob and device == 'psaux':
            # jumpstart some ps/2 mice.  Blame the kernel
                try:
                    f = open ('/dev/psaux')
                    f.write ('1')
                    f.close
                except:
                    pass

            if device == "sunmouse":
                self.set("Sun - Mouse", 0)
            elif device == "psaux":
                self.set("Generic - 3 Button Mouse (PS/2)", 0)
            elif device == "input/mice":
                if module == "generic3usb" or module == "mousedev":
                    self.set("Generic - 3 Button Mouse (USB)", 0)
                elif module == "genericusb":
                    self.set("Generic - 2 Button Mouse (USB)", 1)
            else:
                self.set("Generic - 2 Button Mouse (serial)", 1)

            self.device = device
	    self.wasProbed = 1
            return 1
        else:
            self.set("None - None")
	    self.wasProbed = 0
            return 0
    
    def available (self):
        return self.mice

    def get (self):
	return (self.info ["FULLNAME"], self.emulate)

    def __str__(self):
	if (self.emulate):
	    self.info["XEMU3"] = "yes"
	else:
	    self.info["XEMU3"] = "no"
	return SimpleConfigFile.__str__(self)

    def makeLink(self, root):
	try:
	    os.unlink(root + "/dev/mouse")
	except:
	    pass
	if (self.device):
	    os.symlink(self.device, root + "/dev/mouse")

    def getDevice(self):
	return self.device

    def shortDescription(self):
        if self.info.has_key("FULLNAME"):
            return self.info["FULLNAME"]
        else:
            return _("Unable to probe")

    def setDevice(self, device):
	self.device = device

    def set (self, mouse, emulateThreeButtons = -1, thedev = None):
        (gpm, x11, dev, em, shortname) = self.mice[mouse]
        self.info["MOUSETYPE"] = gpm
        self.info["XMOUSETYPE"] = x11
        self.info["FULLNAME"] = mouse
        if emulateThreeButtons != -1:
            self.emulate = emulateThreeButtons
        else:
            self.emu = em
        if thedev:
            self.device = thedev
	if not self.device:
            self.device = dev

    def setXProtocol (self):
        import xmouse
        try:
            curmouse = xmouse.get()
        except RuntimeError:
            # ignore errors when switching mice
            return None
        curmouse[0] = "/dev/" + self.device
        # XXX
        # IntelliMouse requires a full mouse reinit - X does not
        # handle this properly from the mouse extention at this time
        # so leave it alone
        if (not self.info["XMOUSETYPE"] == "IMPS/2"
            and not self.info["XMOUSETYPE"] == "IntelliMouse"
            and not self.info["XMOUSETYPE"] == "None"
            and not self.info["XMOUSETYPE"] == "none"):
            curmouse[1] = self.info["XMOUSETYPE"]

        curmouse[6] = self.emulate
        try:
            apply (xmouse.set, curmouse)
        except RuntimeError:
            pass
        except TypeError:
            pass

    def write(self, instPath):
	f = open(instPath + "/etc/sysconfig/mouse", "w")
	f.write(str (self))
	f.close()
	self.makeLink(instPath)


    def writeKS(self, f):
        f.write("mouse")

        for arg in self.getArgList():
            f.write(" " + arg)
        f.write("\n")


    def getArgList(self):
        args = []

        if self.info["FULLNAME"]:
            mouseName = self.info["FULLNAME"]
            args.append(self.mice[mouseName][4])
        if self.device:
            args.append("--device %s" %(self.device))
        if self.emulate:
            args.append("--emulthree")
        
        return args


# maybe doesnt belong here - just ask user what mouse they have on
# startup if kudzu didn't find one
def mouseWindow(mouse):
    from snack import ButtonChoiceWindow, SnackScreen
    from mouse_text import MouseWindow, MouseDeviceWindow
    from constants_text import INSTALL_BACK, INSTALL_OK
    import string
    screen = SnackScreen()

    STEP_MESSAGE = 0
    STEP_TYPE = 1
    STEP_DEVICE = 2
    STEP_DONE = 3
    step = 0
    while step < STEP_DONE:
        if step == STEP_MESSAGE:
            button = ButtonChoiceWindow(screen, _("Mouse Not Detected"),
                            _("Your mouse was not automatically "
                              "detected.  To proceed in the graphical "
                              "installation mode, please proceed to "
                              "the next screen and provide your mouse "
                              "information. You may also use text mode "
                              "installation which does not require a mouse."),
                              buttons = [ _("OK"), _("Use text mode") ])
            if button == string.lower (_("Use text mode")):
                screen.finish ()
                return 0
            else:
                step = STEP_TYPE
                continue

        if step == STEP_TYPE:
            rc = MouseWindow()(screen, mouse)
            if rc == INSTALL_BACK:
                step = STEP_MESSAGE
                continue
            else:
                step = STEP_DEVICE
                continue

        if step == STEP_DEVICE:
            rc = MouseDeviceWindow()(screen, mouse)
            if rc == INSTALL_BACK:
                step = STEP_TYPE
                continue
            else:
                step = STEP_DONE
                continue
    screen.finish()
    return 1