summaryrefslogtreecommitdiffstats
path: root/bf_sw/source/core/swg/frmids.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'bf_sw/source/core/swg/frmids.hxx')
-rw-r--r--bf_sw/source/core/swg/frmids.hxx72
1 files changed, 72 insertions, 0 deletions
diff --git a/bf_sw/source/core/swg/frmids.hxx b/bf_sw/source/core/swg/frmids.hxx
new file mode 100644
index 000000000..d82698309
--- /dev/null
+++ b/bf_sw/source/core/swg/frmids.hxx
@@ -0,0 +1,72 @@
+/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
+/*
+ * This file is part of the LibreOffice project.
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ *
+ * This file incorporates work covered by the following license notice:
+ *
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements. See the NOTICE file distributed
+ * with this work for additional information regarding copyright
+ * ownership. The ASF licenses this file to you under the Apache
+ * License, Version 2.0 (the "License"); you may not use this file
+ * except in compliance with the License. You may obtain a copy of
+ * the License at http://www.apache.org/licenses/LICENSE-2.0 .
+ */
+
+#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: */