]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/wx-console/console_thread.h
Add -w parameter to wx-console to change the temporary directory.
[bacula/bacula] / bacula / src / wx-console / console_thread.h
1 /*
2  *
3  *    Interaction thread between director and the GUI
4  *
5  *    Nicolas Boichat, April-May 2004
6  *
7  *    Version $Id$
8  */
9 /*
10    Copyright (C) 2004 Kern Sibbald and John Walker
11
12    This program is free software; you can redistribute it and/or
13    modify it under the terms of the GNU General Public License
14    as published by the Free Software Foundation; either version 2
15    of the License, or (at your option) any later version.
16
17    This program is distributed in the hope that it will be useful,
18    but WITHOUT ANY WARRANTY; without even the implied warranty of
19    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20    GNU General Public License for more details.
21
22    You should have received a copy of the GNU General Public License
23    along with this program; if not, write to the Free Software
24    Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
25  */
26
27 #ifndef CONSOLE_THREAD_H
28 #define CONSOLE_THREAD_H
29
30 #include <wx/wxprec.h>
31
32 #include <wx/thread.h> // inheriting class's header file
33 #include "bacula.h"
34 #include "jcr.h"
35
36 /**
37  * Console thread, does interaction between bacula routines and the GUI
38  */
39 class console_thread : public wxThread
40 {
41    public:
42       // class constructor
43       console_thread();
44       // class destructor
45       ~console_thread();
46
47       void* Entry();
48       void Write(const char* str);
49       virtual void Delete();
50       
51       static void InitLib();
52       static void FreeLib();
53       static wxString LoadConfig(wxString configfile);
54       static void SetWorkingDirectory(wxString w_dir);
55    private:
56       static bool inited;
57       static bool configloaded;
58       
59       bool choosingdirector;
60       
61       static wxString working_dir;
62       
63       int directorchoosen;
64       
65       BSOCK* UA_sock;
66       JCR jcr;
67 };
68
69 int pm_cst_strcpy(POOLMEM **pm, const char *str);
70
71 #endif // CONSOLE_THREAD_H