PDA

View Full Version : Problem with QSystemTrayIcon on Mac OS



mourad
22nd May 2008, 09:13
Hello everybody, my application runs on Windows and Mac. When it is lunched, I verify if a DB update is available or not. If yes, a notification is displayed and when the user clicks on the message in the notification a dialog is showen to update the DB. Under Windows it works correctly. But under Mac the notification is displayed but the signal signal when messageClicked is not transmismitted (I've done some test to verify it). Does anyone have an idea about this and can help me. I'm on Mac OS X 10.4 Tiger PPC, I'm using Xcode and Qt 4.3
Best Regards.
Mourad

patrik08
22nd May 2008, 10:53
Use QT 4.4 on mac tiger on 4.3 i found many events that not run on Tiger ... now on 4.4 is ok..

and append on main ..


#ifdef Q_WS_MAC
#include <Carbon/Carbon.h>
extern void qt_mac_set_dock_menu(QMenu *);
#endif


i dont know why ... i see only that run...