source: git/src/cavernlog.h @ 415a4c5

RELEASE/1.2debug-cidebug-ci-sanitisersfaster-cavernlogstereowalls-datawalls-data-hanging-as-warning
Last change on this file since 415a4c5 was 549eb37, checked in by Olly Betts <olly@…>, 8 years ago

Add File->Extended Elevation menu item

Provides a way to generate extended elevations for simple cases
without having to use the command line. Suggested by Fleur
Loveridge.

  • Property mode set to 100644
File size: 2.4 KB
RevLine 
[b0c416c]1/* cavernlog.h
[6bec10c]2 * Run cavern inside an Aven window
3 *
[0415bac]4 * Copyright (C) 2005,2006,2010,2015,2016 Olly Betts
[6bec10c]5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
19 */
20
21#ifndef SURVEX_CAVERNLOG_H
22#define SURVEX_CAVERNLOG_H
23
24#include "wx.h"
25#include <wx/html/htmlwin.h>
[15ba0b5]26#include <wx/process.h>
[6bec10c]27
[0e81a88]28#include <string>
29
[15ba0b5]30// We probably want to use a thread if we can - that way we can use a blocking
31// read from cavern rather than busy-waiting via idle events.
[fc626ae]32#ifdef wxUSE_THREADS
[0415bac]33# define CAVERNLOG_USE_THREADS
34#endif
35
36#ifdef CAVERNLOG_USE_THREADS
[fc626ae]37class CavernThread;
38#endif
[fb5887c]39class MainFrm;
40
[6bec10c]41class CavernLogWindow : public wxHtmlWindow {
[0415bac]42#ifdef CAVERNLOG_USE_THREADS
[fc626ae]43    friend class CavernThread;
44#endif
45
[fb5887c]46    wxString filename;
47
48    MainFrm * mainfrm;
49
[15ba0b5]50    wxProcess * cavern_out;
[8991d7f]51    wxString cur;
52    int link_count;
53    unsigned char buf[1024];
54    unsigned char * end;
55
[d7b53e3]56    bool init_done;
57
58    wxString survey;
59
[0e81a88]60    std::string log_txt;
61
[0415bac]62#ifdef CAVERNLOG_USE_THREADS
[fc626ae]63    void stop_thread();
64
65    CavernThread * thread;
66
67    wxCriticalSection thread_lock;
68#endif
69
[6bec10c]70  public:
[d7b53e3]71    CavernLogWindow(MainFrm * mainfrm_, const wxString & survey_, wxWindow * parent);
[6bec10c]72
[8991d7f]73    ~CavernLogWindow();
74
75    /** Start to process survey data in file. */
76    void process(const wxString &file);
[6bec10c]77
78    virtual void OnLinkClicked(const wxHtmlLinkInfo &link);
[fb5887c]79
[81e1aa4]80    void OnReprocess(wxCommandEvent &);
[fb5887c]81
[0e81a88]82    void OnSave(wxCommandEvent &);
83
[fb5887c]84    void OnOK(wxCommandEvent &);
85
[fc626ae]86    void OnCavernOutput(wxCommandEvent & e);
87
[15ba0b5]88#ifdef CAVERNLOG_USE_THREADS
[fc626ae]89    void OnClose(wxCloseEvent &);
90#else
[8991d7f]91    void OnIdle(wxIdleEvent &);
[fc626ae]92#endif
[8991d7f]93
[15ba0b5]94    void OnEndProcess(wxProcessEvent & e);
95
[fb5887c]96    DECLARE_EVENT_TABLE()
[6bec10c]97};
98
[549eb37]99wxString escape_for_shell(wxString s, bool protect_dash = false);
100wxString get_command_path(const wxChar * command_name);
101
[6bec10c]102#endif
Note: See TracBrowser for help on using the repository browser.