mirror of
				https://github.com/yshui/picom.git
				synced 2025-10-30 23:46:46 -04:00 
			
		
		
		
	Handle more (hopefully all) edge-cases when updating `opacity_target_old`: * `MAPPING` transitions to `FADING` if new target is reached. Otherwise no update. * `FADING` clamps to current `opacity` if old target is too small. * `UNMAPPING`/`DESTROYING` clamps to current `opacity` if old target is too small.
		
			
				
	
	
		
			46 lines
		
	
	
	
		
			1.4 KiB
		
	
	
	
		
			Python
		
	
	
		
			Executable file
		
	
	
	
	
			
		
		
	
	
			46 lines
		
	
	
	
		
			1.4 KiB
		
	
	
	
		
			Python
		
	
	
		
			Executable file
		
	
	
	
	
#!/usr/bin/env python
 | 
						|
 | 
						|
import xcffib.xproto as xproto
 | 
						|
import xcffib
 | 
						|
import time
 | 
						|
from common import set_window_name, trigger_root_configure
 | 
						|
 | 
						|
conn = xcffib.connect()
 | 
						|
setup = conn.get_setup()
 | 
						|
root = setup.roots[0].root
 | 
						|
visual = setup.roots[0].root_visual
 | 
						|
depth = setup.roots[0].root_depth
 | 
						|
x = xproto.xprotoExtension(conn)
 | 
						|
 | 
						|
opacity_80 = [int(0xffffffff * 0.8), ]
 | 
						|
opacity_single = [int(0xffffffff * 0.002), ]
 | 
						|
 | 
						|
# issue 314 is caused by changing a windows target opacity during its fade-in/-out transition
 | 
						|
wid1 = conn.generate_id()
 | 
						|
print("Window 1: ", hex(wid1))
 | 
						|
 | 
						|
atom = "_NET_WM_WINDOW_OPACITY"
 | 
						|
opacity_atom = conn.core.InternAtom(False, len(atom), atom).reply().atom
 | 
						|
 | 
						|
# Create windows
 | 
						|
conn.core.CreateWindowChecked(depth, wid1, root, 0, 0, 100, 100, 0, xproto.WindowClass.InputOutput, visual, 0, []).check()
 | 
						|
 | 
						|
# Set Window names
 | 
						|
set_window_name(conn, wid1, "Test window 1")
 | 
						|
 | 
						|
# Check updating opacity while MAPPING windows
 | 
						|
print("Mapping window")
 | 
						|
conn.core.MapWindowChecked(wid1).check()
 | 
						|
time.sleep(0.5)
 | 
						|
 | 
						|
print("Update opacity while fading in")
 | 
						|
conn.core.ChangePropertyChecked(xproto.PropMode.Replace, wid1, opacity_atom, xproto.Atom.CARDINAL, 32, 1, opacity_80).check()
 | 
						|
time.sleep(0.2)
 | 
						|
conn.core.ChangePropertyChecked(xproto.PropMode.Replace, wid1, opacity_atom, xproto.Atom.CARDINAL, 32, 1, opacity_single).check()
 | 
						|
time.sleep(1)
 | 
						|
 | 
						|
conn.core.DeletePropertyChecked(wid1, opacity_atom).check()
 | 
						|
time.sleep(0.5)
 | 
						|
 | 
						|
# Destroy the windows
 | 
						|
conn.core.DestroyWindowChecked(wid1).check()
 |