1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75
|
/*
* Copyright © Canonical Ltd.
*
* This program is free software: you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License version 2 or 3,
* as published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef MIR_TOOLKIT_WINDOW_OUTPUT_EVENT_H_
#define MIR_TOOLKIT_WINDOW_OUTPUT_EVENT_H_
#include <mir_toolkit/events/event.h>
#ifdef __cplusplus
extern "C" {
#endif
/**
* Retrieve the DPI of the new output configuration of a MirWindowOutputEvent
*
* \param [in] ev The event
* \return The new DPI value for the window is primarily on.
*/
int mir_window_output_event_get_dpi(MirWindowOutputEvent const* ev);
/**
* Retrieve the form factor of the new output configuration of a MirWindowOutputEvent
*
* \param [in] ev The event
* \return The new form factor of the output the window is primarily on.
*/
MirFormFactor mir_window_output_event_get_form_factor(MirWindowOutputEvent const* ev);
/**
* Retrieve the suggested scaling factor of the new output configuration of a
* MirWindowOutputEvent.
*
* \param [in] ev The event
* \return The new scaling factor of the output the window is primarily on.
*/
float mir_window_output_event_get_scale(MirWindowOutputEvent const* ev);
/**
* Retrieve the maximum refresh rate of the output(s) associated with a
* MirWindowOutputEvent. For variable refresh rate displays this represents
* the maximum refresh rate of the display to aim for, rather than a measurement
* of recent performance.
*
* \param [in] ev The event
* \return The refresh rate in Hz
*/
double mir_window_output_event_get_refresh_rate(MirWindowOutputEvent const* ev);
/**
* Retrieve the ID of the output this window is on from a MirWindowOutputEvent
*
* \param [in] ev The event
* \return The ID of the output the window is currently considered to be on.
* (From MirDisplayOutput::output_id)
*/
uint32_t mir_window_output_event_get_output_id(MirWindowOutputEvent const *ev);
#ifdef __cplusplus
}
#endif
#endif //MIR_TOOLKIT_WINDOW_OUTPUT_EVENT_H_
|