~tatokis/unity/gcc-72-errors

« back to all changes in this revision

Viewing changes to plugins/unityshell/src/KeyboardUtil.h

  • Committer: Jason Smith
  • Date: 2011-08-27 06:44:37 UTC
  • mfrom: (1402.3.4 unity.keyboard-util)
  • Revision ID: jason.smith@canonical.com-20110827064437-td3j9s526j5088cw
merge keyboard utils branch

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
// -*- Mode: C++; indent-tabs-mode: nil; tab-width: 2 -*-
 
2
/*
 
3
 * Copyright (C) 2011 Canonical Ltd
 
4
 *
 
5
 * This program is free software: you can redistribute it and/or modify
 
6
 * it under the terms of the GNU General Public License version 3 as
 
7
 * published by the Free Software Foundation.
 
8
 *
 
9
 * This program is distributed in the hope that it will be useful,
 
10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
12
 * GNU General Public License for more details.
 
13
 *
 
14
 * You should have received a copy of the GNU General Public License
 
15
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
16
 *
 
17
 * Authored by: Jason Smith <jason.smith@canonical.com>
 
18
 */
 
19
 
 
20
#ifndef KEYBOARDUTIL_H
 
21
#define KEYBOARDUTIL_H
 
22
 
 
23
#include <glib.h>
 
24
 
 
25
#include <X11/keysym.h>
 
26
#include <X11/XKBlib.h>
 
27
#include <X11/extensions/XKBgeom.h>
 
28
 
 
29
namespace unity
 
30
{
 
31
namespace ui
 
32
{
 
33
 
 
34
class KeyboardUtil
 
35
{
 
36
 
 
37
public:
 
38
 
 
39
  KeyboardUtil(Display *display);
 
40
  virtual ~KeyboardUtil();
 
41
 
 
42
  guint GetKeycodeAboveKeySymbol(KeySym key_symbol);
 
43
  
 
44
private:
 
45
  bool CompareOffsets (int current_x, int current_y, int best_x, int best_y);
 
46
  guint ConvertKeyToKeycode (XkbKeyPtr key);
 
47
  
 
48
  bool FindKeyInGeometry(XkbGeometryPtr geo, char *key_name, int& res_section, XkbBoundsRec& res_bounds);
 
49
  bool FindKeyInSectionAboveBounds (XkbGeometryPtr geo, int section, XkbBoundsRec const& target_bounds, guint &keycode);
 
50
 
 
51
  XkbBoundsRec GetAbsoluteKeyBounds (XkbKeyPtr key, XkbRowPtr row, XkbSectionPtr section, XkbGeometryPtr geo);
 
52
 
 
53
  XkbDescPtr keyboard_;
 
54
  Display *display_;
 
55
};
 
56
 
 
57
}
 
58
}
 
59
 
 
60
#endif // KEYBOARDUTIL_H
 
61