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#!/usr/bin/env python 

2# This file is part of Xpra. 

3# Copyright (C) 2017 Antoine Martin <antoine@xpra.org> 

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 

7class cv: 

8 

9 trs = ( 

10 ( 0.0, 0.15, 0.30, 0.5, 0.65, 0.80, 0.9, 1.0 ), 

11 ( 1.0, 0.0, 0.15, 0.30, 0.5, 0.65, 0.8, 0.9 ), 

12 ( 0.9, 1.0, 0.0, 0.15, 0.3, 0.5, 0.65, 0.8 ), 

13 ( 0.8, 0.9, 1.0, 0.0, 0.15, 0.3, 0.5, 0.65 ), 

14 ( 0.65, 0.8, 0.9, 1.0, 0.0, 0.15, 0.3, 0.5 ), 

15 ( 0.5, 0.65, 0.8, 0.9, 1.0, 0.0, 0.15, 0.3 ), 

16 ( 0.3, 0.5, 0.65, 0.8, 0.9, 1.0, 0.0, 0.15 ), 

17 ( 0.15, 0.3, 0.5, 0.65, 0.8, 0.9, 1.0, 0.0, ) 

18 ) 

19 

20 SPEED = 100 

21 CLIMIT = 1000 

22 NLINES = 8