Hide keyboard shortcuts

Hot-keys on this page

r m x p   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

1# This file is part of Xpra. 

2# Copyright (C) 2010-2019 Antoine Martin <antoine@xpra.org> 

3# Copyright (C) 2008, 2010 Nathaniel Smith <njs@pobox.com> 

4# Xpra is released under the terms of the GNU GPL v2, or, at your option, any 

5# later version. See the file COPYING for details. 

6 

7from gi.repository import GObject #@UnresolvedImport @UnusedImport 

8 

9from xpra.client.gtk3.cairo_backing import CairoBacking 

10from xpra.client.gtk3.gtk3_client_window import GTK3ClientWindow 

11 

12""" 

13GTK3 window painted with cairo 

14""" 

15class ClientWindow(GTK3ClientWindow): 

16 

17 __gsignals__ = GTK3ClientWindow.__common_gsignals__ 

18 

19 def get_backing_class(self): 

20 return CairoBacking 

21 

22GObject.type_register(ClientWindow)