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

« back to all changes in this revision

Viewing changes to src/media-collection.cpp

  • 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
#include "media-collection.h"
 
21
 
 
22
#include <QStringList>
 
23
#include <QString>
 
24
 
 
25
#include "media-object.h"
 
26
#include "photo.h"
 
27
 
 
28
MediaCollection::MediaCollection(const QDir& directory)
 
29
  : directory_(directory) {
 
30
  directory_.setFilter(QDir::Files);
 
31
  directory_.setSorting(QDir::Name);
 
32
  
 
33
  // TODO: Assuming all files are photos in specified directory
 
34
  QList<DataObject*> photos;
 
35
  QStringList filenames = directory_.entryList();
 
36
  QString filename;
 
37
  foreach (filename, filenames) {
 
38
    Photo* photo = new Photo(QFileInfo(directory_, filename));
 
39
    photo->Init();
 
40
    photos.append(photo);
 
41
  }
 
42
  
 
43
  AddMany(photos);
 
44
}
 
45
 
 
46
const QDir& MediaCollection::directory() const {
 
47
  return directory_;
 
48
}