mirror of
https://github.com/ra3xdh/qucs_s
synced 2025-03-28 21:13:26 +00:00
add app icon using cmake and rc file.
it also adds app icon to qucs.exe
This commit is contained in:
parent
22d5238d9f
commit
3bb0003d50
@ -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.
|
||||
|
@ -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);
|
||||
|
@ -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; }");
|
||||
|
@ -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
1
qucs/qucs_icon.rc
Normal file
@ -0,0 +1 @@
|
||||
IDI_ICON1 ICON DISCARDABLE "bitmaps/qucs.ico"
|
Loading…
x
Reference in New Issue
Block a user