是否可以使用 Qt 知道 symbian 手机上正在运行哪些进程?

发布于 2024-11-16 06:33:03 字数 475 浏览 3 评论 0原文

我知道它可以使用 Symbian C++

作为以下代码

void GetProcessListL(void)
{
TFullName res;
TFindProcess find;
while(find.Next(res) == KErrNone)
{
    RProcess ph;
    ph.Open(find);

    // here you can use 
    // functions of the RProcess
    // to get more information
    // of the selected process.

    // res will have the process name..

    ph.Close();
}
}

但是,有没有办法仅使用 Qt 来做到这一点?

由于 Symbian C++ 显然已经过时,甚至诺基亚也不建议再使用它。

谢谢,

I know its possible with Symbian C++

as the following code

void GetProcessListL(void)
{
TFullName res;
TFindProcess find;
while(find.Next(res) == KErrNone)
{
    RProcess ph;
    ph.Open(find);

    // here you can use 
    // functions of the RProcess
    // to get more information
    // of the selected process.

    // res will have the process name..

    ph.Close();
}
}

However, is there a way to do this using only Qt?

As Symbian C++ is apparently obsolete, even Nokia does not recommend using it anymore.

thanks,

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

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

发布评论

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

评论(1

羞稚 2024-11-23 06:33:03

根据 Qt 中心

<块引用>

我需要什么 Qt API 才能获得
QStringList 的进程?

获取
字符串列表必须在
本地方式,所以我无法帮助你。

这是一篇有关诺基亚开发者的文章,内容涉及 使用Qt 和 Symbian C++ 结合使用 PIMPL 模式,它展示了如何从 Qt 代码调用本机 Symbian C++。如果您想在其他平台上运行它,当然必须将其移植。

According to a post on Qt Centre last year:

What Qt APIs will I need to get the
processes for the QStringList?

Getting
a string list will have to be done in
native way, so I can't help you there.

Here's an article on Nokia Developer about Using Qt and Symbian C++ Together using the PIMPL pattern, it shows how to call native Symbian C++ from Qt code. This would of course have to be ported if you want to run it on other platforms.

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