diff options
author | mbkma <[email protected]> | 2021-04-24 18:02:25 +0200 |
---|---|---|
committer | raveit65 <[email protected]> | 2021-06-10 15:03:09 +0200 |
commit | 80640c9b70283c5ad13858d8b820302bb6d06132 (patch) | |
tree | 6abe9f3196076ff49ae8221c9c26f957861045a7 /src/prettytable.h | |
parent | 91a35358aed44381c9e5e249dcc081d77b4e29ee (diff) | |
download | mate-system-monitor-80640c9b70283c5ad13858d8b820302bb6d06132.tar.bz2 mate-system-monitor-80640c9b70283c5ad13858d8b820302bb6d06132.tar.xz |
add wayland support
therefore make libwnck optional (libwnck is x11 only)
see https://gitlab.gnome.org/GNOME/gnome-system-monitor/-/commit/3705931e307e87878f205b905eaa3f5daaffcf09
and https://gitlab.gnome.org/GNOME/gnome-system-monitor/-/commit/8c4d47d625661e848643ce564f63ed3ec1e83293
and https://gitlab.gnome.org/GNOME/gnome-system-monitor/-/commit/1ea64e9965bd6f1026f1167b692e7cc83c269be3
Diffstat (limited to 'src/prettytable.h')
-rw-r--r-- | src/prettytable.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/prettytable.h b/src/prettytable.h index ac150de..fccca98 100644 --- a/src/prettytable.h +++ b/src/prettytable.h @@ -12,10 +12,12 @@ #include <map> #include <string> +#ifdef HAVE_WNCK extern "C" { #define WNCK_I_KNOW_THIS_IS_UNSTABLE #include <libwnck/libwnck.h> } +#endif #include "iconthemewrapper.h" @@ -35,17 +37,20 @@ class PrettyTable private: +#ifdef HAVE_WNCK static void on_application_opened(WnckScreen* screen, WnckApplication* app, gpointer data); static void on_application_closed(WnckScreen* screen, WnckApplication* app, gpointer data); void register_application(pid_t pid, Glib::RefPtr<Gdk::Pixbuf> icon); void unregister_application(pid_t pid); - +#endif Glib::RefPtr<Gdk::Pixbuf> get_icon_from_theme(const ProcInfo &); Glib::RefPtr<Gdk::Pixbuf> get_icon_from_default(const ProcInfo &); Glib::RefPtr<Gdk::Pixbuf> get_icon_from_gio(const ProcInfo &); +#ifdef HAVE_WNCK Glib::RefPtr<Gdk::Pixbuf> get_icon_from_wnck(const ProcInfo &); +#endif Glib::RefPtr<Gdk::Pixbuf> get_icon_from_name(const ProcInfo &); Glib::RefPtr<Gdk::Pixbuf> get_icon_for_kernel(const ProcInfo &); Glib::RefPtr<Gdk::Pixbuf> get_icon_dummy(const ProcInfo &); |