source: git/src/aven.cc @ 42c7efe

RELEASE/1.2debug-cidebug-ci-sanitisersstereowalls-datawalls-data-hanging-as-warning
Last change on this file since 42c7efe was 42c7efe, checked in by Olly Betts <olly@…>, 13 years ago

lib/codes.po,src/aven.cc,src/mainfrm.cc,src/mainfrm.h: Use more stock
IDs.

git-svn-id: file:///home/survex-svn/survex/trunk@3610 4b37db11-9a0c-4f06-9ece-9ab7cdaee568

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