summaryrefslogtreecommitdiffstats
path: root/src/sq_dirthumbs.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/sq_dirthumbs.h')
-rw-r--r--src/sq_dirthumbs.h70
1 files changed, 70 insertions, 0 deletions
diff --git a/src/sq_dirthumbs.h b/src/sq_dirthumbs.h
new file mode 100644
index 0000000..e59063f
--- /dev/null
+++ b/src/sq_dirthumbs.h
@@ -0,0 +1,70 @@
+/***************************************************************************
+ sq_dirthumbs.h - description
+ -------------------
+ begin : ??? Jul 18 2007
+ copyright : (C) 2007 by Baryshev Dmitry
+ email : ksquirrel.iv@gmail.com
+ ***************************************************************************/
+
+/***************************************************************************
+ * *
+ * 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. *
+ * *
+ ***************************************************************************/
+
+#ifndef SQ_DIR_THUMBS_H
+#define SQ_DIR_THUMBS_H
+
+#include "sq_dir.h"
+
+struct SQ_Thumbnail;
+
+class SQ_DirThumbs : public SQ_Dir
+{
+ public:
+ SQ_DirThumbs();
+ ~SQ_DirThumbs();
+
+ virtual TQString absPath(const KURL &relurl);
+
+ /*
+ * Save thumbnail to storage.
+ */
+ void saveThumbnail(const KURL &url, SQ_Thumbnail &thumb);
+
+ /*
+ * Remove file from storage
+ */
+ void removeFile(const KURL &url);
+
+ /*
+ * Compare 'last modified' time of 'url'
+ * and thumbnail time.
+ */
+ bool needUpdate(const TQString &turl, time_t tm);
+
+ virtual TQString root() const;
+
+ private:
+ /*
+ * Thumbnail cache will have ~/.thumbnails/normal path
+ */
+ void setRoot();
+
+ private:
+ /*
+ * m_orig to save thumbnails
+ */
+ TQString m_orig;
+};
+
+inline
+TQString SQ_DirThumbs::root() const
+{
+ return m_orig;
+}
+
+#endif