source: git/src/aven.h @ 81b44f0

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

Inline wmsg() from aven.h

  • Property mode set to 100644
File size: 2.8 KB
Line 
1/*
2//  aven.h
3//
4//  Main class for Aven.
5//
6//  Copyright (C) 2001, Mark R. Shinwell.
7//  Copyright (C) 2002,2003,2004,2005,2006,2015 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/* Note: this header needs to be safe to include from C code */
25
26#ifndef aven_h
27#define aven_h
28
29#include <stdarg.h>
30
31#define APP_NAME wxT("Aven")
32#define APP_ABOUT_IMAGE wxT("aven-about.png")
33
34extern
35#ifdef __cplusplus
36 "C"
37#endif
38void aven_v_report(int severity, const char *fnm, int line, int en,
39                   va_list ap);
40
41#ifdef __cplusplus
42
43#include "message.h"
44#include "wx.h"
45
46#include <string>
47
48inline std::string
49string_formatv(const char * fmt, va_list args)
50{
51    static size_t len = 4096;
52    static char * buf = NULL;
53    while (true) {
54        if (!buf) buf = new char[len];
55        int r = vsnprintf(buf, len, fmt, args);
56        if (r < int(len) && r != -1) {
57            return std::string(buf, r);
58        }
59        delete [] buf;
60        buf = NULL;
61        len += len;
62    }
63}
64
65inline std::string
66string_format(const char * fmt, ...)
67{
68    va_list args;
69    va_start(args, fmt);
70    std::string s = string_formatv(fmt, args);
71    va_end(args);
72    return s;
73}
74
75// wmsg is the unicode version of msg.
76inline wxString wmsg(int msg_no) {
77    return wxString::FromUTF8(msg(msg_no));
78}
79
80const wxString & wmsg_cfgpth();
81
82class MainFrm;
83
84extern bool double_buffered;
85
86class wxPageSetupDialogData;
87
88class Aven : public wxGLApp {
89    MainFrm * m_Frame;
90    // This must be a pointer, otherwise it gets initialised too early and
91    // we get a segfault on MS Windows when it tries to look up paper
92    // sizes in wxThePrintPaperDatabase which is still NULL at the point
93    // when the Aven class is constructed.
94    wxPageSetupDialogData * m_pageSetupData;
95
96public:
97    Aven();
98    ~Aven();
99
100#ifdef __WXMSW__
101    virtual bool Initialize(int& argc, wxChar **argv);
102#endif
103    virtual bool OnInit();
104
105    wxPageSetupDialogData * GetPageSetupDialogData();
106    void SetPageSetupDialogData(const wxPageSetupDialogData & psdd);
107
108#ifdef __WXMAC__
109    void MacOpenFiles(const wxArrayString & filenames);
110    void MacPrintFiles(const wxArrayString & filenames);
111#endif
112
113    void ReportError(const wxString&);
114};
115
116DECLARE_APP(Aven)
117
118#endif
119
120#endif
Note: See TracBrowser for help on using the repository browser.