summaryrefslogtreecommitdiff
path: root/ui/app_icon.h
diff options
context:
space:
mode:
Diffstat (limited to 'ui/app_icon.h')
-rw-r--r--ui/app_icon.h40
1 files changed, 0 insertions, 40 deletions
diff --git a/ui/app_icon.h b/ui/app_icon.h
deleted file mode 100644
index a1240fee..00000000
--- a/ui/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 APP_ICON_H6748179634932174683214
-#define APP_ICON_H6748179634932174683214
-
-#include <wx/icon.h>
-#include <wx+/image_resources.h>
-
-namespace zen
-{
-inline
-wxIcon getFfsIcon()
-{
- //wxWidgets' bitmap to icon conversion on OS X can only deal with very specific sizes => check on all platforms!
- assert(getResourceImage(L"FreeFileSync").GetWidth () == getResourceImage(L"FreeFileSync").GetHeight() &&
- getResourceImage(L"FreeFileSync").GetWidth() % 128 == 0);
-#ifdef ZEN_WIN
- //for compatibility it seems we need to stick with a "real" icon
- return wxIcon(L"A_FFS_ICON");
-
-#elif defined ZEN_LINUX
- //attention: make sure to not implicitly call "instance()" again => deadlock on Linux
- wxIcon icon;
- icon.CopyFromBitmap(getResourceImage(L"FreeFileSync")); //use big logo bitmap for better quality
- return icon;
-
-#elif defined ZEN_MAC
- wxIcon icon;
- icon.CopyFromBitmap(getResourceImage(L"FreeFileSync").ConvertToImage().Scale(128, 128, wxIMAGE_QUALITY_HIGH)); //"von hinten durch die Brust ins Auge"
- return icon;
-#endif
-}
-}
-
-
-#endif //APP_ICON_H6748179634932174683214
bgstack15