summaryrefslogtreecommitdiff
path: root/display/dpy_x.py
blob: ffca90f10f931bc6ac0a78c3f9f338bf62ef42d1 (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
import sys
import xshm
from modes import BaseDisplay
from cStringIO import StringIO


class Display(BaseDisplay):
    
    def __init__(self, width, height, title, shm='yes'):
        use_shm = not shm.startswith('n')
        self.xdpy = xdpy = xshm.Display(width, height, use_shm)
        self.pixmap = xdpy.pixmap
        self.getppm = xdpy.getppm
        self.putppm = xdpy.putppm
        self.overlayppm = xdpy.overlayppm
        self.close  = xdpy.close
        self.clear  = xdpy.clear
        self.flip   = xdpy.flip
        self.keyevents = xdpy.keyevents
        self.mouseevents = xdpy.mouseevents
        self.pointermotion = xdpy.pointermotion
        if use_shm and not xdpy.shmmode():
            print >> sys.stderr, \
                  "Note: cannot use SHM extension (%dx%d), display will be slow." % \
                  (width, height)

    def selectlist(self):
        if hasattr(self.xdpy, 'fd'):
            from socket import fromfd, AF_INET, SOCK_STREAM
            return [fromfd(self.xdpy.fd(), AF_INET, SOCK_STREAM)]
        else:
            return []


def htmloptionstext(nameval):
    return '''
<%s> Use the shared memory extension</input><%s><br>
<font size=-1>Note: Disable it for remote connections or old X servers</font>
''' % (nameval("checkbox", "shm", "yes", default="yes"),
       nameval("hidden", "shm", "no"))