mirror of
https://github.com/transmission/transmission
synced 2024-12-26 09:37:56 +00:00
3e072f9bd4
* (C++) Macros should not be used to define constants * (C++) Memory should not be managed manually * (C++) "void*" should not be used in typedefs, member variables, function parameters or return type * (C++) When the "Rule-of-Zero" is not applicable, the "Rule-of-Five" should be followed * (C++) "switch" statements should have "default" clauses * (C++) "explicit" should be used on single-parameter constructors and conversiosn operators * (C++) Non-const global variables should not be used
22 lines
523 B
C++
22 lines
523 B
C++
/*
|
|
* icons.[ch] written by Paolo Bacchilega, who writes:
|
|
* "There is no problem for me, you can license
|
|
* my code under whatever licence you wish :)"
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <string>
|
|
|
|
#include <gtkmm.h>
|
|
|
|
extern Glib::ustring const DirectoryMimeType;
|
|
extern Glib::ustring const UnknownMimeType;
|
|
|
|
Glib::ustring gtr_get_mime_type_from_filename(std::string const& file);
|
|
|
|
Glib::RefPtr<Gdk::Pixbuf> gtr_get_mime_type_icon(
|
|
Glib::ustring const& mime_type,
|
|
Gtk::IconSize icon_size,
|
|
Gtk::Widget& for_widget);
|