~thomas-moenicke/phablet-extras/maliit-plugins_fix_focus_out

« back to all changes in this revision

Viewing changes to maliit-keyboard/lib/logic/keyareaconverter.h

  • Committer: Tarmac
  • Author(s): Thomas Moenicke
  • Date: 2013-03-26 13:49:55 UTC
  • mfrom: (2107.1.5 maliit-plugins-0.94.0)
  • Revision ID: tarmac-20130326134955-qhv19rwum8b81f7u
upgraded to maliit 0.94.0
updated maliit-keyboard, UI is using QML now
.

Approved by Bill Filler, PS Jenkins bot.

Show diffs side-by-side

added added

removed removed

Lines of Context:
32
32
#ifndef MALIIT_KEYBOARD_KEYAREACONVERTER_H
33
33
#define MALIIT_KEYBOARD_KEYAREACONVERTER_H
34
34
 
35
 
#include "logic/layout.h"
 
35
#include "logic/layouthelper.h"
36
36
#include <QPoint>
37
37
 
38
38
namespace MaliitKeyboard {
49
49
private:
50
50
    StyleAttributes * const m_attributes;
51
51
    KeyboardLoader * const m_loader;
52
 
    Layout::Orientation m_orientation;
 
52
    LayoutHelper::Orientation m_orientation;
53
53
 
54
54
public:
55
55
    explicit KeyAreaConverter(StyleAttributes *attributes,
56
56
                              KeyboardLoader *loader);
57
57
    virtual ~KeyAreaConverter();
58
58
 
59
 
    void setLayoutOrientation(Layout::Orientation orientation);
 
59
    void setLayoutOrientation(LayoutHelper::Orientation orientation);
60
60
 
61
61
    virtual KeyArea keyArea() const;
62
62
    virtual KeyArea nextKeyArea() const;