KiCad PCB EDA Suite
Loading...
Searching...
No Matches
invoke_pl_editor_dialog.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 SoftPLC Corporation, Dick Hollenbeck <[email protected]>
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, see <https://www.gnu.org/licenses/>.
19 */
20
21// This header is an insolation layer between top most frames and any number of
22// DIALOG classes which can be called from a frame window.
23// It is a place to put invocation functions for [modal] dialogs, with benefits:
24//
25// 1) The information about each dialog class is not exposed to the frame.
26// So therefore the DIALOG class can often be kept out of a header file entirely.
27//
28// 2) The information about the calling frame is not necessarily exposed to
29// to the called dialog class, at least not in here.
30
31// The actual InvokeDialog<class>() function is usually coded at the bottom of the
32// DIALOG_<class>.cpp file.
33
34
35#ifndef INVOKE_PL_EDITOR_DIALOG_H_
36#define INVOKE_PL_EDITOR_DIALOG_H_
37
38// Often this is not used in the prototypes, since wxFrame is good enough and would
39// represent maximum information hiding.
40class PL_EDITOR_FRAME;
41class DS_DATA_ITEM;
42class wxPrintData;
43class wxPageSetupDialogData;
44
45
48int InvokeDialogPrint( PL_EDITOR_FRAME* aCaller, wxPrintData* aPrintData,
49 wxPageSetupDialogData* aPageSetupData );
50
53int InvokeDialogPrintPreview( PL_EDITOR_FRAME* aCaller, wxPrintData* aPrintData );
54
55#endif // INVOKE_PL_EDITOR_DIALOG_H_
Drawing sheet structure type definitions.
The main window used in the drawing sheet editor.
int InvokeDialogPrintPreview(PL_EDITOR_FRAME *aCaller, wxPrintData *aPrintData)
Create and show a print preview dialog returns 1 if OK, 0 , there is a problem.
int InvokeDialogPrint(PL_EDITOR_FRAME *aCaller, wxPrintData *aPrintData, wxPageSetupDialogData *aPageSetupData)
Create and show a print dialog returns 1 if OK, 0 , there is a problem.