terminal/src/types/WindowBufferSizeEvent.cpp
Dustin Howett d4d59fa339 Initial release of the Windows Terminal source code
This commit introduces all of the Windows Terminal and Console Host source,
under the MIT license.
2019-05-02 15:29:04 -07:00

28 lines
639 B
C++

// Copyright (c) Microsoft Corporation.
// Licensed under the MIT license.
#include "precomp.h"
#include "inc/IInputEvent.hpp"
WindowBufferSizeEvent::~WindowBufferSizeEvent()
{
}
INPUT_RECORD WindowBufferSizeEvent::ToInputRecord() const noexcept
{
INPUT_RECORD record{ 0 };
record.EventType = WINDOW_BUFFER_SIZE_EVENT;
record.Event.WindowBufferSizeEvent.dwSize = _size;
return record;
}
InputEventType WindowBufferSizeEvent::EventType() const noexcept
{
return InputEventType::WindowBufferSizeEvent;
}
void WindowBufferSizeEvent::SetSize(const COORD size) noexcept
{
_size = size;
}