Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试创建一个程序来锁定具有 Linux 操作系统的计算机的屏幕,该计算机将使用我自己的身份验证机制解锁。我可以单独在Qt中完成(锁定屏幕,切换到锁定屏幕的能力......)还是我需要学习XCB或相关的东西?
Qt 不涵盖窗口或会话管理(如锁定屏幕)。您需要使用本机 API。
通常锁定屏幕不是随机应用程序做的事情,而是桌面环境提供给用户的事情。因此,在 UI 工具包中涵盖此类任务没有多大意义。(与管理相关的任务也是如此,例如配置网络接口)。