xtd 1.0.0
Loading...
Searching...
No Matches
imessage_filter.hpp
Go to the documentation of this file.
1
4#pragma once
5#include <xtd/interface>
6
8namespace xtd {
10 namespace forms {
24 public:
26
32 virtual auto pre_filter_message(const xtd::forms::message& m) -> bool = 0;
34 };
35 }
36}
Defines a message filter interface.
Definition imessage_filter.hpp:23
virtual auto pre_filter_message(const xtd::forms::message &m) -> bool=0
Filters out a message before it is dispatched.
#define interface_
This keyword is use to represent an interface.
Definition interface.hpp:58
@ m
The M key.
Definition keys.hpp:223
The xtd::forms namespace contains classes for creating Windows-based applications that take full adva...
Definition texts.hpp:219
The xtd namespace contains all fundamental classes to access Hardware, Os, System,...
Definition abstract_object.hpp:8
Implements a Windows message.
Definition message.hpp:33