mirror of
https://github.com/rad4day/Waybar.git
synced 2023-12-21 10:22:59 +01:00
13 lines
314 B
C++
13 lines
314 B
C++
|
#pragma once
|
||
|
#include <string>
|
||
|
#include <mutex>
|
||
|
#include <gtkmm/icontheme.h>
|
||
|
|
||
|
class DefaultGtkIconThemeWrapper {
|
||
|
private:
|
||
|
static std::mutex default_theme_mutex;
|
||
|
public:
|
||
|
static bool has_icon(const std::string&);
|
||
|
static Glib::RefPtr<Gdk::Pixbuf> load_icon(const char*, int, Gtk::IconLookupFlags);
|
||
|
};
|