Flutter Linux Embedder
fl_view_private.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_VIEW_PRIVATE_H_
6 #define FLUTTER_SHELL_PLATFORM_LINUX_FL_VIEW_PRIVATE_H_
7 
9 
10 /**
11  * fl_view_redraw:
12  * @view: an #FlView.
13  *
14  * Indicate the view needs to redraw.
15  */
16 void fl_view_redraw(FlView* view);
17 
18 /**
19  * fl_view_get_keyboard_state:
20  * @view: an #FlView.
21  *
22  * Returns the keyboard pressed state. The hash table contains one entry per
23  * pressed keys, mapping from the logical key to the physical key.*
24  */
25 GHashTable* fl_view_get_keyboard_state(FlView* view);
26 
27 #endif // FLUTTER_SHELL_PLATFORM_LINUX_FL_VIEW_PRIVATE_H_
fl_view_redraw
void fl_view_redraw(FlView *view)
Definition: fl_view.cc:847
fl_view.h
fl_view_get_keyboard_state
GHashTable * fl_view_get_keyboard_state(FlView *view)
Definition: fl_view.cc:852