Moved icons into subfolder
This commit is contained in:
Before Width: | Height: | Size: 991 B After Width: | Height: | Size: 991 B |
Before Width: | Height: | Size: 1.7 KiB After Width: | Height: | Size: 1.7 KiB |
Before Width: | Height: | Size: 1.2 KiB After Width: | Height: | Size: 1.2 KiB |
@@ -48,12 +48,12 @@ private:
|
|||||||
|
|
||||||
QVector<Item> m_items;
|
QVector<Item> m_items;
|
||||||
|
|
||||||
const QPixmap m_pixmapSucceeded { ":/loganalyzer/succeeded.png" };
|
const QPixmap m_pixmapSucceeded { ":/loganalyzer/icons/succeeded.png" };
|
||||||
const QPixmap m_pixmapFailed { ":/loganalyzer/failed.png" };
|
const QPixmap m_pixmapFailed { ":/loganalyzer/icons/failed.png" };
|
||||||
const QPixmap m_pixmapEmpty { [this](){
|
const QPixmap m_pixmapEmpty { [this](){
|
||||||
QPixmap pixmap(m_pixmapSucceeded.size());
|
QPixmap pixmap(m_pixmapSucceeded.size());
|
||||||
pixmap.fill();
|
pixmap.fill();
|
||||||
return pixmap;
|
return pixmap;
|
||||||
}() };
|
}() };
|
||||||
QMovie m_movieLoading { ":/loganalyzer/loading.gif" };
|
QMovie m_movieLoading { ":/loganalyzer/icons/loading.gif" };
|
||||||
};
|
};
|
||||||
|
@@ -1,7 +1,7 @@
|
|||||||
<RCC>
|
<RCC>
|
||||||
<qresource prefix="/loganalyzer">
|
<qresource prefix="/loganalyzer">
|
||||||
<file>loading.gif</file>
|
<file>icons/loading.gif</file>
|
||||||
<file>failed.png</file>
|
<file>icons/failed.png</file>
|
||||||
<file>succeeded.png</file>
|
<file>icons/succeeded.png</file>
|
||||||
</qresource>
|
</qresource>
|
||||||
</RCC>
|
</RCC>
|
||||||
|
@@ -16,9 +16,9 @@ class ImportProgressPage : public QWizardPage
|
|||||||
{
|
{
|
||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
|
|
||||||
const QPixmap m_pixmapSucceeded { ":/loganalyzer/succeeded.png" };
|
const QPixmap m_pixmapSucceeded { ":/loganalyzer/icons/succeeded.png" };
|
||||||
const QPixmap m_pixmapFailed { ":/loganalyzer/failed.png" };
|
const QPixmap m_pixmapFailed { ":/loganalyzer/icons/failed.png" };
|
||||||
QMovie m_movieLoading { ":/loganalyzer/loading.gif" };
|
QMovie m_movieLoading { ":/loganalyzer/icons/loading.gif" };
|
||||||
|
|
||||||
public:
|
public:
|
||||||
explicit ImportProgressPage(QWidget *parent = nullptr);
|
explicit ImportProgressPage(QWidget *parent = nullptr);
|
||||||
|
@@ -17,9 +17,9 @@ class RemoteImportScanPage : public QWizardPage
|
|||||||
{
|
{
|
||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
|
|
||||||
const QPixmap m_pixmapSucceeded { ":/loganalyzer/succeeded.png" };
|
const QPixmap m_pixmapSucceeded { ":/loganalyzer/icons/succeeded.png" };
|
||||||
const QPixmap m_pixmapFailed { ":/loganalyzer/failed.png" };
|
const QPixmap m_pixmapFailed { ":/loganalyzer/icons/failed.png" };
|
||||||
QMovie m_movieLoading { ":/loganalyzer/loading.gif" };
|
QMovie m_movieLoading { ":/loganalyzer/icons/loading.gif" };
|
||||||
|
|
||||||
public:
|
public:
|
||||||
explicit RemoteImportScanPage(QWidget *parent = nullptr);
|
explicit RemoteImportScanPage(QWidget *parent = nullptr);
|
||||||
|
Reference in New Issue
Block a user