Ich habe bereits textFormat
auf Qt::RichText
festgelegt, aber der Link ist immer noch nicht anklickbar.QMessageBox mit Link innerhalb, kann nicht klicken
QMessageBox msgBox(this);
msgBox.setWindowTitle(QApplication::applicationName()
+ " $VER " + QApplication::applicationVersion());
msgBox.setTextFormat(Qt::RichText); //this is what makes the links clickable
msgBox.setText("<a href=\"google.com\">Google</a>");
msgBox.setStandardButtons(QMessageBox::Ok);
msgBox.exec();
Irgendwelche Lösungen? Es hat bestätigt, dass es nicht mit Qt 4.7 funktioniert.
Wie wäre es mit diesem: '" Google "'? – Anonymous
@Anonymous auch nicht funktionieren .. Ich weiß wirklich nicht warum, sollte es xdg-open unter Linux – daisy
aufrufen Erhalten Sie irgendwelche Debug-Ausgabe in der Konsole? Tritt das gleiche mit einem einfachen Standalone-Code auf? Gibt es eine Datei-Öffner-Anwendung für eine Desktop-Umgebung ('gvfs-open',' kde-open', etc.)? – Anonymous