summaryrefslogtreecommitdiff
path: root/RealtimeSync/app_icon.h
diff options
context:
space:
mode:
authorDaniel Wilhelm <daniel@wili.li>2014-04-18 17:29:28 +0200
committerDaniel Wilhelm <daniel@wili.li>2014-04-18 17:29:28 +0200
commit75c07011b7c4d06acd7b45dabdcd60ab9d80f385 (patch)
tree8853c3978dd152ef377e652239448b1352320206 /RealtimeSync/app_icon.h
parent5.22 (diff)
downloadFreeFileSync-75c07011b7c4d06acd7b45dabdcd60ab9d80f385.tar.gz
FreeFileSync-75c07011b7c4d06acd7b45dabdcd60ab9d80f385.tar.bz2
FreeFileSync-75c07011b7c4d06acd7b45dabdcd60ab9d80f385.zip
5.23
Diffstat (limited to 'RealtimeSync/app_icon.h')
-rw-r--r--RealtimeSync/app_icon.h40
1 files changed, 0 insertions, 40 deletions
diff --git a/RealtimeSync/app_icon.h b/RealtimeSync/app_icon.h
deleted file mode 100644
index fcd2b548..00000000
--- a/RealtimeSync/app_icon.h
+++ /dev/null
@@ -1,40 +0,0 @@
-// **************************************************************************
-// * This file is part of the FreeFileSync project. It is distributed under *
-// * GNU General Public License: http://www.gnu.org/licenses/gpl.html *
-// * Copyright (C) Zenju (zenju AT gmx DOT de) - All Rights Reserved *
-// **************************************************************************
-
-#ifndef RTS_APP_ICON_8914578394545
-#define RTS_APP_ICON_8914578394545
-
-#include <wx/icon.h>
-#include <wx+/image_resources.h>
-
-namespace zen
-{
-inline
-wxIcon getRtsIcon()
-{
- //wxWidgets' bitmap to icon conversion on OS X can only deal with very specific sizes => check on all platforms!
- assert(getResourceImage(L"RealtimeSync").GetWidth () == getResourceImage(L"RealtimeSync").GetHeight() &&
- getResourceImage(L"RealtimeSync").GetWidth() % 128 == 0);
-#ifdef ZEN_WIN
- //for compatibility it seems we need to stick with a "real" icon
- return wxIcon(L"A_RTS_ICON");
-
-#elif defined ZEN_LINUX
- //attention: make sure to not implicitly call "instance()" again => deadlock on Linux
- wxIcon icon;
- icon.CopyFromBitmap(getResourceImage(L"RealtimeSync")); //use big logo bitmap for better quality
- return icon;
-
-#elif defined ZEN_MAC
- wxIcon icon;
- icon.CopyFromBitmap(getResourceImage(L"RealtimeSync").ConvertToImage().Scale(128, 128, wxIMAGE_QUALITY_HIGH)); //"von hinten durch die Brust ins Auge"
- return icon;
-#endif
-}
-}
-
-
-#endif //RTS_APP_ICON_8914578394545
bgstack15