OpenCPN Partial API docs
Loading...
Searching...
No Matches
safe_mode_gui.cpp
1#include <cstdio>
2#include <string>
3#include <fstream>
4#include <sstream>
5
6#include <wx/dialog.h>
7#include <wx/filename.h>
8#include <wx/sizer.h>
9
10#include "dialog_alert.h"
11#include "model/cmdline.h"
12#include "gui_lib.h"
13#include "model/ocpn_utils.h"
14
15#include "model/safe_mode.h"
16
17namespace safe_mode {
18
19static const char* LAST_RUN_ERROR_MSG =
20 _("<p>The last opencpn run seems to have failed. Do you want to run\n"
21 "in safe mode without plugins and other possibly problematic\n"
22 "features?\n</p><br/></br><p>You may consider visiting the <a "
23 "href=\"https://github.com/OpenCPN/OpenCPN/wiki/"
24 "OpenCPN-5.10-known-issues\">list of known issues</a>.</p>");
25
31 std::string path = check_file_path();
32 if (!ocpn::exists(path)) {
33 std::ofstream dest(path, std::ios::binary);
34 dest << "Internal opencpn use" << std::endl;
35 dest.close();
36 return;
37 }
38
39 std::string title = _("Safe Restart").ToStdString();
40 std::string action = _("Safe mode").ToStdString();
41 AlertDialog dlg(0, title, action);
42 dlg.SetInitialSize();
43 dlg.SetTimer(15);
44
45 std::stringstream html;
46 html << "<html><body>";
47 html << LAST_RUN_ERROR_MSG;
48 html << "</body></html>";
49 dlg.AddHtmlContent(html);
50
51 int reply = dlg.ShowModal();
52 safe_mode = reply == wxID_OK;
53}
54
55} // namespace safe_mode
A modal message dialog with a cancel and confirmation button.
int ShowModal() override
Show dialog and return response.
void SetTimer(int seconds)
Activate timer.
void AddHtmlContent(const std::stringstream &html)
Display HTML content.
void SetInitialSize()
Initialize by display geometry.
Global variables reflecting command line options and arguments.
General purpose GUI support.
bool exists(const std::string &name)
Safe mode handling.
Definition safe_mode.cpp:14
void check_last_start()
Check if the last start failed, possibly invoke user dialog and set safe mode state.
Miscellaneous utilities, many of which string related.