Sayonara Player
GUI_Helper.h
1 #ifndef GUI_HELPER_H
2 #define GUI_HELPER_H
3 
4 #include <QIcon>
5 #include <QString>
6 #include <QPixmap>
7 #include <QSize>
8 #include <QImage>
9 #include <QWidget>
10 
11 namespace GUI
12 {
18  QIcon get_icon(const QString& icon_name);
19 
20 
28  QPixmap get_pixmap(const QString& icon_name, QSize sz=QSize(0, 0), bool keep_aspect=true);
29 
30 }
31 
32 #endif // GUI_HELPER_H
Definition: GUI_Helper.h:11