Gtk-WARNING gtktreestore.c:1047: Invalid column number 1 added to iter
[LibreOffice.git] / dbaccess / source / ui / inc / QEnumTypes.hxx
blobb889870c9b91eeff80b5904f6a7f9ca8651220a0
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
19 #pragma once
21 namespace dbaui
23 enum EOrderDir
25 ORDER_NONE=0,
26 ORDER_ASC,
27 ORDER_DESC
30 enum EFunctionType
32 FKT_NONE =0x00000000,
33 FKT_OTHER =0x00000001,
34 FKT_AGGREGATE =0x00000002,
35 FKT_CONDITION =0x00000004,
36 FKT_NUMERIC =0x00000008
37 // if this function type is set, it is either EXISTS or UNIQUE,
38 // the FieldName contains the complete statement
41 enum EConnectionSide
43 JTCS_FROM=0,
44 JTCS_TO
47 enum ETableFieldType
49 TAB_NORMAL_FIELD=0,
50 TAB_PRIMARY_FIELD
53 enum EJoinType
55 FULL_JOIN=0,
56 LEFT_JOIN,
57 RIGHT_JOIN,
58 CROSS_JOIN,
59 INNER_JOIN
62 enum EControlType
64 tpDefault = 0,
65 tpRequired,
66 tpTextLen,
67 tpNumType,
68 tpLength,
69 tpScale,
70 tpFormat,
71 tpAutoIncrement,
72 tpBoolDefault,
73 tpColumnName,
74 tpType,
75 tpAutoIncrementValue
79 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */