]> Creatis software - clitk.git/blob - vv/vvUtils.cxx
added the new headers
[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     {
37         result.push_back(current_file);
38         in >> current_file;
39     }
40     in.close();
41     return result;
42 }
43
44 ///Adds an image to the list of recently opened images
45 void AddToRecentlyOpenedImages(std::string filename)
46 {
47     FileListType file_list = GetRecentlyOpenedImages();
48     FileListType::iterator i = std::find(file_list.begin(),file_list.end(),filename);
49     if (i != file_list.end()) // avoid dupes
50         file_list.erase(i);
51     while (file_list.size() >= 6) //keep list to a reasonable size
52         file_list.pop_back();
53     file_list.push_front(filename);
54     std::ofstream out((QDir::homePath().toStdString() + "/" + vv_user_file).c_str(),std::ios_base::out | std::ios_base::trunc);
55     for (FileListType::iterator j = file_list.begin() ; j != file_list.end() ; j++)
56         out << (*j) << std::endl;
57     out.close();
58 }