]> git.lyx.org Git - lyx.git/blob - src/FuncRequest.cpp
Update status
[lyx.git] / src / FuncRequest.cpp
1 /**
2  * \file FuncRequest.cpp
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author André Pönitz
7  *
8  * Full author contact details are available in file CREDITS.
9  */
10
11 #include <config.h>
12
13 #include "FuncRequest.h"
14 #include "LyXAction.h"
15
16 #include "support/debug.h"
17 #include "support/lstrings.h"
18
19 #include <climits>
20 #include <iostream>
21 #include <sstream>
22 #include <vector>
23
24 using namespace std;
25 using namespace lyx::support;
26
27 namespace lyx {
28
29 FuncRequest const FuncRequest::unknown(LFUN_UNKNOWN_ACTION);
30 FuncRequest const FuncRequest::noaction(LFUN_NOACTION);
31
32 FuncRequest::FuncRequest(Origin o)
33         : action_(LFUN_NOACTION), origin_(o), x_(0), y_(0),
34           button_(mouse_button::none), modifier_(NoModifier), allow_async_(true)
35 {}
36
37
38 FuncRequest::FuncRequest(FuncCode act, Origin o)
39         : action_(act), origin_(o), x_(0), y_(0),
40         button_(mouse_button::none), modifier_(NoModifier), allow_async_(true)
41 {}
42
43
44 FuncRequest::FuncRequest(FuncCode act, docstring const & arg, Origin o)
45         : action_(act), argument_(arg), origin_(o), x_(0), y_(0),
46           button_(mouse_button::none), modifier_(NoModifier), allow_async_(true)
47 {}
48
49
50 FuncRequest::FuncRequest(FuncCode act, string const & arg, Origin o)
51         : action_(act), argument_(from_utf8(arg)), origin_(o), x_(0), y_(0),
52           button_(mouse_button::none), modifier_(NoModifier), allow_async_(true)
53 {}
54
55
56 FuncRequest::FuncRequest(FuncCode act, int ax, int ay,
57                          mouse_button::state but, KeyModifier modifier, Origin o)
58         : action_(act), origin_(o), x_(ax), y_(ay), button_(but),
59           modifier_(modifier), allow_async_(true)
60 {}
61
62
63 FuncRequest::FuncRequest(FuncRequest const & cmd, docstring const & arg, Origin o)
64         : action_(cmd.action()), argument_(arg), origin_(o), x_(cmd.x_), y_(cmd.y_),
65           button_(cmd.button_), modifier_(NoModifier), allow_async_(true)
66 {}
67
68
69 namespace {
70
71 // Extracts arguments from str into args. Arguments are delimited by
72 // whitespace or by double quotes.
73 // We extract at most max + 1 arguments, treating args[max] as
74 // continuing to eol.
75 void splitArg(vector<string> & args, string const & str,
76                 unsigned int max = UINT_MAX)
77 {
78         istringstream is(str);
79         while (is) {
80                 if (args.size() == max) {
81                         string s;
82                         getline(is, s);
83                         args.push_back(trim(s));
84                         return;
85                 }
86
87                 char c;
88                 string s;
89                 is >> c;
90                 if (is) {
91                         if (c == '"')
92                                 // get quote delimited argument
93                                 getline(is, s, '"');
94                         else {
95                                 // get whitespace delimited argument
96                                 is.putback(c);
97                                 is >> s;
98                         }
99                         args.push_back(s);
100                 }
101         }
102 }
103
104 } // namespace
105
106 string FuncRequest::getArg(unsigned int i) const
107 {
108         vector<string> args;
109         splitArg(args, to_utf8(argument_));
110         return i < args.size() ? args[i] : string();
111 }
112
113
114 string FuncRequest::getLongArg(unsigned int i) const
115 {
116         vector<string> args;
117         splitArg(args, to_utf8(argument_), i);
118         return i < args.size() ? args[i] : string();
119 }
120
121
122 bool operator==(FuncRequest const & lhs, FuncRequest const & rhs)
123 {
124         return lhs.action() == rhs.action() && lhs.argument() == rhs.argument();
125 }
126
127
128 ostream & operator<<(ostream & os, FuncRequest const & cmd)
129 {
130         return os
131                 << " action: " << cmd.action()
132                 << " [" << lyxaction.getActionName(cmd.action()) << "] "
133                 << " arg: '" << to_utf8(cmd.argument()) << "'"
134                 << " x: " << cmd.x()
135                 << " y: " << cmd.y();
136 }
137
138
139 LyXErr & operator<<(LyXErr &l, FuncRequest const &fr)
140 {
141         ostringstream oss;
142         oss << fr;
143         return l << oss.str();
144 }
145
146 } // namespace lyx