I am developing an application that maps users eye movements with the cursor movements, hence developing ahands free cursor control system.

I am using Open CV library's .NET Wrapper for C# i.e. Emgu CV for development.

I am stuck at a point where I want to open a file/folder such that when a cursor is placed over a file/folder for say 3 to 5 seconds, the file/folder should open up or just perform a double-click event of a conventional mouse.

What could I use so as to solve this problem?

link|improve this question

1  
Umm, a Timer? What do you have so far? – Stu Feb 1 at 18:05
This is just an optional feature I'd love to implement! I have other features like blinks mapped to left and right clicks! – ykombinator Feb 1 at 18:07
2  
Do you mean you want this to work with Windows Explorer? So your program needs to be able to tell whether the cursor is hovering over something clickable? – Blorgbeard Feb 1 at 18:18
@Blorgbeard: I assume there is something 'clickable' beneaththe mouse pointer! – ykombinator Feb 2 at 8:39
feedback

3 Answers

up vote 1 down vote accepted
    Timer timer = new System.Timers.Timer(5000);//5 seconds
    timer.Elapsed += new ElapsedEventHandler(timer_Elapsed);

    private void form_MouseHover(object sender, System.EventArgs e) 
    {            
        timer.Start();
    }

    private void form_MouseLeave(object sender, System.EventArgs e) 
    {            
        timer.Stop();
    }

    void timer_Elapsed(object sender, ElapsedEventArgs e)
    {
        timer.Stop();
        OpenFileOrFolder();//Edit : implement your file / folder opening logic here
    }
link|improve this answer
I wondering what the method OpenFileOrFolder() is! – ykombinator Feb 2 at 8:30
1  
See edit. The code to implement is pretty obvious with 2 google clicks on the topic – Mika Jacobi Feb 2 at 12:20
Oh no! I assumed it to be some method.. you know! Well yes, I got it! Thanks for the help, anyway! – ykombinator Feb 2 at 12:39
feedback

I guess you need to break it down:

  1. Detect when the mouse moves or hovers
  2. Send a double click

For 1, I'd be looking at: capturing WM_MOUSEMOVE if you want your own definition of 'hovering'. For example, having a greater threshold for how much movement you'll tolerate and still consider it a 'hover'. Or, you could use the OS defined threshold and look for WM_MOUSEHOVER

For 2, SendInput should get you there

I'm assuming here, you don't actually care what's under the mouse per-se. As in, you're not going to do different behavior depending on what's under the mouse. For example, you'd send the double click when hovering over the titlebar, as well as if you were hovering over the file.

This article on project builds up a Spy++ style app, which should help.

link|improve this answer
feedback

Are you mapping eye control to the mouse pointer? The MouseHover event may be useful:

http://msdn.microsoft.com/en-us/library/system.windows.forms.control.mousehover.aspx

As well as MouseEnter, MouseLeave, etc.

If you're controlling a separate element (i.e., not the mouse) with the eyes, then I had to do something similar in WPF. It ultimately came down to mapping control coordinates to mouse location, counting the time within the bounds of that control, then calling the mouse click event handler.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.