KiCad PCB EDA Suite
Loading...
Searching...
No Matches
dialog_print.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 The KiCad Developers, see AUTHORS.txt for contributors.
5 *
6 * This program is free software: you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License as published by the
8 * Free Software Foundation, either version 3 of the License, or (at your
9 * option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful, but
12 * WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License along
17 * with this program. If not, see <http://www.gnu.org/licenses/>.
18 */
19
20#pragma once
21
22#include "dialog_print_base.h"
23
24
25class SCH_EDIT_FRAME;
26class SCH_SCREEN;
27
28
30{
31public:
32 DIALOG_PRINT( SCH_EDIT_FRAME* aParent );
33 ~DIALOG_PRINT() override;
34
35protected:
36 void OnOutputChoice( wxCommandEvent& event ) override;
37 void OnUseColorThemeChecked( wxCommandEvent& event ) override;
38
39private:
40 bool TransferDataToWindow() override;
41 bool TransferDataFromWindow() override;
42
43 void OnPageSetup( wxCommandEvent& event ) override;
44 void OnPrintPreview( wxCommandEvent& event ) override;
45
46 void SavePrintOptions();
47
48private:
51};
52
53
Class DIALOG_PRINT_BASE.
void OnPrintPreview(wxCommandEvent &event) override
void SavePrintOptions()
void OnPageSetup(wxCommandEvent &event) override
~DIALOG_PRINT() override
void OnOutputChoice(wxCommandEvent &event) override
bool TransferDataFromWindow() override
SCH_EDIT_FRAME * m_parent
Definition: dialog_print.h:49
void OnUseColorThemeChecked(wxCommandEvent &event) override
bool TransferDataToWindow() override
Schematic editor (Eeschema) main window.