add app icon using cmake and rc file.

it also adds app icon to qucs.exe
This commit is contained in:
dsm 2024-09-05 17:20:08 +03:00
parent 22d5238d9f
commit 3bb0003d50
5 changed files with 8 additions and 4 deletions

View File

@ -257,7 +257,7 @@ IF(APPLE)
#SET(RESOURCES_SRCS ${RESOURCES_SRCS} ${LANG_SRCS})
ENDIF(APPLE)
set(app_icon_resource_windows "${CMAKE_CURRENT_SOURCE_DIR}/qucs_icon.rc")
#
# CMake's way of creating an executable
#
@ -265,7 +265,9 @@ ADD_EXECUTABLE( ${QUCS_NAME} MACOSX_BUNDLE WIN32
${QUCS_HDRS}
${QUCS_SRCS}
${QUCS_MOC_SRCS}
${RESOURCES_SRCS} )
${RESOURCES_SRCS}
${app_icon_resource_windows}
)
#
# Tell CMake which libraries we need to link our executable against.

View File

@ -124,7 +124,7 @@ AboutDialog::AboutDialog(QWidget *parent)
//all->setSpacing(0);
QLabel *iconLabel = new QLabel();
iconLabel->setPixmap(QPixmap(QString(":/bitmaps/hicolor/128x128/apps/qucs.png")));
iconLabel->setPixmap(QPixmap(QString(":/bitmaps/hicolor/scalable/apps/qucs.svg")));
QWidget *hbox = new QWidget();
QHBoxLayout *hl = new QHBoxLayout(hbox);

View File

@ -265,7 +265,7 @@ void QucsApp::initView()
// set application icon
// APPLE sets the QApplication icon with Info.plist
#ifndef __APPLE__
setWindowIcon (QPixmap(":/bitmaps/big.qucs.xpm"));
//setWindowIcon (QPixmap(QString(":/bitmaps/hicolor/scalable/apps/qucs.svg")));
#else
// setUnifiedTitleAndToolBarOnMac(true);
setStyleSheet("QToolButton { padding: 0px; }");

View File

@ -7,6 +7,7 @@
<file>bitmaps/tiny.button.qucs.xpm</file>
<file>bitmaps/tiny.qucs.xpm</file>
<file>bitmaps/hicolor/128x128/apps/qucs.png</file>
<file>bitmaps/hicolor/scalable/apps/qucs.svg</file>
<file>bitmaps/svg/filenew.svg</file>
<file>bitmaps/svg/textnew.svg</file>
<file>bitmaps/svg/symnew.svg</file>

1
qucs/qucs_icon.rc Normal file
View File

@ -0,0 +1 @@
IDI_ICON1 ICON DISCARDABLE "bitmaps/qucs.ico"