You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							36 lines
						
					
					
						
							966 B
						
					
					
				
			
		
		
		
			
			
			
		
		
	
	
							36 lines
						
					
					
						
							966 B
						
					
					
				| ///////////////////////////////////////////////////////////////////////////// | |
| // Name:        dialog_edit_label.h | |
| // Author:      jean-pierre Charras | |
| // Modified by: | |
| // Licence: GPL | |
| ///////////////////////////////////////////////////////////////////////////// | |
|  | |
| #ifndef _DIALOG_EDIT_LABEL_H_ | |
| #define _DIALOG_EDIT_LABEL_H_ | |
|  | |
| #include "dialog_edit_label_base.h" | |
|  | |
| class DialogLabelEditor : public DialogLabelEditor_Base | |
| { | |
| private: | |
|     WinEDA_SchematicFrame* m_Parent; | |
|     SCH_TEXT*              m_CurrentText; | |
|     wxTextCtrl *           m_textLabel; | |
| 
 | |
| public: | |
|     DialogLabelEditor( WinEDA_SchematicFrame* parent, SCH_TEXT* aTextItem ); | |
|     ~DialogLabelEditor(){}; | |
| 
 | |
| 
 | |
| public: | |
| 
 | |
| private: | |
|     void InitDialog( ); | |
|   	virtual void OnEnterKey( wxCommandEvent& aEvent ); | |
|     virtual void OnOkClick( wxCommandEvent& aEvent ); | |
|     virtual void OnCancelClick( wxCommandEvent& aEvent ); | |
|     void TextPropertiesAccept( wxCommandEvent& aEvent ); | |
| }; | |
| 
 | |
| 
 | |
| #endif    // _DIALOG_EDIT_LABEL_H_
 |