]> git.lyx.org Git - lyx.git/blob - src/insets/MailInset.cpp
merge frontend::Gui and frontend::Application
[lyx.git] / src / insets / MailInset.cpp
1 /**
2  * \file MailInset.cpp
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author Angus Leeming
7  *
8  * Full author contact details are available in file CREDITS.
9  */
10
11 #include <config.h>
12
13 #include "MailInset.h"
14
15 #include "BufferView.h"
16 #include "debug.h"
17
18 #include "frontends/Application.h"
19
20 #include <boost/assert.hpp>
21
22
23 namespace lyx {
24
25 using std::string;
26
27
28 void MailInset::showDialog(BufferView * bv) const
29 {
30         BOOST_ASSERT(bv);
31         bv->showInsetDialog(name(), inset2string(bv->buffer()), &inset());
32 }
33
34
35 void MailInset::updateDialog(BufferView * bv) const
36 {
37         BOOST_ASSERT(bv);
38         bv->updateDialog(name(), inset2string(bv->buffer()));
39 }
40
41
42 void MailInset::hideDialog() const
43 {
44         theApp()->hideDialogs(name(), &inset());
45 }
46
47
48 void print_mailer_error(string const & class_name,
49                         string const & data, int arg_id, string const & arg)
50 {
51         lyxerr << '\n' << class_name << "::string2params(" << data << ")\n"
52                << "Expected arg " << arg_id << " to be \"" << arg << "\"\n"
53                << std::endl;
54 }
55
56
57 } // namespace lyx