| 1 | // |
|---|
| 2 | // aven.cc |
|---|
| 3 | // |
|---|
| 4 | // Main class for Aven. |
|---|
| 5 | // |
|---|
| 6 | // Copyright (C) 2001 Mark R. Shinwell. |
|---|
| 7 | // Copyright (C) 2002,2003,2004,2005,2006 Olly Betts |
|---|
| 8 | // |
|---|
| 9 | // This program is free software; you can redistribute it and/or modify |
|---|
| 10 | // it under the terms of the GNU General Public License as published by |
|---|
| 11 | // the Free Software Foundation; either version 2 of the License, or |
|---|
| 12 | // (at your option) any later version. |
|---|
| 13 | // |
|---|
| 14 | // This program is distributed in the hope that it will be useful, |
|---|
| 15 | // but WITHOUT ANY WARRANTY; without even the implied warranty of |
|---|
| 16 | // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|---|
| 17 | // GNU General Public License for more details. |
|---|
| 18 | // |
|---|
| 19 | // You should have received a copy of the GNU General Public License |
|---|
| 20 | // along with this program; if not, write to the Free Software |
|---|
| 21 | // Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
|---|
| 22 | // |
|---|
| 23 | |
|---|
| 24 | #ifdef HAVE_CONFIG_H |
|---|
| 25 | #include <config.h> |
|---|
| 26 | #endif |
|---|
| 27 | |
|---|
| 28 | #include "aven.h" |
|---|
| 29 | #include "log.h" |
|---|
| 30 | #include "mainfrm.h" |
|---|
| 31 | |
|---|
| 32 | #include "cmdline.h" |
|---|
| 33 | #include "message.h" |
|---|
| 34 | |
|---|
| 35 | #include <assert.h> |
|---|
| 36 | #include <signal.h> |
|---|
| 37 | |
|---|
| 38 | #include <wx/confbase.h> |
|---|
| 39 | #include <wx/image.h> |
|---|
| 40 | #if wxUSE_DISPLAY |
|---|
| 41 | // wxDisplay was added in wx 2.5; but it may not be built for mingw (because |
|---|
| 42 | // the header seems to be missing). |
|---|
| 43 | #include <wx/display.h> |
|---|
| 44 | #endif |
|---|
| 45 | |
|---|
| 46 | bool double_buffered = false; |
|---|
| 47 | |
|---|
| 48 | static const struct option long_opts[] = { |
|---|
| 49 | /* const char *name; int has_arg (0 no_argument, 1 required_*, 2 optional_*); int *flag; int val; */ |
|---|
| 50 | {"survey", required_argument, 0, 's'}, |
|---|
| 51 | {"print", no_argument, 0, 'p'}, |
|---|
| 52 | {"help", no_argument, 0, HLP_HELP}, |
|---|
| 53 | {"version", no_argument, 0, HLP_VERSION}, |
|---|
| 54 | {0, 0, 0, 0} |
|---|
| 55 | }; |
|---|
| 56 | |
|---|
| 57 | #define short_opts "s:p" |
|---|
| 58 | |
|---|
| 59 | static struct help_msg help[] = { |
|---|
| 60 | /* <-- */ |
|---|
| 61 | {HLP_ENCODELONG(0), "only load the sub-survey with this prefix"}, |
|---|
| 62 | {HLP_ENCODELONG(1), "print and exit (requires a 3d file)"}, |
|---|
| 63 | {0, 0} |
|---|
| 64 | }; |
|---|
| 65 | |
|---|
| 66 | #ifdef __WXMSW__ |
|---|
| 67 | IMPLEMENT_APP(Aven) |
|---|
| 68 | #else |
|---|
| 69 | IMPLEMENT_APP_NO_MAIN(Aven) |
|---|
| 70 | IMPLEMENT_WX_THEME_SUPPORT |
|---|
| 71 | #endif |
|---|
| 72 | |
|---|
| 73 | Aven::Aven() : |
|---|
| 74 | m_Frame(NULL), m_pageSetupData(NULL) |
|---|
| 75 | { |
|---|
| 76 | wxFont::SetDefaultEncoding(wxFONTENCODING_UTF8); |
|---|
| 77 | } |
|---|
| 78 | |
|---|
| 79 | Aven::~Aven() |
|---|
| 80 | { |
|---|
| 81 | if (m_pageSetupData) delete m_pageSetupData; |
|---|
| 82 | } |
|---|
| 83 | |
|---|
| 84 | static int getopt_first_response = 0; |
|---|
| 85 | |
|---|
| 86 | #ifdef __WXMSW__ |
|---|
| 87 | bool Aven::Initialize(int& my_argc, wxChar **my_argv) |
|---|
| 88 | { |
|---|
| 89 | // Call msg_init() and start processing the command line first so that |
|---|
| 90 | // we can respond to --help and --version even without an X display. |
|---|
| 91 | // However, wxWidgets passes us wxChars, which may be wide characters |
|---|
| 92 | // and cmdline wants UTF-8 so we need to convert. |
|---|
| 93 | char *utf8_argv[my_argc + 1]; |
|---|
| 94 | for (int i = 0; i < my_argc; ++i){ |
|---|
| 95 | utf8_argv[i] = strdup(wxString(my_argv[i]).mb_str()); |
|---|
| 96 | } |
|---|
| 97 | utf8_argv[my_argc] = NULL; |
|---|
| 98 | |
|---|
| 99 | msg_init(utf8_argv); |
|---|
| 100 | select_charset(CHARSET_UTF8); |
|---|
| 101 | /* Want --version and a decent --help output, which cmdline does for us. |
|---|
| 102 | * wxCmdLine is much less good. |
|---|
| 103 | */ |
|---|
| 104 | cmdline_set_syntax_message("[3d file]", NULL); |
|---|
| 105 | cmdline_init(my_argc, utf8_argv, short_opts, long_opts, NULL, help, 0, 1); |
|---|
| 106 | getopt_first_response = cmdline_getopt(); |
|---|
| 107 | return wxApp::Initialize(my_argc, my_argv); |
|---|
| 108 | } |
|---|
| 109 | #define real_argv argv |
|---|
| 110 | #else |
|---|
| 111 | static char ** real_argv; |
|---|
| 112 | |
|---|
| 113 | int main(int argc, char **argv) |
|---|
| 114 | { |
|---|
| 115 | #ifdef __WXMAC__ |
|---|
| 116 | // MacOS passes a magic -psn_XXXX command line argument in argv[1] which |
|---|
| 117 | // wx ignores for us, but in wxApp::Initialize() which hasn't been |
|---|
| 118 | // called yet. So we need to remove it ourselves. |
|---|
| 119 | if (argc > 1 && strncmp(argv[1], "-psn_", 5) == 0) { |
|---|
| 120 | --argc; |
|---|
| 121 | memmove(argv + 1, argv + 2, argc * sizeof(char *)); |
|---|
| 122 | } |
|---|
| 123 | #endif |
|---|
| 124 | // Call msg_init() and start processing the command line first so that |
|---|
| 125 | // we can respond to --help and --version even without an X display. |
|---|
| 126 | msg_init(argv); |
|---|
| 127 | select_charset(CHARSET_UTF8); |
|---|
| 128 | /* Want --version and a decent --help output, which cmdline does for us. |
|---|
| 129 | * wxCmdLine is much less good. |
|---|
| 130 | */ |
|---|
| 131 | cmdline_set_syntax_message("[3d file]", NULL); |
|---|
| 132 | cmdline_init(argc, argv, short_opts, long_opts, NULL, help, 0, 1); |
|---|
| 133 | getopt_first_response = cmdline_getopt(); |
|---|
| 134 | |
|---|
| 135 | real_argv = argv; |
|---|
| 136 | |
|---|
| 137 | wxWCharBuffer buf(wxConvFileName->cMB2WX(argv[0])); |
|---|
| 138 | wxChar * wargv[2]; |
|---|
| 139 | if (buf) { |
|---|
| 140 | wargv[0] = wxStrdup(buf); |
|---|
| 141 | } else { |
|---|
| 142 | // Eep - couldn't convert the executable's name to wide characters! |
|---|
| 143 | wargv[0] = wxStrdup(APP_NAME); |
|---|
| 144 | } |
|---|
| 145 | wargv[1] = NULL; |
|---|
| 146 | int wargc = 1; |
|---|
| 147 | return wxEntry(wargc, wargv); |
|---|
| 148 | } |
|---|
| 149 | #endif |
|---|
| 150 | |
|---|
| 151 | bool Aven::OnInit() |
|---|
| 152 | { |
|---|
| 153 | wxLog::SetActiveTarget(new MyLogWindow()); |
|---|
| 154 | |
|---|
| 155 | { |
|---|
| 156 | // Suppress message box warnings about messages not found. |
|---|
| 157 | wxLogNull logNo; |
|---|
| 158 | wxLocale *loc = new wxLocale(); |
|---|
| 159 | loc->AddCatalogLookupPathPrefix(wmsg_cfgpth()); |
|---|
| 160 | wxString msg_lang_str(msg_lang, wxConvUTF8); |
|---|
| 161 | const char *lang = msg_lang2 ? msg_lang2 : msg_lang; |
|---|
| 162 | wxString lang_str(lang, wxConvUTF8); |
|---|
| 163 | loc->Init(msg_lang_str, lang_str, msg_lang_str, TRUE, TRUE); |
|---|
| 164 | // The existence of the wxLocale object is enough - no need to keep a |
|---|
| 165 | // pointer to it! |
|---|
| 166 | } |
|---|
| 167 | |
|---|
| 168 | wxString survey; |
|---|
| 169 | bool print_and_exit = false; |
|---|
| 170 | |
|---|
| 171 | while (true) { |
|---|
| 172 | int opt; |
|---|
| 173 | if (getopt_first_response) { |
|---|
| 174 | opt = getopt_first_response; |
|---|
| 175 | getopt_first_response = 0; |
|---|
| 176 | } else { |
|---|
| 177 | opt = cmdline_getopt(); |
|---|
| 178 | } |
|---|
| 179 | if (opt == EOF) break; |
|---|
| 180 | if (opt == 's') { |
|---|
| 181 | survey = wxString(optarg, wxConvUTF8); |
|---|
| 182 | } |
|---|
| 183 | if (opt == 'p') { |
|---|
| 184 | print_and_exit = true; |
|---|
| 185 | } |
|---|
| 186 | } |
|---|
| 187 | |
|---|
| 188 | if (print_and_exit && !real_argv[optind]) { |
|---|
| 189 | cmdline_syntax(); // FIXME : not a helpful error... |
|---|
| 190 | exit(1); |
|---|
| 191 | } |
|---|
| 192 | |
|---|
| 193 | wxString fnm; |
|---|
| 194 | if (real_argv[optind]) { |
|---|
| 195 | fnm = wxString(real_argv[optind], wxConvUTF8); |
|---|
| 196 | if (fnm.empty() && *(real_argv[optind])) { |
|---|
| 197 | wxGetApp().ReportError(wxT("File argument's filename has bad encoding")); |
|---|
| 198 | return false; |
|---|
| 199 | } |
|---|
| 200 | } |
|---|
| 201 | |
|---|
| 202 | // Use a double-buffered visual if available, as it will give much smoother |
|---|
| 203 | // animation. |
|---|
| 204 | double_buffered = true; |
|---|
| 205 | int wx_gl_attribs[] = { WX_GL_RGBA, WX_GL_DOUBLEBUFFER, 0 }; |
|---|
| 206 | if (!InitGLVisual(wx_gl_attribs)) { |
|---|
| 207 | int wx_gl_attribs_no_db[] = { WX_GL_RGBA, 0 }; |
|---|
| 208 | if (!InitGLVisual(wx_gl_attribs_no_db)) { |
|---|
| 209 | wxString m; |
|---|
| 210 | m.Printf(wmsg(/*This version of %s requires OpenGL to work, but it isn't available*/405), APP_NAME); |
|---|
| 211 | wxMessageBox(m, APP_NAME, wxOK | wxCENTRE | wxICON_EXCLAMATION); |
|---|
| 212 | exit(1); |
|---|
| 213 | } |
|---|
| 214 | double_buffered = false; |
|---|
| 215 | } |
|---|
| 216 | |
|---|
| 217 | wxImage::AddHandler(new wxPNGHandler); |
|---|
| 218 | |
|---|
| 219 | // Obtain the screen size. |
|---|
| 220 | wxPoint pos(wxDefaultPosition); |
|---|
| 221 | int width, height; |
|---|
| 222 | wxConfigBase::Get()->Read(wxT("width"), &width, 0); |
|---|
| 223 | if (width > 0) wxConfigBase::Get()->Read(wxT("height"), &height, 0); |
|---|
| 224 | bool maximized = (width == -1); |
|---|
| 225 | bool full_screen = (width <= -2); |
|---|
| 226 | if (width <= 0 || height <= 0) { |
|---|
| 227 | #if wxUSE_DISPLAY // wxDisplay was added in wx 2.5 |
|---|
| 228 | wxRect geom = wxDisplay().GetGeometry(); |
|---|
| 229 | pos.x = geom.x; |
|---|
| 230 | pos.y = geom.y; |
|---|
| 231 | width = geom.width; |
|---|
| 232 | height = geom.height; |
|---|
| 233 | #else |
|---|
| 234 | wxClientDisplayRect(&pos.x, &pos.y, &width, &height); |
|---|
| 235 | // Crude fix to help behaviour on multi-monitor displays. |
|---|
| 236 | // Fudge factors are a bit specific to my setup... |
|---|
| 237 | if (width > height * 3 / 2) { |
|---|
| 238 | pos.x += width; |
|---|
| 239 | width = height * 3 / 2; |
|---|
| 240 | pos.x -= width; |
|---|
| 241 | } |
|---|
| 242 | #endif |
|---|
| 243 | |
|---|
| 244 | // Calculate a reasonable size for our window. |
|---|
| 245 | pos.x += width / 8; |
|---|
| 246 | pos.y += height / 8; |
|---|
| 247 | width = width * 3 / 4; |
|---|
| 248 | height = height * 3 / 4; |
|---|
| 249 | } |
|---|
| 250 | |
|---|
| 251 | // Create the main window. |
|---|
| 252 | m_Frame = new MainFrm(APP_NAME, pos, wxSize(width, height)); |
|---|
| 253 | |
|---|
| 254 | // Select full_screen or maximised if that's the saved state. |
|---|
| 255 | if (full_screen) { |
|---|
| 256 | m_Frame->ShowFullScreen(true); |
|---|
| 257 | } else if (maximized) { |
|---|
| 258 | m_Frame->Maximize(); |
|---|
| 259 | } |
|---|
| 260 | |
|---|
| 261 | if (real_argv[optind]) { |
|---|
| 262 | m_Frame->OpenFile(fnm, survey); |
|---|
| 263 | } |
|---|
| 264 | |
|---|
| 265 | if (print_and_exit) { |
|---|
| 266 | wxCommandEvent dummy; |
|---|
| 267 | m_Frame->OnPrint(dummy); |
|---|
| 268 | m_Frame->OnQuit(dummy); |
|---|
| 269 | return true; |
|---|
| 270 | } |
|---|
| 271 | |
|---|
| 272 | m_Frame->Show(true); |
|---|
| 273 | #ifdef _WIN32 |
|---|
| 274 | m_Frame->SetFocus(); |
|---|
| 275 | #endif |
|---|
| 276 | return true; |
|---|
| 277 | } |
|---|
| 278 | |
|---|
| 279 | wxPageSetupDialogData * |
|---|
| 280 | Aven::GetPageSetupDialogData() |
|---|
| 281 | { |
|---|
| 282 | if (!m_pageSetupData) m_pageSetupData = new wxPageSetupDialogData; |
|---|
| 283 | #ifdef __WXGTK__ |
|---|
| 284 | // Fetch paper margins stored on disk. |
|---|
| 285 | int left, right, top, bottom; |
|---|
| 286 | wxConfigBase * cfg = wxConfigBase::Get(); |
|---|
| 287 | // These default margins were chosen by looking at all the .ppd files |
|---|
| 288 | // on my machine. |
|---|
| 289 | cfg->Read(wxT("paper_margin_left"), &left, 7); |
|---|
| 290 | cfg->Read(wxT("paper_margin_right"), &right, 7); |
|---|
| 291 | cfg->Read(wxT("paper_margin_top"), &top, 14); |
|---|
| 292 | cfg->Read(wxT("paper_margin_bottom"), &bottom, 14); |
|---|
| 293 | m_pageSetupData->SetMarginTopLeft(wxPoint(left, top)); |
|---|
| 294 | m_pageSetupData->SetMarginBottomRight(wxPoint(right, bottom)); |
|---|
| 295 | #endif |
|---|
| 296 | return m_pageSetupData; |
|---|
| 297 | } |
|---|
| 298 | |
|---|
| 299 | void |
|---|
| 300 | Aven::SetPageSetupDialogData(const wxPageSetupDialogData & psdd) |
|---|
| 301 | { |
|---|
| 302 | if (!m_pageSetupData) m_pageSetupData = new wxPageSetupDialogData; |
|---|
| 303 | *m_pageSetupData = psdd; |
|---|
| 304 | #ifdef __WXGTK__ |
|---|
| 305 | wxPoint topleft = psdd.GetMarginTopLeft(); |
|---|
| 306 | wxPoint bottomright = psdd.GetMarginBottomRight(); |
|---|
| 307 | |
|---|
| 308 | // Store user specified paper margins on disk/in registry. |
|---|
| 309 | wxConfigBase * cfg = wxConfigBase::Get(); |
|---|
| 310 | cfg->Write(wxT("paper_margin_left"), topleft.x); |
|---|
| 311 | cfg->Write(wxT("paper_margin_right"), bottomright.x); |
|---|
| 312 | cfg->Write(wxT("paper_margin_top"), topleft.y); |
|---|
| 313 | cfg->Write(wxT("paper_margin_bottom"), bottomright.y); |
|---|
| 314 | cfg->Flush(); |
|---|
| 315 | #endif |
|---|
| 316 | } |
|---|
| 317 | |
|---|
| 318 | void Aven::ReportError(const wxString& msg) |
|---|
| 319 | { |
|---|
| 320 | AvenAllowOnTop ontop(m_Frame); |
|---|
| 321 | wxMessageDialog dlg(m_Frame, msg, APP_NAME, wxOK | wxICON_ERROR); |
|---|
| 322 | dlg.ShowModal(); |
|---|
| 323 | } |
|---|
| 324 | |
|---|
| 325 | wxString |
|---|
| 326 | wmsg(int msg_no) |
|---|
| 327 | { |
|---|
| 328 | #if !wxCHECK_VERSION(2,8,0) |
|---|
| 329 | return wxString(msg(msg_no), wxConvUTF8); |
|---|
| 330 | #else |
|---|
| 331 | return wxString::FromUTF8(msg(msg_no)); |
|---|
| 332 | #endif |
|---|
| 333 | } |
|---|
| 334 | |
|---|
| 335 | const wxString & |
|---|
| 336 | wmsg_cfgpth() |
|---|
| 337 | { |
|---|
| 338 | static wxString path; |
|---|
| 339 | if (path.empty()) |
|---|
| 340 | path = wxString(msg_cfgpth(), wxConvUTF8); |
|---|
| 341 | return path; |
|---|
| 342 | } |
|---|
| 343 | |
|---|
| 344 | // called to report errors by message.c |
|---|
| 345 | extern "C" void |
|---|
| 346 | aven_v_report(int severity, const char *fnm, int line, int en, va_list ap) |
|---|
| 347 | { |
|---|
| 348 | wxString m; |
|---|
| 349 | if (fnm) { |
|---|
| 350 | m = wxString(fnm, wxConvUTF8); |
|---|
| 351 | if (line) m += wxString::Format(wxT(":%d"), line); |
|---|
| 352 | m += wxT(": "); |
|---|
| 353 | } |
|---|
| 354 | |
|---|
| 355 | if (severity == 0) { |
|---|
| 356 | m += wmsg(/*warning*/4); |
|---|
| 357 | m += wxT(": "); |
|---|
| 358 | } |
|---|
| 359 | |
|---|
| 360 | m += wxString::FormatV(wmsg(en), ap); |
|---|
| 361 | wxGetApp().ReportError(m); |
|---|
| 362 | } |
|---|