Move qt_cam_copy_register to QtCamera
[harmattan/cameraplus] / src / fileindex.h
1 // -*- c++ -*-
2
3 /*!
4  * This file is part of CameraPlus.
5  *
6  * Copyright (C) 2012-2013 Mohammed Sameer <msameer@foolab.org>
7  *
8  * This library is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Lesser General Public
10  * License as published by the Free Software Foundation; either
11  * version 2.1 of the License, or (at your option) any later version.
12  *
13  * This library is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16  * Lesser General Public License for more details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with this library; if not, write to the Free Software
20  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
21  */
22
23 #ifndef FILE_INDEX_H
24 #define FILE_INDEX_H
25
26 #include <QString>
27
28 class Settings;
29
30 class FileIndex {
31 public:
32   FileIndex(Settings *settings);
33   virtual ~FileIndex();
34
35   typedef enum {
36     Image,
37     Video,
38   } Type;
39
40   virtual QString stamp(const Type& type) = 0;
41   virtual void setStamp(const Type& type, const QString& stamp) = 0;
42
43   virtual int counter(const Type& type) = 0;
44   virtual void setCounter(const Type& type, int counter) = 0;
45
46 protected:
47   Settings *m_settings;
48 };
49
50 class SingleFileIndex : public FileIndex {
51 public:
52   SingleFileIndex(Settings *settings);
53
54   QString stamp(const Type& type);
55   void setStamp(const Type& type, const QString& stamp);
56
57   int counter(const Type& type);
58   void setCounter(const Type& type, int counter);
59 };
60
61 class MultiFileIndex : public FileIndex {
62 public:
63   MultiFileIndex(Settings *settings);
64
65   QString stamp(const Type& type);
66   void setStamp(const Type& type, const QString& stamp);
67
68   int counter(const Type& type);
69   void setCounter(const Type& type, int counter);
70 };
71
72 #endif /* FILE_INDEX_H */