#include <test_keyboard.h>
Definition at line 115 of file test_keyboard.h.
◆ DispatchFront()
| LRESULT flutter::testing::MockMessageQueue::DispatchFront |
( |
| ) |
|
|
protected |
◆ PushBack()
| void flutter::testing::MockMessageQueue::PushBack |
( |
const Win32Message * |
message | ) |
|
|
protected |
◆ Win32PeekMessage()
| BOOL flutter::testing::MockMessageQueue::Win32PeekMessage |
( |
LPMSG |
lpMsg, |
|
|
UINT |
wMsgFilterMin, |
|
|
UINT |
wMsgFilterMax, |
|
|
UINT |
wRemoveMsg |
|
) |
| |
|
protected |
Definition at line 227 of file test_keyboard.cc.
230 {
232 ++iter) {
233 if (iter->message >= wMsgFilterMin && iter->message <= wMsgFilterMax) {
235 .message = iter->message,
236 .wParam = iter->wParam,
237 .lParam = iter->lParam,
238 };
239 if ((wRemoveMsg & PM_REMOVE) == PM_REMOVE) {
241 }
243 }
244 }
245 return FALSE;
246}
References _pending_messages, and TRUE.
◆ Win32SendMessage()
| virtual LRESULT flutter::testing::MockMessageQueue::Win32SendMessage |
( |
UINT const |
message, |
|
|
WPARAM const |
wparam, |
|
|
LPARAM const |
lparam |
|
) |
| |
|
protectedpure virtual |
◆ _pending_messages
| std::list<Win32Message> flutter::testing::MockMessageQueue::_pending_messages |
|
protected |
◆ _sent_messages
| std::list<Win32Message> flutter::testing::MockMessageQueue::_sent_messages |
|
protected |
The documentation for this class was generated from the following files: