summaryrefslogtreecommitdiff
path: root/applets/notification_area/status-notifier/Makefile.am
AgeCommit message (Collapse)AuthorFilesLines
2017-01-23status-notifier: Remove custom image menu item classColomban Wendling1-2/+0
It's only there because GtkImageMenuItem is deprecated, it doesn't offer any original features.
2017-01-23status-notifier: Move GTK compatibility code inlineColomban Wendling1-3/+0
2017-01-23status-notifier: Simplify compatibility code for GTK 3.20Colomban Wendling1-1/+0
Also, that part was quite fragile.
2017-01-23status-notifier: Fix elements display on GTK < 3.20Colomban Wendling1-0/+2
On GTK 3.20 onwards, themes are expected to use CSS names rather than widget class names, and apparently CSS names are not inherited. So, a derived widget altering its CSS name won't be styled as its parent classes. Thus, SnItem setting the CSS name "sn-item" avoids being styled as a "button". But on older GTK versions, the widget class being used makes this change ineffective. Fix that by introducing a custom derived button that doesn't draw the unwanted parts.
2017-01-23Add compatibility for GTK 3.14Colomban Wendling1-0/+4
2017-01-23Add StatusNotifier support to the Notification Area appletColomban Wendling1-0/+83
The StatusNotifier part of the implementation is based off gnome-panel's status-notifier applet.