summaryrefslogtreecommitdiffstats
path: root/fbreader/src/tree/FBTree.h
diff options
context:
space:
mode:
Diffstat (limited to 'fbreader/src/tree/FBTree.h')
-rw-r--r--fbreader/src/tree/FBTree.h64
1 files changed, 0 insertions, 64 deletions
diff --git a/fbreader/src/tree/FBTree.h b/fbreader/src/tree/FBTree.h
deleted file mode 100644
index e0efb38..0000000
--- a/fbreader/src/tree/FBTree.h
+++ /dev/null
@@ -1,64 +0,0 @@
-/*
- * Copyright (C) 2004-2012 Geometer Plus <[email protected]>
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
- * 02110-1301, USA.
- */
-
-#ifndef __FBTREE_H__
-#define __FBTREE_H__
-
-#include <ZLTreeTitledNode.h>
-
-class FBTree : public ZLTreeTitledNode {
-
-public:
- static const ZLTypeId TYPE_ID;
-
-private:
- const ZLTypeId &typeId() const;
-
-private:
- class ExpandTreeAction;
-
-public:
- static shared_ptr<const ZLImage> defaultCoverImage(const std::string &id);
- //static std::string defaultImageUrl(const std::string &id);
-
-public: //TODO make protected
- void expand();
-
-private:
- static std::map<std::string,shared_ptr<const ZLImage> > ourDefaultCovers;
- static std::map<std::string,std::string> ourDefaultUrls;
-
-public:
- FBTree(ZLTreeNode *parent, std::size_t position = (std::size_t)-1);
-// shared_ptr<const ZLImage> coverImage() const;
- std::string subtitle() const;
-
-protected:
- void registerExpandTreeAction();
-
-private:
-// mutable bool myCoverImageIsStored;
-// mutable shared_ptr<const ZLImage> myStoredCoverImage;
-};
-
-
-
-
-
-#endif /* __FBTREE_H__ */