f5dce0dd27
- migliorata gestione albero degli oggetti (corrente ora marcato) - con doppio click invio Id oggetto a Edit dei comandi.
33 lines
872 B
C++
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()
|
|
|
|
} ;
|