How Qt GUI Appliction implement funtion that prevent window be capture or forbid screen be recorded?
-
On Qt Gui appliction, how prevent the window be captureed and forbide screen be recorded.
if I make Qt Gui appliction implement these function,what i shoud do?
I use ubuntu system to devlop Qt appliction, Can I use origin X11(xlib or XCB etc) library to implement these function. -
Hi and welcome to devnet,
Can you explain your use case ?
-
@SGaist We all know that Qt has re-encapsulated the xlib library. Desktop windows in linux systems need to be drawn with an x server (like Xwindows), and Qt is one of the best encapsulation libraries for developing x client programs. I want to know how to use Qt to implement the underlying data protection for the Xclient window
-
You are forgetting about Wayland.
In any case, for meddling with the internals of X.org for antitheft system, you'll have to go low level with Xlib and I think it's something that is unlikely to be available without lots of work if at all.
Just think that anybody with a camera or a smartphone will be able to record the screen.
-
You are forgetting about Wayland.
In any case, for meddling with the internals of X.org for antitheft system, you'll have to go low level with Xlib and I think it's something that is unlikely to be available without lots of work if at all.
Just think that anybody with a camera or a smartphone will be able to record the screen.
-
There's nothing pre-made for that.
It looks like you want to implement something like DRM, what is exactly your final goal ?