maemo.org - Talk

maemo.org - Talk (https://talk.maemo.org/index.php)
-   Development (https://talk.maemo.org/forumdisplay.php?f=13)
-   -   Guide: E-mail/SMS-style notifications in Qt apps (https://talk.maemo.org/showthread.php?t=54815)

Venemo 2010-06-01 16:52

Guide: E-mail/SMS-style notifications in Qt apps
 
Hey Everyone,

Today I got envious of all the apps that create those shiny notifications, so I decided to put together an app in Qt to see how to do it.

Unfortunately the QMaemo5InformationBox doesn't display the style of notifications I needed.

So, I went to IRC and asked the good people in #qt-maemo, and they said that Qt doesn't have an abstraction of this particular UI element. They pointed me to this guide on Forum Nokia, which almost did it. Unfortunately it doesn't work with MADDE.

After hours of suffering and pain I successfully overcame the limitations of MADDE (again, thanks to the good people at #qt-maemo), and I put together a small example in the repo of my project.

Here it goes:
  • Check out this SVN repo or download the sources
  • Copy-paste my QMaemo5Notification class (header and cpp file)
  • Make sure you have added all the necessary libraries to your .pro file's INCLUDEPATH and LIBS. (See the example .pro file)
  • it is necessary to put "CONFIG += no_keywords" into the .pro file because the headers required contain keywords that are otherwise reserved by Qt.
    If you would use them in your own code, I recommend you to put QMaemo5Notification into its own project file (or .pri file)

That's it.
Now you can just do this:

Code:

#include "qmaemo5notification.hpp"
...

QMaemo5Notification::information("Hey, this is a note!");

Of course it has some tasty overloads to exploit libnotify's functionality.

I hope I could spare some people the pain I went through, so I decided to share this with the community. :)

gri 2010-06-01 17:07

Re: Guide: E-mail/SMS-style notifications in Qt apps
 
Already thought of implementing this, but you were faster :)

It would be nice if you could ask the libQxt developers if they want to integrate this into their library (or another common library).
So someone could package libQxt for maemo and everyone could use those features :)

Venemo 2010-06-01 20:24

Re: Guide: E-mail/SMS-style notifications in Qt apps
 
Quote:

Originally Posted by gri (Post 694229)
Already thought of implementing this, but you were faster :)

It would be nice if you could ask the libQxt developers if they want to integrate this into their library (or another common library).
So someone could package libQxt for maemo and everyone could use those features :)

Everyone can use these features, just download my source code. :)
BTW, you can ask them yourself on freenode. :)

HeartJ 2010-06-06 04:32

Re: Guide: E-mail/SMS-style notifications in Qt apps
 
Thx for your thread and sources and I'am starting to develop with Qt.

Venemo 2010-06-13 13:43

Re: Guide: E-mail/SMS-style notifications in Qt apps
 
Bump.

Okay, I successfully added some new functionality to this stuff, namely this: when the user clicks on the notification, you can now add a D-Bus call that is executed.

(Very much like when you hit the SMS notification, the SMS app appears.)
It is now also possible to set "hints" for the notifications.

A big thanks for the great people who made nowplayingd (I got the idea of how to do this from their code), and also another big thanks to w00t and Frals who helped me very much with troubleshooting and advices on IRC.

To exploit this functionality, you'll need a D-Bus method to call or to expose your app to D-Bus as described here.
(I also found out that adding X-Osso-Service to the .desktop file and creating a .service file is not required for basic usage.)

Head over to the repo (header file, source file), and grab your copy!

You can find a pretty good example on how to use it in my app, namely in this file.

Good luck!

EDIT:
If you are cunning enough, you may also find out from my sources how to blink the notification LED when these notifications appear! :p


All times are GMT. The time now is 15:44.

vBulletin® Version 3.8.8