File size: 812 Bytes
b6a38d7
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
41
42
43
44
local function percent(val, perc)
	return MulDivRound(val, perc, 100)
end

if FirstLoad then
	g_OpenSafeArea = false
end

DefineClass.XSafeArea = {
	__parents = { "XDialog" }, 
	
	HAlign = "stretch",
	VAlign = "stretch",
	BorderWidth = 4,
	BorderColor = RGB(255,0,0),
	Translate = false,
	DrawOnTop = true,
	HandleMouse = false,
	FocusOnOpen = "",
	MarginPolicy = "FitInSafeArea",
}

function XSafeArea:Open(...)
	g_OpenSafeArea = self
	XDialog.Open(self, ...)
end

function XSafeArea:Close(...)
	g_OpenSafeArea = false
	
	XDialog.Close(self, ...)
end

function ToggleSafearea()
	if not g_OpenSafeArea then
		g_OpenSafeArea = XSafeArea:new({}, terminal.desktop)
		g_OpenSafeArea:Open()
	else
		if g_OpenSafeArea.window_state ~= "destroying" then
			g_OpenSafeArea:Close()
			g_OpenSafeArea = false
		end
	end
end