]> Creatis software - clitk.git/blob - vv/vvUtils.cxx
100aeb5cbac953b895a927491fccf7d4e509ca5c
[clitk.git] / vv / vvUtils.cxx
1 /*=========================================================================
2   Program:   vv                     http://www.creatis.insa-lyon.fr/rio/vv
3
4   Authors belong to:
5   - University of LYON              http://www.universite-lyon.fr/
6   - Léon Bérard cancer center       http://oncora1.lyon.fnclcc.fr
7   - CREATIS CNRS laboratory         http://www.creatis.insa-lyon.fr
8
9   This software is distributed WITHOUT ANY WARRANTY; without even
10   the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
11   PURPOSE.  See the copyright notices for more information.
12
13   It is distributed under dual licence
14
15   - BSD        See included LICENSE.txt file
16   - CeCILL-B   http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html
17 ======================================================================-====*/
18 #include <fstream>
19 #include <algorithm>
20 #include <QDir>
21
22 #include "clitkCommon.h"
23 #include "vvUtils.h"
24
25 const std::string vv_user_file=".vv_settings.txt";
26 typedef std::list<std::string> FileListType;
27
28 ///Returns the last images opened by the user
29 FileListType GetRecentlyOpenedImages()
30 {
31   std::ifstream in((QDir::homePath().toStdString() + "/" + vv_user_file).c_str());
32   std::string current_file;
33   FileListType result;
34   in >> current_file;
35   while (in.good()) {
36     result.push_back(current_file);
37     in >> current_file;
38   }
39   in.close();
40   return result;
41 }
42
43 ///Adds an image to the list of recently opened images
44 void AddToRecentlyOpenedImages(std::string filename)
45 {
46   FileListType file_list = GetRecentlyOpenedImages();
47   FileListType::iterator i = std::find(file_list.begin(),file_list.end(),filename);
48   if (i != file_list.end()) // avoid dupes
49     file_list.erase(i);
50   while (file_list.size() >= 6) //keep list to a reasonable size
51     file_list.pop_back();
52   file_list.push_front(filename);
53   std::ofstream out((QDir::homePath().toStdString() + "/" + vv_user_file).c_str(),std::ios_base::out | std::ios_base::trunc);
54   for (FileListType::iterator j = file_list.begin() ; j != file_list.end() ; j++)
55     out << (*j) << std::endl;
56   out.close();
57 }