I am writing a very simple program in C++ that listens to keyboard input, but what I want to output is much more difficult than I expected. For every key I press, I want an image (specific to the key) to appear on the screen. For example, let's say if I press the "O" key, an image of Earth appears on my screen.

What's the best way to achieve this? Thanks!

link|improve this question
where do you want it to appear on the screen? for how long? etc. etc. you need to tell more details – Marius Bancila Aug 3 '11 at 10:20
It doesn't matter where on the screen, and preferably I would like to control for how long (but if no such parameter exists and it just stays on the screen, that's okay too). I know that it is possible to do this using system() and opening a JPG, but I'd like to find something that is part of the program. For example, if I press a different key, a different image comes up and the previous image disappears. – NEB Aug 3 '11 at 10:56
feedback

2 Answers

This is possible with layered windows. I have created a Win32 project as a demo. You can find the code and explanations here.

Basically you have to:

  • handle the WM_CHAR message and load the appropriate image (from resources or from disk)
  • create a layered window and display the loaded image in that window
  • if you want to automatically close the window after an given interval after the last key was pressed you have to create a timer and in the timed procedure destroy the window

Check my link for a solution to your problem.

link|improve this answer
feedback

In your Form KeyDown event, you have to check for what KeyCode was pressed:

if (e->KeyCode == Keys::Enter)
{
    // Enter (return) was pressed.
    // ... Call a custom method when user presses this key.
    ShowKeyMethod();
}

from there, you can have a hidden image or PictureBox on your form which is tied to an image (e.g. The Earth). When the key is pressed (down), you show the image. When the key is raised (KeyUp), you hide that image. You will have to check the KeyCode every time.

link|improve this answer
the question was specifically for C++, not C# – Marius Bancila Aug 4 '11 at 11:22
@Marius: It's the same either way.. the syntax is slightly different. – 0A0D Aug 4 '11 at 12:21
i don't think that "slight" difference in syntax is the problem. there is simply no such mechanism – Ali Veli Aug 4 '11 at 12:25
@Ali: So you are saying there is no such thing as a KeyDown event? – 0A0D Aug 4 '11 at 12:29
well of course there is but my point is that your answer is too obvious: do it with events – Ali Veli Aug 4 '11 at 14:04
show 2 more comments
feedback

Your Answer

 
or
required, but never shown

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