Windows Display/Inputs driver

Overview

The Windows display/input driver offers support for simulating the LVGL display and keyboard/mouse inputs in a Windows Win32 window.

The main purpose for this driver is for testing/debugging the LVGL application in a Windows simulation window via simulator mode, or developing a standard Windows desktop application with LVGL via application mode.

These are the similarities between simulator mode and application mode.

  • Support LVGL pointer, keypad and encoder devices integration.

  • Support Windows touch input.

  • Support Windows input method integration input.

  • Support Per-monitor DPI Aware (both V1 and V2).

  • Provide HWND-based interoperability for other Windows UI infrastructures.

These are the differences between simulator mode and application mode.

Simulator Mode

  • Designed for LVGL device-simulation scenario — simulates LVGL rendering to a hardware display panel.

  • Keeps LVGL display resolution constant in order to best simulate UI layout which will will be seen in production devices.

  • When Windows DPI scaling setting is changed, Windows backend will stretch display content.

Application Mode

  • Designed for Windows desktop application-development scenario.

  • Has Window resizing support and LVGL display resolution is changed dynamically.

  • When Windows DPI scaling setting is changed, LVGL display DPI value is also changed.

  • The resolution you set for lv_windows_create_display is the window size instead of window client size for following the convention of other Windows desktop UI infrastructures.

  • The applications based on this mode should adapt the LVGL display resolution changing for supporting window resizing properly.

Prerequisites

The minimum Windows OS requirement for this driver is Windows Vista RTM.

If you use Windows API shim libraries like YY-Thunks, the tested minimum Windows OS requirement for this driver is Windows XP RTM.

According to the Windows GDI API this driver used, it is possible the minimum Windows OS requirement limitation for this driver is Windows 2000 RTM.

Configure Windows Driver

Enable the Windows driver support in lv_conf.h, by cmake compiler define or by KConfig

#define LV_USE_WINDOWS  1

Usage

#include <Windows.h>
#include "lvgl/lvgl.h"
#include "lvgl/examples/lv_examples.h"
#include "lvgl/demos/lv_demos.h"

int main()
{
    lv_init();

    int32_t zoom_level = 100;
    bool allow_dpi_override = false;
    bool simulator_mode = false;
    lv_display_t* display = lv_windows_create_display(
        L"LVGL Display Window",
        800,
        480,
        zoom_level,
        allow_dpi_override,
        simulator_mode);
    if (!display)
    {
        return -1;
    }

    lv_lock();

    lv_indev_t* pointer_device = lv_windows_acquire_pointer_indev(display);
    if (!pointer_device)
    {
        return -1;
    }

    lv_indev_t* keypad_device = lv_windows_acquire_keypad_indev(display);
    if (!keypad_device)
    {
        return -1;
    }

    lv_indev_t* encoder_device = lv_windows_acquire_encoder_indev(display);
    if (!encoder_device)
    {
        return -1;
    }

    lv_demo_widgets();

    lv_unlock();

    while (1)
    {
        uint32_t time_till_next = lv_timer_handler();
        lv_delay_ms(time_till_next);
    }

    return 0;
}

lv_windows_display.h

lv_windows_context.h

lv_windows_input.h