diff options
author | fcolin | 2007-02-01 13:10:56 +0000 |
---|---|---|
committer | fcolin | 2007-02-01 13:10:56 +0000 |
commit | b68c95920ef1553565fd76d6abf279af2afc585f (patch) | |
tree | 069ba17df4b0a4ae6663743aaf99a4507cd8c6a5 | |
parent | 7f7f0d3378f8528b13adf99395f0a41c8c05a3d3 (diff) | |
download | ivy-cplusplus-b68c95920ef1553565fd76d6abf279af2afc585f.zip ivy-cplusplus-b68c95920ef1553565fd76d6abf279af2afc585f.tar.gz ivy-cplusplus-b68c95920ef1553565fd76d6abf279af2afc585f.tar.bz2 ivy-cplusplus-b68c95920ef1553565fd76d6abf279af2afc585f.tar.xz |
Utilisateur : Fcolin Date : 26/02/03 Heure : 16:40 Archivé dans $/Bus/IvyProbe Commentaire: suppression bouton clock start (vss 16)
-rw-r--r-- | Bus/IvyProbe/IvyProbeDlg.cpp | 62 |
1 files changed, 0 insertions, 62 deletions
diff --git a/Bus/IvyProbe/IvyProbeDlg.cpp b/Bus/IvyProbe/IvyProbeDlg.cpp index 0a6e7a4..88cc8e2 100644 --- a/Bus/IvyProbe/IvyProbeDlg.cpp +++ b/Bus/IvyProbe/IvyProbeDlg.cpp @@ -66,13 +66,6 @@ BEGIN_MESSAGE_MAP(CIvyProbeDlg, MyDialog) ON_WM_CLOSE()
ON_BN_CLICKED(IDC_SEND, OnSend)
ON_BN_CLICKED(IDC_BIND, OnBind)
- ON_BN_CLICKED(IDC_CLOCK_FAST_BACKWARD, OnClockFastBackward)
- ON_BN_CLICKED(IDC_CLOCK_BACKWARD, OnClockBackward)
- ON_BN_CLICKED(IDC_CLOCK_PAUSE, OnClockPause)
- ON_BN_CLICKED(IDC_CLOCK_START, OnClockStart)
- ON_BN_CLICKED(IDC_CLOCK_FORWARD, OnClockForward)
- ON_BN_CLICKED(IDC_CLOCK_FAST_FORWARD, OnClockFastForward)
- ON_BN_CLICKED(IDC_CLOCK_RATE, OnClockRate)
ON_WM_SYSCOMMAND()
ON_COMMAND(FILE_LOAD, OnLoad)
ON_COMMAND(FILE_SAVE, OnSave)
@@ -142,13 +135,6 @@ BOOL CIvyProbeDlg::OnInitDialog() << item ( IDC_TEXT, GREEDY )
<< ( pane( HORIZONTAL, ABSOLUTE_VERT )
<< item( paneNull, GREEDY )
- << item( IDC_CLOCK_FAST_BACKWARD, NORESIZE )
- << item( IDC_CLOCK_BACKWARD, NORESIZE )
- << item( IDC_CLOCK_PAUSE, NORESIZE )
- << item( IDC_CLOCK_START, NORESIZE )
- << item( IDC_CLOCK_RATE, NORESIZE )
- << item( IDC_CLOCK_FORWARD, NORESIZE )
- << item( IDC_CLOCK_FAST_FORWARD, NORESIZE )
<< item( paneNull, GREEDY )
)
<< ( pane( HORIZONTAL, ABSOLUTE_VERT )
@@ -303,54 +289,6 @@ void CIvyProbeDlg::OnBind() m_expr.Clear();
}
-void CIvyProbeDlg::OnClockFastBackward()
-{
- CString buffer = "SetClock Rate=-9.0" ;
- int count = bus->SendMsg( CONVSTR(buffer) );
- WriteMessage( "Sending %d message %s",count,CONVSTR(buffer) );
-}
-
-void CIvyProbeDlg::OnClockBackward()
-{
- CString buffer = "SetClock Rate=-1.0" ;
- int count = bus->SendMsg( CONVSTR(buffer) );
- WriteMessage( "Sending %d message %s",count,CONVSTR(buffer) );
-}
-
-void CIvyProbeDlg::OnClockPause()
-{
- CString buffer = "ClockPause" ;
- int count = bus->SendMsg( CONVSTR(buffer) );
- WriteMessage( "Sending %d message %s",count,CONVSTR(buffer) );
-}
-
-void CIvyProbeDlg::OnClockStart()
-{
- CString buffer = "ClockStart" ;
- int count = bus->SendMsg( CONVSTR(buffer) );
- WriteMessage( "Sending %d message %s",count,CONVSTR(buffer) );
-}
-
-void CIvyProbeDlg::OnClockForward()
-{
- CString buffer = "SetClock Rate=9.0" ;
- int count = bus->SendMsg( CONVSTR(buffer) );
- WriteMessage( "Sending %d message %s",count,CONVSTR(buffer) );
-}
-
-void CIvyProbeDlg::OnClockFastForward()
-{
- CString buffer = "SetClock Rate=100.0" ;
- int count = bus->SendMsg( CONVSTR(buffer) );
- WriteMessage( "Sending %d message %s",count,CONVSTR(buffer) );
-}
-
-void CIvyProbeDlg::OnClockRate()
-{
- CString buffer = "SetClock Rate=1.0" ;
- int count = bus->SendMsg( CONVSTR(buffer) );
- WriteMessage( "Sending %d message %s",count,CONVSTR(buffer) );
-}
void CIvyProbeDlg::OnLoad()
{
|