Flutter Engine
The Flutter Engine
Loading...
Searching...
No Matches
fl_mouse_cursor_plugin.h
Go to the documentation of this file.
1// Copyright 2013 The Flutter Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#ifndef FLUTTER_SHELL_PLATFORM_LINUX_FL_MOUSE_CURSOR_PLUGIN_H_
6#define FLUTTER_SHELL_PLATFORM_LINUX_FL_MOUSE_CURSOR_PLUGIN_H_
7
8#include <gdk/gdk.h>
9
10#include "flutter/shell/platform/linux/public/flutter_linux/fl_binary_messenger.h"
11#include "flutter/shell/platform/linux/public/flutter_linux/fl_view.h"
12
13G_BEGIN_DECLS
14
15G_DECLARE_FINAL_TYPE(FlMouseCursorPlugin,
16 fl_mouse_cursor_plugin,
17 FL,
18 MOUSE_CURSOR_PLUGIN,
19 GObject);
20
21/**
22 * FlMouseCursorPlugin:
23 *
24 * #FlMouseCursorPlugin is a mouse_cursor channel that implements the shell side
25 * of SystemChannels.mouseCursor from the Flutter services library.
26 */
27
28/**
29 * fl_mouse_cursor_plugin_new:
30 * @messenger: an #FlBinaryMessenger.
31 * @view: an #FlView to control.
32 *
33 * Creates a new plugin that implements SystemChannels.mouseCursor from the
34 * Flutter services library.
35 *
36 * Returns: a new #FlMouseCursorPlugin.
37 */
38FlMouseCursorPlugin* fl_mouse_cursor_plugin_new(FlBinaryMessenger* messenger,
39 FlView* view);
40
41G_END_DECLS
42
43#endif // FLUTTER_SHELL_PLATFORM_LINUX_FL_MOUSE_CURSOR_PLUGIN_H_
G_BEGIN_DECLS G_DECLARE_FINAL_TYPE(FlMouseCursorPlugin, fl_mouse_cursor_plugin, FL, MOUSE_CURSOR_PLUGIN, GObject)
FlMouseCursorPlugin * fl_mouse_cursor_plugin_new(FlBinaryMessenger *messenger, FlView *view)