blob: be3d53e86f9130c2f18503b34cbf56a56e26be75 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
/***************************************************************************
* ktouchkeyconnetor.h *
* ------------------- *
* Copyright (C) 2004 by Andreas Nicolai *
* ghorwin@users.sourceforge.net *
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
***************************************************************************/
#ifndef KTOUCHKEYCONNECTOR_H
#define KTOUCHKEYCONNECTOR_H
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <tqdom.h>
#include <tqvaluevector.h>
#include "ktouchkey.h"
/// The KTouchKeyConnector class tqcontains the information about the character that has to
/// be pressed and the keys on the keyboard that should be highlighted.
/// It associates a character with a target key and optionally a finger and/or control key.
class KTouchKeyConnector {
public:
KTouchKeyConnector() {}
/// Constructor
KTouchKeyConnector(TQChar keyChar, unsigned int target_key, unsigned int finger_key,
unsigned int modifier_key)
: m_keyChar(keyChar), m_targetKeyIndex(target_key), m_fingerKeyIndex(finger_key),
m_modifierKeyIndex(modifier_key)
{}
/// Reads the key connector data from the DomElement
bool read(TQDomNode node);
/// Creates a new DomElement, writes the key connector data into it and appends it to the root object.
void write(TQDomDocument& doc, TQDomElement& root) const;
TQChar m_keyChar; ///< This is the character that has to be pressed to access this key.
int m_targetKeyIndex; ///< Index of the target key (-1 if none).
int m_fingerKeyIndex; ///< Index of the finger key (-1 if none).
int m_modifierKeyIndex; ///< Index of the modifier key (-1 if none).
};
#endif // KTOUCHKEYCONNECTOR_H
|