VR-Forces 4.7 Class Documentation
Home
Modules
Namespaces
Classes
Files
Examples
Behavior Models
File List
File Members
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Properties
Friends
Macros
Groups
Pages
appsrc
translationMerge
private
qtranslator_p.h
Go to the documentation of this file.
1
/****************************************************************************
2
**
3
** Copyright (C) 1992-2006 Trolltech ASA. All rights reserved.
4
**
5
** This file is part of the QtCore module of the Qt Toolkit.
6
**
7
** Licensees holding a valid Qt License Agreement may use this file in
8
** accordance with the rights, responsibilities and obligations
9
** contained therein. Please consult your licensing agreement or
10
** contact sales@trolltech.com if any conditions of this licensing
11
** agreement are not clear to you.
12
**
13
** Further information about Qt licensing is available at:
14
** http://www.trolltech.com/products/qt/licensing.html or by
15
** contacting info@trolltech.com.
16
**
17
** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
18
** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
19
**
20
****************************************************************************/
21
22
#ifndef QTRANSLATOR_P_H
23
#define QTRANSLATOR_P_H
24
25
//
26
// W A R N I N G
27
// -------------
28
//
29
// This file is not part of the Qt API. It exists for the convenience
30
// of qfontencodings_x11.cpp and qfont_x11.cpp. This header file may
31
// change from version to version without notice, or even be removed.
32
//
33
// We mean it.
34
//
35
36
enum
{
37
EQ
= 0x01,
38
LT
= 0x02,
39
LEQ
= 0x03,
40
BETWEEN
= 0x04,
41
42
NOT
= 0x08,
43
MOD_10
= 0x10,
44
MOD_100
= 0x20,
45
46
AND
= 0xFD,
47
OR
= 0xFE,
48
NEWRULE
= 0xFF,
49
50
OP_MASK
= 0x07,
51
52
NEQ
=
NOT
|
EQ
,
53
GT
=
NOT
|
LEQ
,
54
GEQ
=
NOT
|
LT
,
55
NOT_BETWEEN
=
NOT
|
BETWEEN
56
};
57
58
#endif
Document ID: Generated on Fri Apr 26 21:53:14 EDT 2019 from SVN revision 197883
Copyright © 2005-2019 VT MAK. All Rights Reserved (
www.mak.com
)