P300 speller test mode
Posted: 02 Mar 2010, 14:31
Hi,
I updated the newest version of V3.0, recompiled it in MSVC2008, and found that the test mode does not work as it's supposed to. The user was not able to select a character by clicking on it with the mouse although the option of "TestMode" was checked, and the speller is running in online free spelling mode.
I tried to set break points at ObjectsClicked() as in
and at mObjectsClicked.push() as in
but none of them are caught.
Could anybody share some insights? Thanks very much!
Ray
I updated the newest version of V3.0, recompiled it in MSVC2008, and found that the test mode does not work as it's supposed to. The user was not able to select a character by clicking on it with the mouse although the option of "TestMode" was checked, and the speller is running in online free spelling mode.
I tried to set break points at ObjectsClicked() as in
Code: Select all
P3SpellerTask::OnClassResult()
{
...
while( !Display().ObjectsClicked().empty() )
{...
Code: Select all
void GraphDisplay::Click( int inX, int inY )
{ ...
if( ( *i )->Visible() && ( *i )->Click( p ) )
mObjectsClicked.push( *i );
}
Could anybody share some insights? Thanks very much!
Ray