]> git.lyx.org Git - features.git/commitdiff
make cygwin and Angus happy (remove insetlist.[Ch]).
authorAlfredo Braunstein <abraunst@lyx.org>
Fri, 27 Feb 2004 08:33:24 +0000 (08:33 +0000)
committerAlfredo Braunstein <abraunst@lyx.org>
Fri, 27 Feb 2004 08:33:24 +0000 (08:33 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@8461 a592a061-630c-0410-9148-cb99ea01b6c8

src/insets/ChangeLog
src/insets/Makefile.am
src/insets/insetlist.C [deleted file]
src/insets/insetlist.h [deleted file]

index 953a9575d6c0bb536b51b4f9918250ea5d98ae81..fd2cb96d5a3013b5882907b73afd08bc1a716238 100644 (file)
@@ -1,3 +1,8 @@
+2004-02-27  Alfredo Braunstein  <abraunst@lyx.org>
+
+       * insetlabel.[Ch]: remove them
+       * Makefile.am: adjust
+
 2004-02-21  Georg Baum  <Georg.Baum@post.rwth-aachen.de>
 
        * insetexternal.C, insetgraphics.C, insetinclude.C: use always a
index b4bcf0701119fa6d4f31eeb08bfd782bdabbc0b5..ef981aa67233e2b9a6c34ff09ff879b0ab7fba89 100644 (file)
@@ -5,8 +5,6 @@ noinst_LTLIBRARIES = libinsets.la
 INCLUDES = -I$(srcdir)/../ $(BOOST_INCLUDES)
 
 EXTRA_DIST = \
-       insetlist.C \
-       insetlist.h \
        insettheorem.C \
        insettheorem.h
 
diff --git a/src/insets/insetlist.C b/src/insets/insetlist.C
deleted file mode 100644 (file)
index 5be21a4..0000000
+++ /dev/null
@@ -1,76 +0,0 @@
-/**
- * \file insetlist.C
- * This file is part of LyX, the document processor.
- * Licence details can be found in the file COPYING.
- *
- * \author Lars Gullik Bjønnes
- *
- * Full author contact details are available in file CREDITS.
- */
-#include <config.h>
-
-#include "insetlist.h"
-#include "insets/insettext.h"
-
-#include "BufferView.h"
-#include "debug.h"
-#include "gettext.h"
-#include "lyxfont.h"
-#include "lyxtext.h"
-
-#include "support/std_ostream.h"
-
-using std::endl;
-using std::ostream;
-
-
-// This class is _far_ from finished. I hope that we can have a inset to
-// handle the different lists that we have. It should also be possible
-// to create new lists on the fly.
-// Currently LyX only supports: itemize, enumerate, description and
-// lyxlist. All support for these should be moved to this class and other
-// helper classes.
-// It is also possible that we will need a baseclass and subclasses for
-// different types of lists. (and should they be collapsable?)
-//
-// Lgb
-
-InsetList::InsetList()
-       : InsetCollapsable()
-{
-       setLabel(_("list"));
-       LyXFont font(LyXFont::ALL_SANE);
-       font.decSize();
-       font.decSize();
-       font.setColor(LColor::collapsable);
-       setLabelFont(font);
-#if 0
-       setAutoCollapse(false);
-#endif
-       setInsetName("List");
-}
-
-
-void InsetList::write(Buffer const * buf, ostream & os) const
-{
-       os << getInsetName() << "\n";
-       InsetCollapsable::write(buf, os);
-}
-
-
-string const InsetList::editMessage() const
-{
-       return _("Opened List Inset");
-}
-
-
-int InsetList::latex(Buffer const * buf, ostream & os,
-                    OutputParams const & runparams) const
-{
-       os << "\\footnote{%\n";
-
-       int i = inset.latex(buf, os, runparams);
-       os << "}%\n";
-
-       return i + 2;
-}
diff --git a/src/insets/insetlist.h b/src/insets/insetlist.h
deleted file mode 100644 (file)
index 6f7879a..0000000
+++ /dev/null
@@ -1,35 +0,0 @@
-// -*- C++ -*-
-/**
- * \file insetlist.h
- * This file is part of LyX, the document processor.
- * Licence details can be found in the file COPYING.
- *
- * \author Lars Gullik Bjønnes
- *
- * Full author contact details are available in file CREDITS.
- */
-
-#ifndef INSETLIST_H
-#define INSETLIST_H
-
-
-#include "insetcollapsable.h"
-
-/** The list inset
-
-*/
-class InsetList : public InsetCollapsable {
-public:
-       ///
-       InsetList();
-       ///
-       void write(Buffer const & buf, std::ostream & os) const;
-       ///
-       Inset::Code lyxCode() const { return Inset::FOOT_CODE; }
-       ///
-       int latex(Buffer const &, std::ostream &, OutputParams const &) const;
-       ///
-       string const editMessage() const;
-};
-
-#endif