KiCad PCB EDA Suite
Loading...
Searching...
No Matches
pgm_kicad.h
Go to the documentation of this file.
1/*
2 * This program source code file is part of KiCad, a free EDA CAD application.
3 *
4 * Copyright (C) 2014 SoftPLC Corporation, Dick Hollenbeck <[email protected]>
5 * Copyright (C) 2014 KiCad Developers, see AUTHORS.TXT for contributors.
6 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation; either version 2
10 * of the License, or (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, you may find one here:
19 * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
20 * or you may search the http://www.gnu.org website for the version 2 license,
21 * or you may write to the Free Software Foundation, Inc.,
22 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
23 */
24
25#ifndef PGM_KICAD_H_
26#define PGM_KICAD_H_
27
28#include <pgm_base.h>
29#include <bin_mod.h>
30
31#ifdef KICAD_IPC_API
33#endif
34
41class PGM_KICAD : public PGM_BASE
42{
43public:
45 m_bm( "kicad" ) // indicates a "$HOME/.kicad wxConfig like" config file.
46 {}
47
48 ~PGM_KICAD() throw()
49 {
50 Destroy();
51 }
52
53 bool OnPgmInit();
54 void OnPgmExit();
55 int OnPgmRun();
56
57 void MacOpenFile( const wxString& aFileName ) override;
58
60
62
63 wxString GetHelpFileName() { return m_bm.m_help_file; }
64
65 // The PGM_* classes can have difficulties at termination if they
66 // are not destroyed soon enough. Relying on a static destructor can be
67 // too late for contained objects like wxSingleInstanceChecker.
68 void Destroy();
69
70protected:
71
73
74#ifdef KICAD_IPC_API
75 // In PGM_SINGLE_TOP because PGM_BASE is in kicommon, and this can't be in the DLL
76 // because it depends on things like EDA_TEXT and EDA_SHAPE that aren't in the DLL
77 std::unique_ptr<API_HANDLER_COMMON> m_api_common_handler;
78#endif
79};
80
81
82extern PGM_KICAD& PgmTop();
83
84
85#endif // PGM_KICAD_H_
APP_SETTINGS_BASE is a settings class that should be derived for each standalone KiCad application.
Definition: app_settings.h:92
Container for data for KiCad programs.
Definition: pgm_base.h:102
PGM_KICAD extends PGM_BASE to bring in FileHistory() and PdfBrowser() which were moved from EDA_APP i...
Definition: pgm_kicad.h:42
PGM_KICAD()
Definition: pgm_kicad.h:44
wxString GetHelpFileName()
Definition: pgm_kicad.h:63
bool OnPgmInit()
Definition: kicad.cpp:86
void Destroy()
Definition: kicad.cpp:410
SEARCH_STACK & SysSearch()
Definition: pgm_kicad.h:61
void MacOpenFile(const wxString &aFileName) override
Specific to MacOSX (not used under Linux or Windows).
Definition: kicad.cpp:397
void OnPgmExit()
Definition: kicad.cpp:375
APP_SETTINGS_BASE * PgmSettings()
Definition: pgm_kicad.h:59
~PGM_KICAD()
Definition: pgm_kicad.h:48
int OnPgmRun()
Definition: kicad.cpp:369
BIN_MOD m_bm
Definition: pgm_kicad.h:72
Look for files in a number of paths.
Definition: search_stack.h:43
see class PGM_BASE
PGM_KICAD & PgmTop()
Definition: kicad.cpp:80
Pertains to a single program module, either an EXE or a DSO/DLL ("bin_mod").
Definition: bin_mod.h:41
APP_SETTINGS_BASE * m_config
maybe from $HOME/.${m_name}
Definition: bin_mod.h:57
SEARCH_STACK m_search
Definition: bin_mod.h:60
wxString m_help_file
Definition: bin_mod.h:58