]> git.lyx.org Git - lyx.git/blob - src/frontends/controllers/helper_funcs.C
Removed // -*- C++ -*- from all .C files!
[lyx.git] / src / frontends / controllers / helper_funcs.C
1 /* This file is part of
2  * ====================================================== 
3  *
4  *           LyX, The Document Processor
5  *
6  *           Copyright 2001 The LyX Team.
7  *
8  * ======================================================
9  *
10  * \file helper_funcs.C
11  * \author Angus Leeming <a.leeming@ic.ac.uk>
12  */
13
14 #include <vector>
15
16 #ifdef __GNUG__
17 #pragma implementation
18 #endif
19
20 #include <config.h>
21 #include "LString.h"
22 #include "helper_funcs.h"
23
24 #include "frontends/FileDialog.h"
25 #include "support/filetools.h" // OnlyPath, OnlyFilename
26 #include "gettext.h" // _()
27 #include "lyx_gui_misc.h" // WriteAlert
28
29 using std::pair;
30 using std::vector;
31 using std::make_pair;
32
33
34 string const getStringFromVector(vector<string> const & vec,
35                                  string const & delim)
36 {
37         string str;
38         int i = 0;
39         for (vector<string>::const_iterator it = vec.begin();
40              it != vec.end(); ++it) {
41                 if (it->empty()) continue;
42
43                 if (i++ > 0) str += delim;
44                 str += *it;
45         }
46         return str;
47 }
48
49 vector<string> const getVectorFromString(string const & str,
50                                          string const & delim)
51 {
52         vector<string> vec;
53         string keys(str);
54
55         for(;;) {
56                 string::size_type const idx = keys.find(delim);
57                 if (idx == string::npos) {
58                         vec.push_back(keys);
59                         break;
60                 }
61
62                 string const key = keys.substr(0, idx);
63                 if (!key.empty())
64                         vec.push_back(key);
65
66                 string::size_type const start = idx + delim.size();
67                 keys = keys.substr(start);
68         }
69
70         return vec;
71 }
72
73 string const browseFile(LyXView * lv, string const & filename,
74                         string const & title,
75                         string const & pattern, 
76                         pair<string,string> const & dir1,
77                         pair<string,string> const & dir2)
78 {
79         string lastPath = ".";
80         if (!filename.empty()) lastPath = OnlyPath(filename);
81
82         FileDialog fileDlg(lv, title, LFUN_SELECT_FILE_SYNC, dir1, dir2);
83
84         FileDialog::Result result;
85  
86         while (1) {
87                 result = fileDlg.Select(lastPath, pattern, OnlyFilename(filename));
88
89                 if (result.second.empty()) 
90                         return result.second;
91
92                 lastPath = OnlyPath(result.second);
93
94                 if (result.second.find_first_of("#~$% ") == string::npos)
95                         break; 
96  
97                 WriteAlert(_("Filename can't contain any "
98                         "of these characters:"),
99                         _("space, '#', '~', '$' or '%'."));
100         }
101
102         return result.second;
103 }
104
105