KiCad PCB EDA Suite
Loading...
Searching...
No Matches
dialog_sheet_properties.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) 2009 Wayne Stambaugh <[email protected]>
5 * Copyright (C) 2014-2024 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 DIALOG_SHEET_PROPERTIES_H
26#define DIALOG_SHEET_PROPERTIES_H
27
28#include <fields_grid_table.h>
29#include <widgets/unit_binder.h>
31#include <sch_sheet.h>
32
33class SCH_SHEET;
34class SCH_EDIT_FRAME;
35
36
38{
39public:
41 bool* aClearAnnotationNewItems,
42 bool* aUpdateHierarchyNavigator );
43
44 ~DIALOG_SHEET_PROPERTIES() override;
45
46private:
47 bool onSheetFilenameChanged( const wxString& aNewFilename, bool* aIsUndoable );
48
49 bool TransferDataToWindow() override;
50 bool TransferDataFromWindow() override;
51
52 bool Validate() override;
53
54 // event handlers
55 void OnAddField( wxCommandEvent& event ) override;
56 void OnDeleteField( wxCommandEvent& event ) override;
57 void OnMoveUp( wxCommandEvent& event ) override;
58 void OnMoveDown( wxCommandEvent& event ) override;
59 void OnSizeGrid( wxSizeEvent& event ) override;
60 void OnGridCellChanging( wxGridEvent& event );
61 void OnUpdateUI( wxUpdateUIEvent& event ) override;
62 void OnInitDlg( wxInitDialogEvent& event ) override;
63
64 void AdjustGridColumns();
65
66private:
71
72 wxSize m_size;
75 std::bitset<64> m_shownColumns;
76
79
82};
83
84#endif // DIALOG_SHEET_PROPERTIES_H
Class DIALOG_SHEET_PROPERTIES_BASE.
void OnAddField(wxCommandEvent &event) override
void OnMoveDown(wxCommandEvent &event) override
void OnGridCellChanging(wxGridEvent &event)
void OnDeleteField(wxCommandEvent &event) override
void OnSizeGrid(wxSizeEvent &event) override
bool onSheetFilenameChanged(const wxString &aNewFilename, bool *aIsUndoable)
void OnInitDlg(wxInitDialogEvent &event) override
void OnUpdateUI(wxUpdateUIEvent &event) override
void OnMoveUp(wxCommandEvent &event) override
Schematic editor (Eeschema) main window.
Instances are attached to a symbol or sheet and provide a place for the symbol's value,...
Definition: sch_field.h:51
Sheet symbol placed in a schematic, and is the entry point for a sub schematic.
Definition: sch_sheet.h:57