File: input-method-v1.hpp

package info (click to toggle)
wayfire 0.10.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 3,764 kB
  • sloc: cpp: 52,464; xml: 2,987; ansic: 699; makefile: 161
file content (19 lines) | stat: -rw-r--r-- 309 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#pragma once
#include <wayfire/signal-provider.hpp>

namespace wf
{
/**
 * on: core
 * Emitted when a text input (v1 or v3) is activated.
 */
struct input_method_v1_activate_signal
{};

/**
 * on: core
 * Emitted when a text input (v1 or v3) is deactivated.
 */
struct input_method_v1_deactivate_signal
{};
}