|
From: <ob...@us...> - 2010-05-11 00:38:19
|
Revision: 755
http://scstudio.svn.sourceforge.net/scstudio/?rev=755&view=rev
Author: obouda
Date: 2010-05-11 00:38:13 +0000 (Tue, 11 May 2010)
Log Message:
-----------
Message Sequence: Removed an unsuccessful attempt to highlight all the instances being subject of the message sequence during filling the dialog. Only border instances highlighting seems to be reasonable.
Modified Paths:
--------------
trunk/src/view/visio/addon/messagesequencedlg.cpp
trunk/src/view/visio/addon/messagesequencedlg.h
Modified: trunk/src/view/visio/addon/messagesequencedlg.cpp
===================================================================
--- trunk/src/view/visio/addon/messagesequencedlg.cpp 2010-05-10 23:14:18 UTC (rev 754)
+++ trunk/src/view/visio/addon/messagesequencedlg.cpp 2010-05-11 00:38:13 UTC (rev 755)
@@ -136,20 +136,6 @@
return 0;
}
-LRESULT CMessageSequenceDlg::OnRemarkInstances(WORD wNotifyCode, WORD wID, HWND hWndCtl, BOOL& bHandled)
-{
- // TODO: add a button to refresh marked instances according to current startPosY, link with this function
- /*
- TCHAR newPosYText[11] = {0};
- m_startPosYEdit.GetWindowText(newPosYText, 10);
- double newPosY = _tcstod(newPosYText, 0);
- if (m_old_start_pos_y == newPosY) return VAORC_SUCCESS;
- m_old_start_pos_y = newPosY;
- MessageBox(_T("TODO: remark instances according to Y-start"), _T("Debug"), MB_OK | MB_ICONEXCLAMATION);
- */
- return VAORC_SUCCESS;
-}
-
int CMessageSequenceDlg::LoadRegistryData()
{
TRACE("CMessageSequenceDlg::LoadRegistryData() loading options from registry");
Modified: trunk/src/view/visio/addon/messagesequencedlg.h
===================================================================
--- trunk/src/view/visio/addon/messagesequencedlg.h 2010-05-10 23:14:18 UTC (rev 754)
+++ trunk/src/view/visio/addon/messagesequencedlg.h 2010-05-11 00:38:13 UTC (rev 755)
@@ -83,7 +83,6 @@
COMMAND_ID_HANDLER(IDC_MS_DIR_RIGHT, OnDirectionRdo)
COMMAND_ID_HANDLER(IDC_MS_DIR_LEFT_RIGHT, OnDirectionRdo)
COMMAND_ID_HANDLER(IDC_MS_DIR_RIGHT_LEFT, OnDirectionRdo)
- COMMAND_ID_HANDLER(IDC_MS_START_POS_Y, OnRemarkInstances)
END_MSG_MAP()
@@ -97,7 +96,6 @@
LRESULT OnInitDialog(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled);
LRESULT OnCloseCmd(WORD wNotifyCode, WORD wID, HWND hWndCtl, BOOL& bHandled);
LRESULT OnDirectionRdo(WORD wNotifyCode, WORD wID, HWND hWndCtl, BOOL& bHandled);
- LRESULT OnRemarkInstances(WORD wNotifyCode, WORD wID, HWND hWndCtl, BOOL& bHandled);
int LoadRegistryData();
int SaveRegistryData();
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|