summaryrefslogtreecommitdiff
path: root/binfilter/bf_sw/source/core/swg/frmids.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'binfilter/bf_sw/source/core/swg/frmids.hxx')
-rw-r--r--binfilter/bf_sw/source/core/swg/frmids.hxx81
1 files changed, 81 insertions, 0 deletions
diff --git a/binfilter/bf_sw/source/core/swg/frmids.hxx b/binfilter/bf_sw/source/core/swg/frmids.hxx
new file mode 100644
index 000000000000..d2588f525cf9
--- /dev/null
+++ b/binfilter/bf_sw/source/core/swg/frmids.hxx
@@ -0,0 +1,81 @@
+/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
+/*************************************************************************
+ *
+ * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
+ *
+ * Copyright 2000, 2010 Oracle and/or its affiliates.
+ *
+ * OpenOffice.org - a multi-platform office productivity suite
+ *
+ * This file is part of OpenOffice.org.
+ *
+ * OpenOffice.org is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser General Public License version 3
+ * only, as published by the Free Software Foundation.
+ *
+ * OpenOffice.org is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Lesser General Public License version 3 for more details
+ * (a copy is included in the LICENSE file that accompanied this code).
+ *
+ * You should have received a copy of the GNU Lesser General Public License
+ * version 3 along with OpenOffice.org. If not, see
+ * <http://www.openoffice.org/license.html>
+ * for a copy of the LGPLv3 License.
+ *
+ ************************************************************************/
+
+#ifndef _FRMIDS_HXX
+#define _FRMIDS_HXX
+
+// Aktuelle Version:
+namespace binfilter {
+
+#define FRMVER_NEWFLY 0x0002 // Neue Ablage der absatzgebundenen Flys
+#define FRMVER_EXTINFO 0x0003 // Optionales Extended-Info-Byte
+#define FRMVER_NEWALIGN 0x0004 // Alignment wurde Layoutseitig geaendert
+ // es muss geeignet invalidiert werden.
+
+#define FRM_VERSION 0x0004
+
+// ID-Byte als 1. Byte:
+
+#define FRMID_ROOT 'R' // Root-Frame
+#define FRMID_PAGE 'P' // Seite
+#define FRMID_HEADER 'H' // Kopfzeilen
+#define FRMID_FOOTER 'F' // Fusszeilen
+#define FRMID_BODY 'B' // Arbeitsbereich
+#define FRMID_FTNCONT 'C' // Fussnoten-Container
+#define FRMID_FTN 'N' // Fussnote
+#define FRMID_TEXT 'X' // Text-Frame
+#define FRMID_GRAPHICS 'G' // Grafik-Frame
+#define FRMID_OLE 'O' // OLE-Frame (reserviert)
+#define FRMID_ATCNTNT 'A' // am Inhalt gebundener Rahmen
+#define FRMID_INCNTNT 'I' // im Inhalt gebundener Rahmen
+#define FRMID_FLYLAY 'L' // Seiten/spaltengebundener Rahmen
+#define FRMID_COLUMN 'M' // Spalten-Frame
+#define FRMID_TABLE 'T' // Tabellen-Frame
+#define FRMID_TABROW 'r' // Tabellen-Zeile
+#define FRMID_TABCELL 'c' // Tabellen-Zelle
+
+// Flag-Bits im 2. Byte:
+
+#define FRMF_PRINT 0x01 // Frame hat eigenen Print-Rahmen
+#define FRMF_HASFLY 0x02 // Frame hat FlyFrames
+#define FRMF_HASLOWER 0x04 // Frame hat Lower Frames
+#define FRMF_HASFOLLOW 0x08 // Frame *hat* Follow-Frames
+#define FRMF_ISFOLLOW 0x10 // Frame *ist* Follow-Frame
+#define FRMF_SECTID1 0x20 // Section-ID ist einstellig
+#define FRMF_NODEID1 0x40 // Node-ID ist einstellig
+#define FRMF_HASID 0x80 // Frame hat eigenen ID
+
+// Zusatz-Bit, vom Reader in nFrmFlags zu setzen
+
+#define FRMF_INVALID 0x8000 // Frames ungueltig setzen
+
+
+} //namespace binfilter
+#endif
+
+/* vim:set shiftwidth=4 softtabstop=4 expandtab: */