Mise en place des nouvelles icones pour Windows
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@619 bfdf4180-ca20-0410-9c96-a3a8aa849046
BIN
ico/windows_icon/application-x-qet-element.ico
Normal file
After Width: | Height: | Size: 32 KiB |
BIN
ico/windows_icon/application-x-qet-project.ico
Normal file
After Width: | Height: | Size: 32 KiB |
Before Width: | Height: | Size: 747 B |
Before Width: | Height: | Size: 7.9 KiB |
Before Width: | Height: | Size: 1.6 KiB |
Before Width: | Height: | Size: 2.5 KiB |
Before Width: | Height: | Size: 76 KiB |
Before Width: | Height: | Size: 255 B |
Before Width: | Height: | Size: 424 B |
Before Width: | Height: | Size: 491 B |
Before Width: | Height: | Size: 7.2 KiB |
Before Width: | Height: | Size: 239 B |
Before Width: | Height: | Size: 373 B |
Before Width: | Height: | Size: 489 B |
Before Width: | Height: | Size: 7.2 KiB |
18
ico/windows_icon/generate_windows_icons.sh
Executable file
@ -0,0 +1,18 @@
|
||||
#!/bin/bash
|
||||
# Dependance : png2ico
|
||||
PNG_DIR="../oxygen-icons"
|
||||
|
||||
if [ -z "$(which png2ico 2> /dev/null)" ]; then
|
||||
echo "Error: png2ico not found."
|
||||
exit 1
|
||||
fi
|
||||
|
||||
function generateIcon {
|
||||
echo "Generating icon from files ${1}.png in ${PNG_DIR}."
|
||||
png2ico "${1}.ico" $(find "${PNG_DIR}" -name "${1}.png" | grep -v 2[25])
|
||||
}
|
||||
|
||||
generateIcon qelectrotech
|
||||
generateIcon application-x-qet-element
|
||||
generateIcon application-x-qet-project
|
||||
|
BIN
ico/windows_icon/qelectrotech.ico
Normal file
After Width: | Height: | Size: 32 KiB |
@ -1 +1 @@
|
||||
IDI_ICON1 ICON DISCARDABLE "ico/windows_icon/application_icon/qet.ico"
|
||||
IDI_ICON1 ICON DISCARDABLE "ico/windows_icon/qelectrotech.ico"
|
@ -257,7 +257,7 @@ SOURCES += sources/aboutqet.cpp \
|
||||
RESOURCES += qelectrotech.qrc
|
||||
TRANSLATIONS += lang/qet_en.ts lang/qet_es.ts lang/qet_fr.ts
|
||||
TRANSLATIONS += lang/qt_es.ts lang/qt_fr.ts
|
||||
RC_FILE = ico/windows_icon/application_icon/qelectrotech.rc
|
||||
RC_FILE = ico/windows_icon/qelectrotech.rc
|
||||
QT += xml svg network
|
||||
CONFIG += debug_and_release warn_on
|
||||
TARGET = qelectrotech
|
||||
|