]> git.lyx.org Git - lyx.git/blobdiff - src/layout.h
clean code to export between different flavours, output different code for sgml to...
[lyx.git] / src / layout.h
index 83a6228936b1df6cb3c3c34b8939b6835a715cdf..a83965daf2cde872f7434dbca5b3bb7d2d0fe7f8 100644 (file)
@@ -1,23 +1,18 @@
 // -*- C++ -*-
-/* This file is part of
- * ======================================================
+/**
+ * \file layout.h
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
  *
- *           LyX, The Document Processor
+ * \author Lars Gullik Bjønnes
+ * \author Jean-Marc Lasgouttes
  *
- *           Copyright 1995 Matthias Ettrich
- *           Copyright 1995-2001 The LyX Team.
- *
- * ====================================================== */
+ * Full author contact details are available in file CREDITS.
+ */
 
 #ifndef LAYOUT_H
 #define LAYOUT_H
 
-enum layout_default {
-       ///
-       LYX_LAYOUT_DEFAULT = 99
-};
-
-
 /// The different output types
 enum OutputType {
        ///
@@ -82,10 +77,21 @@ enum LYX_LATEX_TYPES {
        ///
        LATEX_ITEM_ENVIRONMENT,
        ///
+       LATEX_BIB_ENVIRONMENT,
+       ///
        LATEX_LIST_ENVIRONMENT
 };
 
 
+/// The different title types
+enum LYX_TITLE_LATEX_TYPES {
+       ///
+       TITLE_COMMAND_AFTER = 1,
+       ///
+       TITLE_ENVIRONMENT
+};
+
+
 /// The different label types
 enum LYX_LABEL_TYPES {
        ///
@@ -105,25 +111,11 @@ enum LYX_LABEL_TYPES {
        ///
        LABEL_SENSITIVE,
        ///
-       LABEL_COUNTER_CHAPTER,
-       ///
-       LABEL_COUNTER_SECTION,
-       ///
-       LABEL_COUNTER_SUBSECTION,
-       ///
-       LABEL_COUNTER_SUBSUBSECTION,
-       ///
-       LABEL_COUNTER_PARAGRAPH,
-       ///
-       LABEL_COUNTER_SUBPARAGRAPH,
-       ///
-       LABEL_COUNTER_ENUMI,
-       ///
-       LABEL_COUNTER_ENUMII,
+       LABEL_COUNTER,
        ///
-       LABEL_COUNTER_ENUMIII,
+       LABEL_ENUMERATE,
        ///
-       LABEL_COUNTER_ENUMIV
+       LABEL_ITEMIZE
 };