summaryrefslogtreecommitdiff
path: root/ui/tray_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 /ui/tray_icon.h
parent5.22 (diff)
downloadFreeFileSync-75c07011b7c4d06acd7b45dabdcd60ab9d80f385.tar.gz
FreeFileSync-75c07011b7c4d06acd7b45dabdcd60ab9d80f385.tar.bz2
FreeFileSync-75c07011b7c4d06acd7b45dabdcd60ab9d80f385.zip
5.23
Diffstat (limited to 'ui/tray_icon.h')
-rw-r--r--ui/tray_icon.h45
1 files changed, 0 insertions, 45 deletions
diff --git a/ui/tray_icon.h b/ui/tray_icon.h
deleted file mode 100644
index 24c97eb0..00000000
--- a/ui/tray_icon.h
+++ /dev/null
@@ -1,45 +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 TRAYICON_H_84217830427534285
-#define TRAYICON_H_84217830427534285
-
-#include <functional>
-#include <wx/image.h>
-
-/*
-show tray icon with progress during lifetime of this instance
-
-ATTENTION: wxWidgets never assumes that an object indirectly destroys itself while processing an event!
- this includes wxEvtHandler-derived objects!!!
- it seems ProcessEvent() works (on Windows), but AddPendingEvent() will crash since it uses "this" after the event processing!
-
-=> don't derive from wxEvtHandler or any other wxWidgets object here!!!!!!
-=> use simple std::function as callback instead => instance may now be safely deleted in callback!
-*/
-
-class FfsTrayIcon
-{
-public:
- FfsTrayIcon(const std::function<void()>& onRequestResume); //callback only held during lifetime of this instance
- ~FfsTrayIcon();
-
- void setToolTip(const wxString& toolTip);
- void setProgress(double fraction); //number between [0, 1], for small progress indicator
-
-private:
- FfsTrayIcon(const FfsTrayIcon&); //=delete
- FfsTrayIcon& operator=(const FfsTrayIcon&); //=delete
-
- class TaskBarImpl;
- TaskBarImpl* trayIcon;
-
- wxString activeToolTip;
- double activeFraction;
- wxImage logo;
-};
-
-#endif //TRAYICON_H_84217830427534285
bgstack15