弹出窗口Mac OS在Qt

时间:2016-11-30 03:38:44

标签: c++ qt cocoa popup

我可以在Qt上制作弹出窗口吗?

click for example

我不确切地知道它是如何调用的。

2 个答案:

答案 0 :(得分:0)

您可以使用QSystemTrayIcon。这会在任务栏中创建一个托盘图标,这是通知的来源。要显示通知,请使用showMessage方法。此方法需要两个QString个参数,第一个是标题,第二个是消息。例如,以下代码显示“Hello World!”标题为“标题”的消息:

QSystemTrayIcon *trayIcon = new QSystemTrayIcon(button);
trayIcon->setIcon(QIcon("image.png"));
trayIcon->show();
trayIcon->showMessage("Title", "Hello World!");

您必须使用setIcon方法设置托盘图标的图标,否则它将无法使用。您还必须使用show方法显示托盘图标。使用messageClicked信号单击消息时,您也可以执行某些操作。

以下是一个程序的完整示例,其中单击按钮将显示该消息,单击该消息将显示正常消息框:

#include <QApplication>
#include <QtWidgets>

int main(int argc, char **argv){
    QApplication app(argc, argv);

    QPushButton button("Show message");
    QSystemTrayIcon trayIcon;

    QObject::connect(&button, &QPushButton::clicked, [&trayIcon](){
        trayIcon.showMessage("Title", "Hello World!");    //Show the popup when the button is clicked on
    });

    QObject::connect(&trayIcon, &QSystemTrayIcon::messageClicked, [](){
        QMessageBox::information(nullptr, "", "Message Clicked");    //Show a message box when the popup is clicked on
    });

    trayIcon.setIcon(QIcon("image.png"));    //Set the tray icon icon to image.png

    trayIcon.show();    //Show the tray icon
    button.show();    //Show the button

    return app.exec();
}

以下是Windows上的结果:

enter image description here

以下是Mac上的结果:

enter image description here

我已在两个屏幕截图上圈出托盘图标,以便您可以看到托盘图标的样子。尝试单击弹出窗口以查看会发生什么。您可以使用代码来更改消息和图像,以真正了解代码的工作原理。

答案 1 :(得分:0)

您可以使用QMenuQActionTrayIcon来执行此操作。 You can use QMenu, QActions and the TrayIcon to do this.

我不确定如何获取该圆形气泡的确切格式。这可能不是Qt的功能。