Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Standard notifications or alert styles in Symbian (Qt/S60)?

I'm building a an application using Qt on the Symbian/S60 platform and I was wondering if there was a standard notification window that I could use to pass messages to users. Using other platforms as examples, I'm looking for something equivalent to Javascript's alert() method or Cocoa's NSRunAlert* methods.

If there is not a native Symbian/S60 equivalent, is there something in the Qt space that I should be looking at? QMessageBox didn't seem to work as I might expect.

like image 533
Chris J. Karr Avatar asked Nov 25 '25 09:11

Chris J. Karr


1 Answers

Apparently there is not a way to access the native notification windows from Qt proper. I did find the following:

//Create warning message box
QMessageBox::warning(0,"Warning", "Warning message text");
//Create information message box
QMessageBox::information(0, "Information", "Information message text");
//Create critical message box
QMessageBox::critical(0, "Critical", "Critical message text");

Still not what I'm looking for, but it will have to do.

Source: Nokia

like image 173
Chris J. Karr Avatar answered Nov 26 '25 22:11

Chris J. Karr



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!