]> git.saurik.com Git - wxWidgets.git/blame - tests/testableframe.h
Remove duplicate wxEVT_COMMAND_TEXT_ENTER generation from wxOSX/Cocoa.
[wxWidgets.git] / tests / testableframe.h
CommitLineData
232fdc63
VZ
1///////////////////////////////////////////////////////////////////////////////
2// Name: testableframe.h
3// Purpose: An improved wxFrame for unit-testing
4// Author: Steven Lamerton
4ceca854 5// RCS-ID: $Id$
232fdc63
VZ
6// Copyright: (c) 2010 Steven Lamerton
7// Licence: wxWidgets licence
8///////////////////////////////////////////////////////////////////////////////
9
10#include "wx/frame.h"
11#include "wx/hashmap.h"
12#include "wx/event.h"
13
14class wxTestableFrame : public wxFrame
15{
16public:
17 wxTestableFrame();
18
19 void OnEvent(wxEvent& evt);
20
21 //wxEVT_ANY get the count for all events or a type can be specified
22 int GetEventCount(wxEventType type = wxEVT_ANY);
23
4ceca854
SL
24 //Used to clear an event count, after disconnecting a counter for example
25 void ClearEventCount(wxEventType type);
26
232fdc63
VZ
27private:
28 wxLongToLongHashMap m_count;
29};
30
31class EventCounter
32{
33public:
34 EventCounter(wxWindow* win, wxEventType type);
35 ~EventCounter();
36
37private:
38 wxEventType m_type;
39 wxTestableFrame* m_frame;
40 wxWindow* m_win;
41};