2009-03-02 23:31:01 +00:00
|
|
|
/*
|
|
|
|
* icons.[ch] written by Paolo Bacchilega, who writes:
|
2011-01-19 13:48:47 +00:00
|
|
|
* "There is no problem for me, you can license
|
|
|
|
* my code under whatever licence you wish :)"
|
2010-10-01 20:22:51 +00:00
|
|
|
*
|
2009-03-02 23:31:01 +00:00
|
|
|
*/
|
|
|
|
|
2016-03-29 16:37:21 +00:00
|
|
|
#pragma once
|
2009-03-02 23:31:01 +00:00
|
|
|
|
2022-04-26 23:24:07 +00:00
|
|
|
#include <string_view>
|
2021-10-18 20:22:31 +00:00
|
|
|
|
|
|
|
#include <gtkmm.h>
|
|
|
|
|
2022-04-26 23:24:07 +00:00
|
|
|
extern std::string_view const DirectoryMimeType;
|
|
|
|
extern std::string_view const UnknownMimeType;
|
2009-03-02 23:31:01 +00:00
|
|
|
|
2022-10-08 22:50:03 +00:00
|
|
|
Glib::RefPtr<Gio::Icon> gtr_get_mime_type_icon(std::string_view mime_type);
|