39 lines
922 B
C
39 lines
922 B
C
|
#ifndef __dialog_pcb_text_properties__
|
||
|
#define __dialog_pcb_text_properties__
|
||
|
|
||
|
/**
|
||
|
@file
|
||
|
Subclass of DIALOG_PCB_TEXT_PROPERTIES_BASE, which is generated by wxFormBuilder.
|
||
|
*/
|
||
|
|
||
|
#include "dialog_pcb_text_properties_base.h"
|
||
|
|
||
|
//// end generated include
|
||
|
|
||
|
class WinEDA_PcbFrame;
|
||
|
class wxDC;
|
||
|
class TEXTE_PCB;
|
||
|
|
||
|
/** Implementing DIALOG_PCB_TEXT_PROPERTIES_BASE */
|
||
|
class DIALOG_PCB_TEXT_PROPERTIES : public DIALOG_PCB_TEXT_PROPERTIES_BASE
|
||
|
{
|
||
|
private:
|
||
|
WinEDA_PcbFrame* m_Parent;
|
||
|
wxDC* m_DC;
|
||
|
TEXTE_PCB* m_SelectedPCBText;
|
||
|
|
||
|
void MyInit();
|
||
|
|
||
|
protected:
|
||
|
// Handlers for DIALOG_PCB_TEXT_PROPERTIES_BASE events.
|
||
|
void OnCancelClick( wxCommandEvent& event );
|
||
|
void OnOkClick( wxCommandEvent& event );
|
||
|
|
||
|
public:
|
||
|
DIALOG_PCB_TEXT_PROPERTIES( WinEDA_PcbFrame* parent, TEXTE_PCB* passedTextPCB, wxDC* DC );
|
||
|
//// end generated class members
|
||
|
|
||
|
};
|
||
|
|
||
|
#endif // __dialog_pcb_text_properties__
|