~gerboland/miral/release-patched

« back to all changes in this revision

Viewing changes to include/miral/keymap.h

  • Committer: Bileto Bot
  • Date: 2016-11-04 16:45:25 UTC
  • mfrom: (332.2.2 miral-release)
  • Revision ID: ci-train-bot@canonical.com-20161104164525-e7x46ofzz4qhxjm2
* New upstream release 0.4.0 (https://launchpad.net/miral/+milestone/0.4)
  - ABI summary:
    . miral ABI unchanged at 1
  - Enhancements:
    . Add miral::WindowManagerTools::force_close(window) to forcefully close
      a window (i.e. without a close request to the client)
    . Add functions to manage Applications
    . Add miral::CommandLineOption - enables the setting and processing of
      configuration options. These may be supplied on the commandline, as
      MIR_SERVER_XXX environment variables or in a config file.
    . Add +options to the keymap configuration
    . [miral-shell] Add window name to titlebars

Show diffs side-by-side

added added

removed removed

Lines of Context:
35
35
    Keymap();
36
36
 
37
37
    /// Specify a keymap.
38
 
    /// Format is <language>[+<variant>]
 
38
    /// Format is <language>[+<variant>[+<options>]]
 
39
    /// Options is a comma separated list.
39
40
    /// e.g. "uk" or "us+dvorak"
40
41
    explicit Keymap(std::string const& keymap);
41
42
    ~Keymap();