summaryrefslogtreecommitdiff
path: root/library/iconBuffer.h
diff options
context:
space:
mode:
authorDaniel Wilhelm <daniel@wili.li>2014-04-18 17:08:06 +0200
committerDaniel Wilhelm <daniel@wili.li>2014-04-18 17:08:06 +0200
commitfbe76102e941b9f1edaf236788e42678f05fdf9a (patch)
treef5f538316019fa89be8dc478103490c3a826f3ac /library/iconBuffer.h
parent3.8 (diff)
downloadFreeFileSync-fbe76102e941b9f1edaf236788e42678f05fdf9a.tar.gz
FreeFileSync-fbe76102e941b9f1edaf236788e42678f05fdf9a.tar.bz2
FreeFileSync-fbe76102e941b9f1edaf236788e42678f05fdf9a.zip
3.9
Diffstat (limited to 'library/iconBuffer.h')
-rw-r--r--library/iconBuffer.h63
1 files changed, 0 insertions, 63 deletions
diff --git a/library/iconBuffer.h b/library/iconBuffer.h
deleted file mode 100644
index 4a19af3d..00000000
--- a/library/iconBuffer.h
+++ /dev/null
@@ -1,63 +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) 2008-2010 ZenJu (zhnmju123 AT gmx.de) *
-// **************************************************************************
-//
-#ifndef ICONBUFFER_H_INCLUDED
-#define ICONBUFFER_H_INCLUDED
-
-#include <vector>
-#include "../shared/zstring.h"
-#include <memory>
-
-class wxCriticalSection;
-class wxIcon;
-
-
-namespace FreeFileSync
-{
-
-class IconBuffer
-{
-public:
- static const wxIcon& getDirectoryIcon(); //one folder icon should be sufficient...
-
- static IconBuffer& getInstance();
- bool requestFileIcon(const Zstring& fileName, wxIcon* icon = NULL); //returns false if icon is not in buffer
- void setWorkload(const std::vector<Zstring>& load); //(re-)set new workload of icons to be retrieved;
-
-#ifdef FFS_WIN
- static const int ICON_SIZE = 16; //size in pixel
-#elif defined FFS_LINUX
- static const int ICON_SIZE = 24; //size in pixel
-#endif
-
-private:
- IconBuffer();
- ~IconBuffer();
-
- static const size_t BUFFER_SIZE = 800; //maximum number of icons to buffer
-
- class IconDB;
- class IconHolder;
- class IconDbSequence;
-
- //methods used by worker thread
- void insertIntoBuffer(const DefaultChar* entryName, const IconHolder& icon);
-
- static IconHolder getAssociatedIcon(const Zstring& filename);
- static IconHolder getAssociatedIconByExt(const Zstring& extension);
-
-//---------------------- Shared Data -------------------------
- std::auto_ptr<wxCriticalSection> lockIconDB;
- std::auto_ptr<IconDB> buffer; //use synchronisation when accessing this!
- std::auto_ptr<IconDbSequence> bufSequence; //save sequence of buffer entry to delete oldest elements (implicitly shared by sharing Zstring with IconDB!!!)
-//------------------------------------------------------------
-
- class WorkerThread;
- WorkerThread* worker; //detached thread => destroys itself
-};
-}
-
-#endif // ICONBUFFER_H_INCLUDED
bgstack15