]> git.saurik.com Git - wxWidgets.git/commitdiff
Add a simple test for keyboard events generation.
authorVadim Zeitlin <vadim@wxwidgets.org>
Sat, 11 Sep 2010 10:18:31 +0000 (10:18 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Sat, 11 Sep 2010 10:18:31 +0000 (10:18 +0000)
Check that the events generated by wxUIActionSimulator result in the same
wxKeyEvents being generated under all platforms. This is not the same as
checking the event generation for the actual keys pressed by the user as there
are some small differences between the two but better than nothing.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@65519 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

tests/Makefile.in
tests/events/keyboard.cpp [new file with mode: 0644]
tests/makefile.bcc
tests/makefile.gcc
tests/makefile.vc
tests/makefile.wat
tests/test.bkl
tests/test_test_gui.dsp
tests/test_vc7_test_gui.vcproj
tests/test_vc8_test_gui.vcproj
tests/test_vc9_test_gui.vcproj

index 4a10638ebafe640802d15366784acd53433ad1c6..47264145bad5c09c1545f177a04d577dae91684e 100644 (file)
@@ -195,6 +195,7 @@ TEST_GUI_OBJECTS =  \
        test_gui_windowtest.o \
        test_gui_clone.o \
        test_gui_propagation.o \
        test_gui_windowtest.o \
        test_gui_clone.o \
        test_gui_propagation.o \
+       test_gui_keyboard.o \
        test_gui_fonttest.o \
        test_gui_image.o \
        test_gui_rawbmp.o \
        test_gui_fonttest.o \
        test_gui_image.o \
        test_gui_rawbmp.o \
@@ -803,6 +804,9 @@ test_gui_clone.o: $(srcdir)/events/clone.cpp $(TEST_GUI_ODEP)
 test_gui_propagation.o: $(srcdir)/events/propagation.cpp $(TEST_GUI_ODEP)
        $(CXXC) -c -o $@ $(TEST_GUI_CXXFLAGS) $(srcdir)/events/propagation.cpp
 
 test_gui_propagation.o: $(srcdir)/events/propagation.cpp $(TEST_GUI_ODEP)
        $(CXXC) -c -o $@ $(TEST_GUI_CXXFLAGS) $(srcdir)/events/propagation.cpp
 
+test_gui_keyboard.o: $(srcdir)/events/keyboard.cpp $(TEST_GUI_ODEP)
+       $(CXXC) -c -o $@ $(TEST_GUI_CXXFLAGS) $(srcdir)/events/keyboard.cpp
+
 test_gui_fonttest.o: $(srcdir)/font/fonttest.cpp $(TEST_GUI_ODEP)
        $(CXXC) -c -o $@ $(TEST_GUI_CXXFLAGS) $(srcdir)/font/fonttest.cpp
 
 test_gui_fonttest.o: $(srcdir)/font/fonttest.cpp $(TEST_GUI_ODEP)
        $(CXXC) -c -o $@ $(TEST_GUI_CXXFLAGS) $(srcdir)/font/fonttest.cpp
 
diff --git a/tests/events/keyboard.cpp b/tests/events/keyboard.cpp
new file mode 100644 (file)
index 0000000..9fe9a53
--- /dev/null
@@ -0,0 +1,407 @@
+///////////////////////////////////////////////////////////////////////////////
+// Name:        tests/events/keyboard.cpp
+// Purpose:     Test keyboard events
+// Author:      Vadim Zeitlin
+// Created:     2010-09-05
+// RCS-ID:      $Id$
+// Copyright:   (c) 2010 Vadim Zeitlin <vadim@wxwidgets.org>
+///////////////////////////////////////////////////////////////////////////////
+
+// ----------------------------------------------------------------------------
+// headers
+// ----------------------------------------------------------------------------
+
+#include "testprec.h"
+
+#ifdef __BORLANDC__
+    #pragma hdrstop
+#endif
+
+#if wxUSE_UIACTIONSIMULATOR
+
+#ifndef WX_PRECOMP
+    #include "wx/app.h"
+    #include "wx/event.h"
+    #include "wx/window.h"
+#endif // WX_PRECOMP
+
+#include "wx/uiaction.h"
+#include "wx/vector.h"
+
+namespace
+{
+
+// ----------------------------------------------------------------------------
+// test window verifying the event generation
+// ----------------------------------------------------------------------------
+
+class KeyboardTestWindow : public wxWindow
+{
+public:
+    KeyboardTestWindow(wxWindow *parent)
+        : wxWindow(parent, wxID_ANY)
+    {
+        Connect(wxEVT_KEY_DOWN, wxKeyEventHandler(KeyboardTestWindow::OnKeyDown));
+        Connect(wxEVT_CHAR, wxKeyEventHandler(KeyboardTestWindow::OnChar));
+        Connect(wxEVT_KEY_UP, wxKeyEventHandler(KeyboardTestWindow::OnKeyUp));
+    }
+
+    unsigned GetKeyDownCount() const { return m_keyDownEvents.size(); }
+    unsigned GetCharCount() const { return m_charEvents.size(); }
+    unsigned GetKeyUpCount() const { return m_keyUpEvents.size(); }
+
+    const wxKeyEvent& GetKeyDownEvent(unsigned n = 0) const
+    {
+        return m_keyDownEvents[n];
+    }
+    const wxKeyEvent& GetCharEvent(unsigned n = 0) const
+    {
+        return m_charEvents[n];
+    }
+    const wxKeyEvent& GetKeyUpEvent(unsigned n = 0) const
+    {
+        return m_keyUpEvents[n];
+    }
+
+    void ClearEvents()
+    {
+        m_keyDownEvents =
+        m_charEvents =
+        m_keyUpEvents = wxVector<wxKeyEvent>();
+    }
+
+private:
+    void OnKeyDown(wxKeyEvent& event)
+    {
+        m_keyDownEvents.push_back(event);
+        event.Skip();
+    }
+
+    void OnChar(wxKeyEvent& event)
+    {
+        m_charEvents.push_back(event);
+        event.Skip();
+    }
+
+    void OnKeyUp(wxKeyEvent& event)
+    {
+        m_keyUpEvents.push_back(event);
+        event.Skip();
+    }
+
+    wxVector<wxKeyEvent> m_keyDownEvents,
+                         m_charEvents,
+                         m_keyUpEvents;
+
+
+    wxDECLARE_NO_COPY_CLASS(KeyboardTestWindow);
+};
+
+// Object describing the (main fields of) keyboard event.
+struct KeyDesc
+{
+    KeyDesc(int keycode, int mods = 0)
+        : m_keycode(keycode),
+          m_mods(mods)
+    {
+    }
+
+    int m_keycode;
+    int m_mods;
+};
+
+// These functions are only needed because of wx bug: currently, modifiers key
+// events are inconsistent between platforms and wxMSW generates key down event
+// for e.g. WXK_CONTROL with wxMOD_CONTROL set and key up event with it unset
+// while wxGTK does exactly vice versa. So we provide these helpers to make it
+// possible to make the tests pass under all platforms for now but ideally they
+// should all be made to behave the same and this should become unnecessary.
+
+int GetModForKey(int keycode)
+{
+    switch ( keycode )
+    {
+        case WXK_CONTROL:   return wxMOD_CONTROL;
+        case WXK_SHIFT:     return wxMOD_SHIFT;
+        case WXK_ALT:       return wxMOD_ALT;
+        default:
+            wxFAIL_MSG( "Unknown modifier key" );
+    }
+
+    return wxMOD_NONE;
+}
+
+#ifdef __WXGTK__
+
+KeyDesc ModKeyDown(int keycode)
+{
+    // Second level bug: currently wxUIActionSimulator produces different
+    // modifiers than actually pressing the key. So while the above comment is
+    // true for keys pressed by user, when simulating them we do get the
+    // corresponding bit set for the modifier press events.
+    //
+    // Again, this is a bug and wxUIActionSimulator should be fixed to behave
+    // as the real events do but until this happens just work around this here.
+    return KeyDesc(keycode, GetModForKey(keycode));
+}
+
+KeyDesc ModKeyUp(int keycode)
+{
+    return KeyDesc(keycode, GetModForKey(keycode));
+}
+
+#else // Assume MSW-like behaviour for all the other platforms.
+
+KeyDesc ModKeyDown(int keycode)
+{
+    return KeyDesc(keycode, GetModForKey(keycode));
+}
+
+KeyDesc ModKeyUp(int keycode)
+{
+    return KeyDesc(keycode);
+}
+
+#endif // Platforms.
+
+// Verify that the event object corresponds to our idea of what it should be.
+void TestEvent(int line, const wxKeyEvent& ev, const KeyDesc& desc)
+{
+    // Construct the message we'll display if an assert fails.
+    std::string msg;
+    const wxEventType t = ev.GetEventType();
+    if ( t == wxEVT_KEY_DOWN )
+        msg = "key down";
+    else if ( t == wxEVT_CHAR )
+        msg = "char";
+    else if ( t == wxEVT_KEY_UP )
+        msg = "key up";
+    else
+        CPPUNIT_FAIL( "unknown event type" );
+
+    msg += " event at line ";
+    msg += wxString::Format("%d", line).mb_str();
+
+
+    CPPUNIT_ASSERT_EQUAL_MESSAGE( "wrong key code in " + msg,
+                                  desc.m_keycode,
+                                  ev.GetKeyCode() );
+
+#if wxUSE_UNICODE
+    if ( desc.m_keycode < 0x80 )
+    {
+        // FIXME: Currently wxMSW generates 'A' key code for key down/up events
+        // for the 'a' physical key while wxGTK and wxOSX/Cocoa generate them
+        // with 'a' and it's not clear which behaviour is more correct so don't
+        // test this for those events, only test it for EVT_CHAR where the
+        // correct behaviour is clear.
+
+        if ( t == wxEVT_CHAR )
+        {
+            // For 7-bit ASCII Unicode keys are the same as normal key codes.
+            CPPUNIT_ASSERT_EQUAL_MESSAGE( "wrong Unicode key in " + msg,
+                                          (char)desc.m_keycode,
+                                          (char)ev.GetUnicodeKey() );
+        }
+    }
+    else
+    {
+        // In this test we don't use any really Unicode characters so far so
+        // anything above 0x80 must be special keys (e.g. WXK_CONTROL &c) which
+        // don't have any Unicode equivalent.
+        CPPUNIT_ASSERT_EQUAL_MESSAGE( "wrong non-zero Unicode key in " + msg,
+                                      0,
+                                      (int)ev.GetUnicodeKey() );
+    }
+#endif // wxUSE_UNICODE
+
+    CPPUNIT_ASSERT_EQUAL_MESSAGE( "wrong modifiers in " + msg,
+                                  desc.m_mods,
+                                  ev.GetModifiers() );
+}
+
+// Call TestEvent() passing it the line number from where it was called: this
+// is useful for interpreting the assert failure messages.
+#define ASSERT_KEY_EVENT_IS( ev, desc ) TestEvent(__LINE__, ev, desc)
+
+} // anonymous namespace
+
+// --------------------------------------------------------------------------
+// test class
+// --------------------------------------------------------------------------
+
+class KeyboardEventTestCase : public CppUnit::TestCase
+{
+public:
+    KeyboardEventTestCase() {}
+
+    virtual void setUp();
+    virtual void tearDown();
+
+private:
+    CPPUNIT_TEST_SUITE( KeyboardEventTestCase );
+        CPPUNIT_TEST( NormalLetter );
+        CPPUNIT_TEST( NormalSpecial );
+        CPPUNIT_TEST( CtrlLetter );
+        CPPUNIT_TEST( CtrlSpecial );
+        CPPUNIT_TEST( ShiftLetter );
+        CPPUNIT_TEST( ShiftSpecial );
+    CPPUNIT_TEST_SUITE_END();
+
+    void NormalLetter();
+    void NormalSpecial();
+    void CtrlLetter();
+    void CtrlSpecial();
+    void ShiftLetter();
+    void ShiftSpecial();
+
+    KeyboardTestWindow *m_win;
+
+    wxDECLARE_NO_COPY_CLASS(KeyboardEventTestCase);
+};
+
+wxREGISTER_UNIT_TEST(KeyboardEvent);
+
+void KeyboardEventTestCase::setUp()
+{
+    m_win = new KeyboardTestWindow(wxTheApp->GetTopWindow());
+    m_win->SetFocus();
+    wxYield(); // needed to show the new window
+
+    // The window might get some key up events when it's being shown if the key
+    // was pressed when the program was started and released after the window
+    // was shown, e.g. this does happen in practice when launching the test
+    // from command line. Simply discard all the spurious events so far.
+    m_win->ClearEvents();
+}
+
+void KeyboardEventTestCase::tearDown()
+{
+    m_win->Destroy();
+}
+
+void KeyboardEventTestCase::NormalLetter()
+{
+    wxUIActionSimulator sim;
+    sim.Char('a');
+    wxYield();
+
+    CPPUNIT_ASSERT_EQUAL( 1, m_win->GetKeyDownCount() );
+    ASSERT_KEY_EVENT_IS( m_win->GetKeyDownEvent(), 'A' );
+
+    CPPUNIT_ASSERT_EQUAL( 1, m_win->GetCharCount() );
+    ASSERT_KEY_EVENT_IS( m_win->GetCharEvent(), 'a' );
+
+    CPPUNIT_ASSERT_EQUAL( 1, m_win->GetKeyUpCount() );
+    ASSERT_KEY_EVENT_IS( m_win->GetKeyUpEvent(), 'A' );
+}
+
+void KeyboardEventTestCase::NormalSpecial()
+{
+    wxUIActionSimulator sim;
+    sim.Char(WXK_END);
+    wxYield();
+
+    CPPUNIT_ASSERT_EQUAL( 1, m_win->GetKeyDownCount() );
+    ASSERT_KEY_EVENT_IS( m_win->GetKeyDownEvent(), WXK_END );
+
+    CPPUNIT_ASSERT_EQUAL( 1, m_win->GetCharCount() );
+    ASSERT_KEY_EVENT_IS( m_win->GetCharEvent(), WXK_END );
+
+    CPPUNIT_ASSERT_EQUAL( 1, m_win->GetKeyUpCount() );
+    ASSERT_KEY_EVENT_IS( m_win->GetKeyUpEvent(), WXK_END );
+}
+
+void KeyboardEventTestCase::CtrlLetter()
+{
+    wxUIActionSimulator sim;
+    sim.Char('z', wxMOD_CONTROL);
+    wxYield();
+
+    CPPUNIT_ASSERT_EQUAL( 2, m_win->GetKeyDownCount() );
+    ASSERT_KEY_EVENT_IS( m_win->GetKeyDownEvent(0),
+                         ModKeyDown(WXK_CONTROL) );
+    ASSERT_KEY_EVENT_IS( m_win->GetKeyDownEvent(1),
+                         KeyDesc('Z', wxMOD_CONTROL) );
+
+    CPPUNIT_ASSERT_EQUAL( 1, m_win->GetCharCount() );
+    ASSERT_KEY_EVENT_IS( m_win->GetCharEvent(),
+                         KeyDesc('\x1a', wxMOD_CONTROL) );
+
+    CPPUNIT_ASSERT_EQUAL( 2, m_win->GetKeyUpCount() );
+    ASSERT_KEY_EVENT_IS( m_win->GetKeyUpEvent(0),
+                         KeyDesc('Z', wxMOD_CONTROL) );
+    ASSERT_KEY_EVENT_IS( m_win->GetKeyUpEvent(1),
+                         ModKeyUp(WXK_CONTROL) );
+}
+
+void KeyboardEventTestCase::CtrlSpecial()
+{
+    wxUIActionSimulator sim;
+    sim.Char(WXK_PAGEUP, wxMOD_CONTROL);
+    wxYield();
+
+    CPPUNIT_ASSERT_EQUAL( 2, m_win->GetKeyDownCount() );
+    ASSERT_KEY_EVENT_IS( m_win->GetKeyDownEvent(0),
+                         ModKeyDown(WXK_CONTROL) );
+    ASSERT_KEY_EVENT_IS( m_win->GetKeyDownEvent(1),
+                         KeyDesc(WXK_PAGEUP, wxMOD_CONTROL) );
+
+    CPPUNIT_ASSERT_EQUAL( 1, m_win->GetCharCount() );
+    ASSERT_KEY_EVENT_IS( m_win->GetCharEvent(),
+                         KeyDesc(WXK_PAGEUP, wxMOD_CONTROL) );
+
+    CPPUNIT_ASSERT_EQUAL( 2, m_win->GetKeyUpCount() );
+    ASSERT_KEY_EVENT_IS( m_win->GetKeyUpEvent(0),
+                         KeyDesc(WXK_PAGEUP, wxMOD_CONTROL) );
+    ASSERT_KEY_EVENT_IS( m_win->GetKeyUpEvent(1),
+                         ModKeyUp(WXK_CONTROL) );
+}
+
+void KeyboardEventTestCase::ShiftLetter()
+{
+    wxUIActionSimulator sim;
+    sim.Char('Q', wxMOD_SHIFT);
+    wxYield();
+
+    CPPUNIT_ASSERT_EQUAL( 2, m_win->GetKeyDownCount() );
+    ASSERT_KEY_EVENT_IS( m_win->GetKeyDownEvent(0),
+                         ModKeyDown(WXK_SHIFT) );
+    ASSERT_KEY_EVENT_IS( m_win->GetKeyDownEvent(1),
+                         KeyDesc('Q', wxMOD_SHIFT) );
+
+    CPPUNIT_ASSERT_EQUAL( 1, m_win->GetCharCount() );
+    ASSERT_KEY_EVENT_IS( m_win->GetCharEvent(),
+                         KeyDesc('Q', wxMOD_SHIFT) );
+
+    CPPUNIT_ASSERT_EQUAL( 2, m_win->GetKeyUpCount() );
+    ASSERT_KEY_EVENT_IS( m_win->GetKeyUpEvent(0),
+                         KeyDesc('Q', wxMOD_SHIFT) );
+    ASSERT_KEY_EVENT_IS( m_win->GetKeyUpEvent(1),
+                         ModKeyUp(WXK_SHIFT) );
+}
+
+void KeyboardEventTestCase::ShiftSpecial()
+{
+    wxUIActionSimulator sim;
+    sim.Char(WXK_TAB, wxMOD_SHIFT);
+    wxYield();
+
+    CPPUNIT_ASSERT_EQUAL( 2, m_win->GetKeyDownCount() );
+    ASSERT_KEY_EVENT_IS( m_win->GetKeyDownEvent(0),
+                         ModKeyDown(WXK_SHIFT) );
+    ASSERT_KEY_EVENT_IS( m_win->GetKeyDownEvent(1),
+                         KeyDesc(WXK_TAB, wxMOD_SHIFT) );
+
+    CPPUNIT_ASSERT_EQUAL( 1, m_win->GetCharCount() );
+    ASSERT_KEY_EVENT_IS( m_win->GetCharEvent(),
+                         KeyDesc(WXK_TAB, wxMOD_SHIFT) );
+
+    CPPUNIT_ASSERT_EQUAL( 2, m_win->GetKeyUpCount() );
+    ASSERT_KEY_EVENT_IS( m_win->GetKeyUpEvent(0),
+                         KeyDesc(WXK_TAB, wxMOD_SHIFT) );
+    ASSERT_KEY_EVENT_IS( m_win->GetKeyUpEvent(1),
+                         ModKeyUp(WXK_SHIFT) );
+}
+
+#endif // wxUSE_UIACTIONSIMULATOR
index a53967ef050436192fcde194867964810a59f8c9..f3637caa94b21e57fb26326cb4aabb8c485246ab 100644 (file)
@@ -180,6 +180,7 @@ TEST_GUI_OBJECTS =  \
        $(OBJS)\test_gui_windowtest.obj \
        $(OBJS)\test_gui_clone.obj \\r
        $(OBJS)\test_gui_propagation.obj \\r
        $(OBJS)\test_gui_windowtest.obj \
        $(OBJS)\test_gui_clone.obj \\r
        $(OBJS)\test_gui_propagation.obj \\r
+       $(OBJS)\test_gui_keyboard.obj \
        $(OBJS)\test_gui_fonttest.obj \\r
        $(OBJS)\test_gui_image.obj \\r
        $(OBJS)\test_gui_rawbmp.obj \\r
        $(OBJS)\test_gui_fonttest.obj \\r
        $(OBJS)\test_gui_image.obj \\r
        $(OBJS)\test_gui_rawbmp.obj \\r
@@ -849,6 +850,9 @@ $(OBJS)\test_gui_clone.obj: .\events\clone.cpp
 $(OBJS)\test_gui_propagation.obj: .\events\propagation.cpp\r
        $(CXX) -q -c -P -o$@ $(TEST_GUI_CXXFLAGS) .\events\propagation.cpp\r
 \r
 $(OBJS)\test_gui_propagation.obj: .\events\propagation.cpp\r
        $(CXX) -q -c -P -o$@ $(TEST_GUI_CXXFLAGS) .\events\propagation.cpp\r
 \r
+$(OBJS)\test_gui_keyboard.obj: .\events\keyboard.cpp
+       $(CXX) -q -c -P -o$@ $(TEST_GUI_CXXFLAGS) .\events\keyboard.cpp
+
 $(OBJS)\test_gui_fonttest.obj: .\font\fonttest.cpp\r
        $(CXX) -q -c -P -o$@ $(TEST_GUI_CXXFLAGS) .\font\fonttest.cpp\r
 \r
 $(OBJS)\test_gui_fonttest.obj: .\font\fonttest.cpp\r
        $(CXX) -q -c -P -o$@ $(TEST_GUI_CXXFLAGS) .\font\fonttest.cpp\r
 \r
index bf03f298bba02a0464b6e23b0bed9fa4b2f305d3..d164e97a38b0af16109ce6773373a8956e80da8a 100644 (file)
@@ -173,6 +173,7 @@ TEST_GUI_OBJECTS =  \
        $(OBJS)\test_gui_windowtest.o \
        $(OBJS)\test_gui_clone.o \\r
        $(OBJS)\test_gui_propagation.o \\r
        $(OBJS)\test_gui_windowtest.o \
        $(OBJS)\test_gui_clone.o \\r
        $(OBJS)\test_gui_propagation.o \\r
+       $(OBJS)\test_gui_keyboard.o \
        $(OBJS)\test_gui_fonttest.o \\r
        $(OBJS)\test_gui_image.o \\r
        $(OBJS)\test_gui_rawbmp.o \\r
        $(OBJS)\test_gui_fonttest.o \\r
        $(OBJS)\test_gui_image.o \\r
        $(OBJS)\test_gui_rawbmp.o \\r
@@ -830,6 +831,9 @@ $(OBJS)\test_gui_clone.o: ./events/clone.cpp
 $(OBJS)\test_gui_propagation.o: ./events/propagation.cpp\r
        $(CXX) -c -o $@ $(TEST_GUI_CXXFLAGS) $(CPPDEPS) $<\r
 \r
 $(OBJS)\test_gui_propagation.o: ./events/propagation.cpp\r
        $(CXX) -c -o $@ $(TEST_GUI_CXXFLAGS) $(CPPDEPS) $<\r
 \r
+$(OBJS)\test_gui_keyboard.o: ./events/keyboard.cpp
+       $(CXX) -c -o $@ $(TEST_GUI_CXXFLAGS) $(CPPDEPS) $<
+
 $(OBJS)\test_gui_fonttest.o: ./font/fonttest.cpp\r
        $(CXX) -c -o $@ $(TEST_GUI_CXXFLAGS) $(CPPDEPS) $<\r
 \r
 $(OBJS)\test_gui_fonttest.o: ./font/fonttest.cpp\r
        $(CXX) -c -o $@ $(TEST_GUI_CXXFLAGS) $(CPPDEPS) $<\r
 \r
index e209e1b064f1468dc63df2b5ca86e269c4b2f3a5..6160f751b0e11ed6fc96c09daaf282d17e3c6bc3 100644 (file)
@@ -175,6 +175,7 @@ TEST_GUI_OBJECTS =  \
        $(OBJS)\test_gui_windowtest.obj \
        $(OBJS)\test_gui_clone.obj \\r
        $(OBJS)\test_gui_propagation.obj \\r
        $(OBJS)\test_gui_windowtest.obj \
        $(OBJS)\test_gui_clone.obj \\r
        $(OBJS)\test_gui_propagation.obj \\r
+       $(OBJS)\test_gui_keyboard.obj \
        $(OBJS)\test_gui_fonttest.obj \\r
        $(OBJS)\test_gui_image.obj \\r
        $(OBJS)\test_gui_rawbmp.obj \\r
        $(OBJS)\test_gui_fonttest.obj \\r
        $(OBJS)\test_gui_image.obj \\r
        $(OBJS)\test_gui_rawbmp.obj \\r
@@ -975,6 +976,9 @@ $(OBJS)\test_gui_clone.obj: .\events\clone.cpp
 $(OBJS)\test_gui_propagation.obj: .\events\propagation.cpp\r
        $(CXX) /c /nologo /TP /Fo$@ $(TEST_GUI_CXXFLAGS) .\events\propagation.cpp\r
 \r
 $(OBJS)\test_gui_propagation.obj: .\events\propagation.cpp\r
        $(CXX) /c /nologo /TP /Fo$@ $(TEST_GUI_CXXFLAGS) .\events\propagation.cpp\r
 \r
+$(OBJS)\test_gui_keyboard.obj: .\events\keyboard.cpp
+       $(CXX) /c /nologo /TP /Fo$@ $(TEST_GUI_CXXFLAGS) .\events\keyboard.cpp
+
 $(OBJS)\test_gui_fonttest.obj: .\font\fonttest.cpp\r
        $(CXX) /c /nologo /TP /Fo$@ $(TEST_GUI_CXXFLAGS) .\font\fonttest.cpp\r
 \r
 $(OBJS)\test_gui_fonttest.obj: .\font\fonttest.cpp\r
        $(CXX) /c /nologo /TP /Fo$@ $(TEST_GUI_CXXFLAGS) .\font\fonttest.cpp\r
 \r
index 2aeaea969cb2da1e026bdbdca4b402a9da533347..07d754ea86242d398ffb4aaa1eb5cc8370d7b533 100644 (file)
@@ -415,6 +415,7 @@ TEST_GUI_OBJECTS =  &
        $(OBJS)\test_gui_windowtest.obj &
        $(OBJS)\test_gui_clone.obj &\r
        $(OBJS)\test_gui_propagation.obj &\r
        $(OBJS)\test_gui_windowtest.obj &
        $(OBJS)\test_gui_clone.obj &\r
        $(OBJS)\test_gui_propagation.obj &\r
+       $(OBJS)\test_gui_keyboard.obj &
        $(OBJS)\test_gui_fonttest.obj &\r
        $(OBJS)\test_gui_image.obj &\r
        $(OBJS)\test_gui_rawbmp.obj &\r
        $(OBJS)\test_gui_fonttest.obj &\r
        $(OBJS)\test_gui_image.obj &\r
        $(OBJS)\test_gui_rawbmp.obj &\r
@@ -888,6 +889,9 @@ $(OBJS)\test_gui_clone.obj :  .AUTODEPEND .\events\clone.cpp
 $(OBJS)\test_gui_propagation.obj :  .AUTODEPEND .\events\propagation.cpp\r
        $(CXX) -bt=nt -zq -fo=$^@ $(TEST_GUI_CXXFLAGS) $<\r
 \r
 $(OBJS)\test_gui_propagation.obj :  .AUTODEPEND .\events\propagation.cpp\r
        $(CXX) -bt=nt -zq -fo=$^@ $(TEST_GUI_CXXFLAGS) $<\r
 \r
+$(OBJS)\test_gui_keyboard.obj :  .AUTODEPEND .\events\keyboard.cpp
+       $(CXX) -bt=nt -zq -fo=$^@ $(TEST_GUI_CXXFLAGS) $<
+
 $(OBJS)\test_gui_fonttest.obj :  .AUTODEPEND .\font\fonttest.cpp\r
        $(CXX) -bt=nt -zq -fo=$^@ $(TEST_GUI_CXXFLAGS) $<\r
 \r
 $(OBJS)\test_gui_fonttest.obj :  .AUTODEPEND .\font\fonttest.cpp\r
        $(CXX) -bt=nt -zq -fo=$^@ $(TEST_GUI_CXXFLAGS) $<\r
 \r
index 555fba32e379979707bb96d4d381393948903b23..48f26f372a41d2dcc45cbd4579799c3a0d927d02 100644 (file)
             controls/windowtest.cpp
             events/clone.cpp
             events/propagation.cpp
             controls/windowtest.cpp
             events/clone.cpp
             events/propagation.cpp
+            events/keyboard.cpp
             font/fonttest.cpp
             image/image.cpp
             image/rawbmp.cpp
             font/fonttest.cpp
             image/image.cpp
             image/rawbmp.cpp
index dfa18f4493580664c94e8e4e89a8ada1ca4921a0..c7b1e713900ca60b93d4c4abd5b025f74a037f21 100644 (file)
@@ -353,6 +353,10 @@ SOURCE=.\controls\itemcontainertest.cpp
 # End Source File
 # Begin Source File
 
 # End Source File
 # Begin Source File
 
+SOURCE=.\events\keyboard.cpp
+# End Source File
+# Begin Source File
+
 SOURCE=.\controls\label.cpp\r
 # End Source File\r
 # Begin Source File\r
 SOURCE=.\controls\label.cpp\r
 # End Source File\r
 # Begin Source File\r
index 82e33c436c9481a2db8274581d594198529d1fbc..79d8f3292c95c3bd43afd8511ff5364e66fe9fd1 100644 (file)
                        <File\r
                                RelativePath=".\controls\itemcontainertest.cpp">
                        </File>
                        <File\r
                                RelativePath=".\controls\itemcontainertest.cpp">
                        </File>
+                       <File
+                               RelativePath=".\events\keyboard.cpp">
+                       </File>
                        <File
                                RelativePath=".\controls\label.cpp">\r
                        </File>\r
                        <File
                                RelativePath=".\controls\label.cpp">\r
                        </File>\r
index fc6dc4c43606ade8ed0266b41b5503dd2e5547b0..b372d2390cb2688520fba53eecadb1b0b2634a1b 100644 (file)
                                RelativePath=".\controls\itemcontainertest.cpp"
                                >
                        </File>
                                RelativePath=".\controls\itemcontainertest.cpp"
                                >
                        </File>
+                       <File
+                               RelativePath=".\events\keyboard.cpp"
+                               >
+                       </File>
                        <File
                                RelativePath=".\controls\label.cpp"\r
                                >\r
                        <File
                                RelativePath=".\controls\label.cpp"\r
                                >\r
index ddc8f51e229ca041445f9e7b6d6660a55fe99060..7cdfdd4ed50c299ce8f7ba181cf08a334c604f53 100644 (file)
                                RelativePath=".\controls\itemcontainertest.cpp"
                                >
                        </File>
                                RelativePath=".\controls\itemcontainertest.cpp"
                                >
                        </File>
+                       <File
+                               RelativePath=".\events\keyboard.cpp"
+                               >
+                       </File>
                        <File
                                RelativePath=".\controls\label.cpp"\r
                                >\r
                        <File
                                RelativePath=".\controls\label.cpp"\r
                                >\r