33 lines
886 B
C
33 lines
886 B
C
|
|
||
|
#ifndef _DIALOG_PRINT_USING_PRINTER_H_
|
||
|
#define _DIALOG_PRINT_USING_PRINTER_H_
|
||
|
|
||
|
|
||
|
#include "dialog_print_using_printer_base.h"
|
||
|
|
||
|
|
||
|
/**
|
||
|
* Print schematic dialog.
|
||
|
*
|
||
|
* Class derived from DIALOG_PRINT_USING_PRINTER_base created by wxFormBuilder
|
||
|
*/
|
||
|
class DIALOG_PRINT_USING_PRINTER : public DIALOG_PRINT_USING_PRINTER_BASE
|
||
|
{
|
||
|
public:
|
||
|
DIALOG_PRINT_USING_PRINTER( WinEDA_SchematicFrame* aParent );
|
||
|
~DIALOG_PRINT_USING_PRINTER() {};
|
||
|
|
||
|
WinEDA_SchematicFrame* GetParent() const;
|
||
|
|
||
|
private:
|
||
|
void OnCloseWindow( wxCloseEvent& event );
|
||
|
void OnInitDialog( wxInitDialogEvent& event );
|
||
|
void OnPageSetup( wxCommandEvent& event );
|
||
|
void OnPrintPreview( wxCommandEvent& event );
|
||
|
void OnPrintButtonClick( wxCommandEvent& event );
|
||
|
void OnButtonCancelClick( wxCommandEvent& event ){ Close(); }
|
||
|
};
|
||
|
|
||
|
|
||
|
#endif // _DIALOG_PRINT_USING_PRINTER_H_
|