Coverage for /home/antoine/projects/xpra-git/dist/python3/lib64/python/xpra/client/gtk3/client_window.py : 100%
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.
7from gi.repository import GObject #@UnresolvedImport @UnusedImport
9from xpra.client.gtk3.cairo_backing import CairoBacking
10from xpra.client.gtk3.gtk3_client_window import GTK3ClientWindow
12"""
13GTK3 window painted with cairo
14"""
15class ClientWindow(GTK3ClientWindow):
17 __gsignals__ = GTK3ClientWindow.__common_gsignals__
19 def get_backing_class(self):
20 return CairoBacking
22GObject.type_register(ClientWindow)