2 * Run cavern inside an Aven window
4 * Copyright (C) 2005,2006,2010,2015,2016 Olly Betts
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.
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.
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
21 #ifndef SURVEX_CAVERNLOG_H
22 #define SURVEX_CAVERNLOG_H
25 #include <wx/html/htmlwin.h>
26 #include <wx/process.h>
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.
33 # define CAVERNLOG_USE_THREADS
36 #ifdef CAVERNLOG_USE_THREADS
41 class CavernLogWindow
: public wxHtmlWindow
{
42 #ifdef CAVERNLOG_USE_THREADS
43 friend class CavernThread
;
50 wxProcess
* cavern_out
;
53 const wxChar
* highlight
;
55 unsigned char buf
[1024];
64 #ifdef CAVERNLOG_USE_THREADS
67 CavernThread
* thread
;
69 wxCriticalSection thread_lock
;
73 CavernLogWindow(MainFrm
* mainfrm_
, const wxString
& survey_
, wxWindow
* parent
);
77 /** Start to process survey data in file. */
78 void process(const wxString
&file
);
80 virtual void OnLinkClicked(const wxHtmlLinkInfo
&link
);
82 void OnReprocess(wxCommandEvent
&);
84 void OnSave(wxCommandEvent
&);
86 void OnOK(wxCommandEvent
&);
88 void OnCavernOutput(wxCommandEvent
& e
);
90 #ifdef CAVERNLOG_USE_THREADS
91 void OnClose(wxCloseEvent
&);
93 void OnIdle(wxIdleEvent
&);
96 void OnEndProcess(wxProcessEvent
& e
);
101 wxString
escape_for_shell(wxString s
, bool protect_dash
= false);
102 wxString
get_command_path(const wxChar
* command_name
);