Files
TestEGr/TestEGrCmd.h
Dario Sassi f5dce0dd27 TestEGr 1.5c7 :
- migliorata gestione albero degli oggetti (corrente ora marcato)
- con doppio click invio Id oggetto a Edit dei comandi.
2014-03-23 12:41:29 +00:00

33 lines
872 B
C++

//----------------------------------------------------------------------------
// EgalTech 2013-2014
//----------------------------------------------------------------------------
// File : TestEGrCmd.cpp Data : 15.03.14 Versione : 1.5c5
// Contenuto : Dichiarazioni classe dell'edit per comandi utente.
//
//
//
// Modifiche : 27.02.14 DS Creazione modulo.
//
//
//----------------------------------------------------------------------------
#pragma once
#include <string>
//----------------------------------------------------------------------------
class TestEGrCmd : public CEdit
{
public :
TestEGrCmd( void) ;
~TestEGrCmd( void) ;
void OutputText( const std::string& sText) ;
protected :
afx_msg void OnKeyDown( UINT nChar, UINT nRepCnt, UINT nFlags) ;
DECLARE_MESSAGE_MAP()
} ;