KiCad PCB EDA Suite
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages Concepts
kicad_manager_frame.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) 2013 CERN (www.cern.ch)
5 * Copyright The 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 KICAD_H
26#define KICAD_H
27
28#include <kiway_player.h>
29
30class ACTION_TOOLBAR;
31class BITMAP_BUTTON;
32class EDA_BASE_FRAME;
33class KICAD_SETTINGS;
36class PROJECT_TREE;
38class UPDATE_MANAGER;
39
44{
45public:
46 KICAD_MANAGER_FRAME( wxWindow* parent, const wxString& title,
47 const wxPoint& pos, const wxSize& size );
48
50
51 void OnIdle( wxIdleEvent& event );
52
53 bool canCloseWindow( wxCloseEvent& aCloseEvent ) override;
54 void doCloseWindow() override;
55 void OnSize( wxSizeEvent& event ) override;
56
57 void UnarchiveFiles();
58
59 void OnOpenFileInTextEditor( wxCommandEvent& event );
60
61 void OnFileHistory( wxCommandEvent& event );
62 void OnClearFileHistory( wxCommandEvent& aEvent );
63 void OnExit( wxCommandEvent& event );
64
69 wxStatusBar* OnCreateStatusBar( int number, long style, wxWindowID id,
70 const wxString& name ) override;
71
75 void HideTabsIfNeeded();
76
77 wxString GetCurrentFileName() const override
78 {
79 return GetProjectFileName();
80 }
81
92 void ImportNonKiCadProject( const wxString& aWindowTitle, const wxString& aFilesWildcard,
93 const std::vector<std::string>& aSchFileExtensions,
94 const std::vector<std::string>& aPcbFileExtensions,
95 int aSchFileType, int aPcbFileType );
96
100 void OnImportAltiumProjectFiles( wxCommandEvent& event );
101
105 void OnImportCadstarArchiveFiles( wxCommandEvent& event );
106
110 void OnImportEagleFiles( wxCommandEvent& event );
111
115 void OnImportEasyEdaFiles( wxCommandEvent& event );
116
120 void OnImportEasyEdaProFiles( wxCommandEvent& event );
121
125 void PrintPrjInfo();
126
127 void RefreshProjectTree();
128
140 void CreateNewProject( const wxFileName& aProjectFileName, bool aCreateStubFiles = true );
141
145 bool CloseProject( bool aSave );
146 void LoadProject( const wxFileName& aProjectFileName );
147
148 void OpenJobsFile( const wxFileName& aFileName, bool aCreate = false,
149 bool aResaveProjectPreferences = true );
150
151
152 void LoadSettings( APP_SETTINGS_BASE* aCfg ) override;
153
154 void SaveSettings( APP_SETTINGS_BASE* aCfg ) override;
155
156 void ShowChangedLanguage() override;
157 void CommonSettingsChanged( int aFlags ) override;
158 void ProjectChanged() override;
159
164 void OnChangeWatchedPaths( wxCommandEvent& aEvent );
165
166 const wxString GetProjectFileName() const;
167
168 bool IsProjectActive();
169 // read only accessors
170 const wxString SchFileName();
171 const wxString SchLegacyFileName();
172 const wxString PcbFileName();
173 const wxString PcbLegacyFileName();
174
175 void ReCreateTreePrj();
176
184 void SaveOpenJobSetsToLocalSettings( bool aIsExplicitUserSave = false );
185
186 wxWindow* GetToolCanvas() const override;
187
188 std::shared_ptr<PLUGIN_CONTENT_MANAGER> GetPcm() { return m_pcm; };
189
190 void SetPcmButton( BITMAP_BUTTON* aButton );
191
192 void CreatePCM(); // creates the PLUGIN_CONTENT_MANAGER
193
194 // Used only on Windows: stores the info message about file watcher
196
197 DECLARE_EVENT_TABLE()
198
199protected:
200 virtual void setupUIConditions() override;
201
202 void doReCreateMenuBar() override;
203
205
206 void onNotebookPageCloseRequest( wxAuiNotebookEvent& evt );
207
208 void onNotebookPageCountChanged( wxAuiNotebookEvent& evt );
209
210private:
211 void setupTools();
213
214 void DoWithAcceptedFiles() override;
215
216 APP_SETTINGS_BASE* config() const override;
217
219
220 const SEARCH_STACK& sys_search() override;
221
222 wxString help_name() override;
223
224 void language_change( wxCommandEvent& event );
225
227
231
233 wxAuiNotebook* m_notebook;
236
241};
242
243
244// The C++ project manager includes a single PROJECT in its link image.
245class PROJECT;
246extern PROJECT& Prj();
247
248#endif
const char * name
Definition: DXF_plotter.cpp:59
Define the structure of a toolbar with buttons that invoke ACTIONs.
APP_SETTINGS_BASE is a settings class that should be derived for each standalone KiCad application.
Definition: app_settings.h:92
A bitmap button widget that behaves like an AUI toolbar item's button when it is drawn.
Definition: bitmap_button.h:42
The base frame for deriving all KiCad main window classes.
The main KiCad project manager frame.
std::shared_ptr< PLUGIN_CONTENT_MANAGER > m_pcm
void language_change(wxCommandEvent &event)
void SetPcmButton(BITMAP_BUTTON *aButton)
void doCloseWindow() override
void CreateNewProject(const wxFileName &aProjectFileName, bool aCreateStubFiles=true)
Creates a new project by setting up and initial project, schematic, and board files.
const SEARCH_STACK & sys_search() override
Return a SEARCH_STACK pertaining to entire program.
void OnImportEasyEdaProFiles(wxCommandEvent &event)
Open dialog to import EasyEDA Pro schematic and board files.
void ProjectChanged() override
Notification event that the project has changed.
void ShowChangedLanguage() override
Redraw the menus and what not in current language.
const wxString SchLegacyFileName()
wxWindow * GetToolCanvas() const override
Canvas access.
void OnImportEasyEdaFiles(wxCommandEvent &event)
Open dialog to import EasyEDA Std schematic and board files.
PROJECT_TREE_PANE * m_leftWin
void OnImportAltiumProjectFiles(wxCommandEvent &event)
Open dialog to import Altium project files.
const wxString GetProjectFileName() const
KICAD_SETTINGS * kicadSettings() const
const wxString SchFileName()
void OnImportEagleFiles(wxCommandEvent &event)
Open dialog to import Eagle schematic and board files.
wxStatusBar * OnCreateStatusBar(int number, long style, wxWindowID id, const wxString &name) override
Create the status line (like a wxStatusBar).
void OnExit(wxCommandEvent &event)
void OpenJobsFile(const wxFileName &aFileName, bool aCreate=false, bool aResaveProjectPreferences=true)
void OnChangeWatchedPaths(wxCommandEvent &aEvent)
Called by sending a event with id = ID_INIT_WATCHED_PATHS rebuild the list of watched paths.
void LoadProject(const wxFileName &aProjectFileName)
std::shared_ptr< PLUGIN_CONTENT_MANAGER > GetPcm()
bool canCloseWindow(wxCloseEvent &aCloseEvent) override
void OnSize(wxSizeEvent &event) override
virtual void setupUIConditions() override
Setup the UI conditions for the various actions and their controls in this frame.
void OnFileHistory(wxCommandEvent &event)
void DoWithAcceptedFiles() override
Execute action on accepted dropped file.
void OnOpenFileInTextEditor(wxCommandEvent &event)
APP_SETTINGS_BASE * config() const override
Return the settings object used in SaveSettings(), and is overloaded in KICAD_MANAGER_FRAME.
const wxString PcbLegacyFileName()
KICAD_MANAGER_FRAME(wxWindow *parent, const wxString &title, const wxPoint &pos, const wxSize &size)
bool CloseProject(bool aSave)
Closes the project, and saves it if aSave is true;.
wxString GetCurrentFileName() const override
Get the full filename + path of the currently opened file in the frame.
void onNotebookPageCloseRequest(wxAuiNotebookEvent &evt)
void CommonSettingsChanged(int aFlags) override
Notification event that some of the common (suite-wide) settings have changed.
void LoadSettings(APP_SETTINGS_BASE *aCfg) override
Load common frame parameters from a configuration file.
void OnIdle(wxIdleEvent &event)
void PrintPrjInfo()
Prints the current working directory name and the project name on the text panel.
void SaveOpenJobSetsToLocalSettings(bool aIsExplicitUserSave=false)
void onNotebookPageCountChanged(wxAuiNotebookEvent &evt)
void OnClearFileHistory(wxCommandEvent &aEvent)
void OnImportCadstarArchiveFiles(wxCommandEvent &event)
Open dialog to import CADSTAR Schematic and PCB Archive files.
void SaveSettings(APP_SETTINGS_BASE *aCfg) override
Save common frame parameters to a configuration data file.
void ImportNonKiCadProject(const wxString &aWindowTitle, const wxString &aFilesWildcard, const std::vector< std::string > &aSchFileExtensions, const std::vector< std::string > &aPcbFileExtensions, int aSchFileType, int aPcbFileType)
Creates a project and imports a non-KiCad Schematic and PCB.
BITMAP_BUTTON * m_pcmButton
void doReCreateMenuBar() override
PANEL_KICAD_LAUNCHER * m_launcher
void HideTabsIfNeeded()
Hides the tabs for Editor notebook if there is only 1 page.
wxString help_name() override
const wxString PcbFileName()
std::unique_ptr< UPDATE_MANAGER > m_updateManager
wxAuiNotebook * m_notebook
PROJECT & Prj() const
Return a reference to the PROJECT associated with this KIWAY.
Main class of Plugin and Content Manager subsystem.
Definition: pcm.h:106
PROJECT_TREE_PANE Window to display the tree files.
PROJECT_TREE This is the class to show (as a tree) the files in the project directory.
Definition: project_tree.h:43
Container for project specific data.
Definition: project.h:64
Look for files in a number of paths.
Definition: search_stack.h:43
STL namespace.