Qt - Maemo 应用程序 - 如何处理 CTRL+C?

发布于 2024-10-13 02:12:10 字数 204 浏览 3 评论 0原文

我用 C++ 编写了一个简单的应用程序来拍照,我猜想每当按下 CTRL+C 时我可能应该进行一些清理。我正在使用 QTCreator 和 MADDE 一起编写应用程序,但我并没有真正使用我所知道的任何 Qt 挂钩。

如何在我的应用程序中处理 CTRL+C

谢谢, 瓦尔特

I wrote a simple application to take pictures in c++ and am guessing I probably should do some cleanup whenever CTRL+C is pressed. I am using QTCreator to write the application along with MADDE, but am not really using any Qt hooks that I know of.

How can I handle CTRL+C in my application?

Thanks,
Walter

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

绅刃 2024-10-20 02:12:10

看来maemo是基于linux的。在 Linux C 程序中,您会收到一个必须为其编写处理程序的操作系统信号。你可以走这条路,但 Qt 似乎提供了一个信号,表明当程序准备退出时它会触发。 http://doc.qt.nokia.com/stable/qcoreapplication.html#aboutToQuit

这里有一些关于如何捕获有问题的操作系统信号,然后采取行动的更多信息它。请注意,如果您捕获操作系统信号,您可能不会再自动获得“aboutToQuit”信号。

http://doc.qt.nokia.com/4.7/unix-signals.html

It appears that maemo is based on linux. In linux C programs, you get an OS signal that you must write a handler for. You can go that route, but Qt seems to offer a signal that it fires when a program is ready to quit.. http://doc.qt.nokia.com/stable/qcoreapplication.html#aboutToQuit

Here is some more info about how to go about catching the OS signal in question, and then acting on it. Note that if you catch the OS signal, you probably won't get the "aboutToQuit" signal automatically anymore.

http://doc.qt.nokia.com/4.7/unix-signals.html

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文