mirror of
https://gitlab.com/kicad/code/kicad.git
synced 2025-09-15 10:43:15 +02:00
File "rules" has instructional text as comments near top. 2) Convert all text files in repo to LF line ending form. Any checkout done with "rules" in play will convert the working tree to native line ending, while keeping repo as LF line ending.
31 lines
563 B
C++
31 lines
563 B
C++
|
|
#ifndef _DIALOG_LIB_EDIT_TEXT_H_
|
|
#define _DIALOG_LIB_EDIT_TEXT_H_
|
|
|
|
|
|
#include <dialog_lib_edit_text_base.h>
|
|
|
|
|
|
class LIB_EDIT_FRAME;
|
|
class LIB_TEXT;
|
|
|
|
|
|
class DIALOG_LIB_EDIT_TEXT : public DIALOG_LIB_EDIT_TEXT_BASE
|
|
{
|
|
private:
|
|
LIB_EDIT_FRAME* m_parent;
|
|
LIB_TEXT* m_graphicText;
|
|
|
|
public:
|
|
DIALOG_LIB_EDIT_TEXT( LIB_EDIT_FRAME* aParent, LIB_TEXT* aText );
|
|
~DIALOG_LIB_EDIT_TEXT() {};
|
|
|
|
private:
|
|
void initDlg( );
|
|
void OnOkClick( wxCommandEvent& aEvent );
|
|
void OnCancelClick( wxCommandEvent& aEvent );
|
|
};
|
|
|
|
|
|
#endif // _DIALOG_LIB_EDIT_TEXT_H_
|