~artmello/gallery-app/gallery-app-fix_1524973

« back to all changes in this revision

Viewing changes to src/media-object.h

  • Committer: Adam Dingle
  • Date: 2011-12-02 16:50:22 UTC
  • Revision ID: adam@yorba.org-20111202165022-uwvs4abs076oqwgy
Initial commit from Yorba.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright (C) 2011 Canonical Ltd
 
3
 *
 
4
 * This program is free software: you can redistribute it and/or modify
 
5
 * it under the terms of the GNU General Public License version 3 as
 
6
 * published by the Free Software Foundation.
 
7
 *
 
8
 * This program is distributed in the hope that it will be useful,
 
9
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
10
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
11
 * GNU General Public License for more details.
 
12
 *
 
13
 * You should have received a copy of the GNU General Public License
 
14
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
15
 *
 
16
 * Authors:
 
17
 * Jim Nelson <jim@yorba.org>
 
18
 */
 
19
 
 
20
#ifndef GALLERY_MEDIA_OBJECT_H_
 
21
#define GALLERY_MEDIA_OBJECT_H_
 
22
 
 
23
#include <QObject>
 
24
#include <QFileInfo>
 
25
 
 
26
#include "data-object.h"
 
27
 
 
28
typedef DataObjectNumber MediaNumber;
 
29
 
 
30
class MediaObject : public DataObject {
 
31
  Q_OBJECT
 
32
  
 
33
public:
 
34
  explicit MediaObject(const QFileInfo& file);
 
35
  virtual ~MediaObject();
 
36
  
 
37
  // TODO: Currently Init() is used to create (or verify existance of)
 
38
  // thumbnails ... when we have a thumbnail manager, this use will probably
 
39
  // go away
 
40
  void Init();
 
41
  
 
42
  const QFileInfo& file() const;
 
43
  const QFileInfo& preview_file() const;
 
44
  
 
45
protected:
 
46
  virtual bool MakePreview(const QFileInfo& original, const QFileInfo& dest) = 0;
 
47
  
 
48
private:
 
49
  QFileInfo file_;
 
50
  QFileInfo* preview_file_;
 
51
};
 
52
 
 
53
#endif  // GALLERY_MEDIA_OBJECT_H_
 
 
b'\\ No newline at end of file'