Improve the documentation.

This commit is contained in:
ArthurSonzogni
2021-07-10 14:23:46 +02:00
committed by Arthur Sonzogni
parent 5c4cd1add1
commit 9820832fea
23 changed files with 79 additions and 133 deletions

View File

@@ -8,8 +8,6 @@
namespace ftxui {
/// @brief A component executing a provided function for catching events.
/// @ingroup component.
class CatchEventBase : public ComponentBase {
public:
// Constructor.
@@ -31,6 +29,7 @@ class CatchEventBase : public ComponentBase {
/// @brief Return a component, using |on_event| to catch events. This function
/// must returns true when the event has been handled, false otherwise.
/// @param child The wrapped component.
/// @param on_event The function drawing the interface.
/// @ingroup component
///