2

How can I use libappindicator to create an application indicator for a KDE app in C++ without using GTK? The example shown here uses GTK to create the menu. Is this necessary? Is there a KDE application somewhere that uses an application indicator that I can check out?

(I wanted to tag this question with appindicator and libappindicator, but I don't have enough "reputation" to do that.)

  • it's a spec, so I'm guessing there must be a KDE implementation/examples somewhere. I have used a few applications for kde that utilize the technology. – RolandiXor Mar 29 '11 at 03:12

1 Answers1

1

Application indicators are based on KStatusNotifierItem.

I'm not too familiar with it but here's a tutorial on how to get started. That's all you really need to get it to work, the app icon and it's menus should then render properly regardless of which desktop it's in.

Jorge Castro
  • 71,754