]> git.lyx.org Git - lyx.git/commitdiff
lfun_core.diff, make insetgraphics inline
authorJean-Marc Lasgouttes <lasgouttes@lyx.org>
Wed, 13 Mar 2002 13:24:51 +0000 (13:24 +0000)
committerJean-Marc Lasgouttes <lasgouttes@lyx.org>
Wed, 13 Mar 2002 13:24:51 +0000 (13:24 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@3743 a592a061-630c-0410-9148-cb99ea01b6c8

ChangeLog
README
src/BufferView_pimpl.C
src/ChangeLog
src/LyXAction.C
src/box.C
src/commandtags.h
src/insets/ChangeLog
src/insets/insetgraphics.h
src/lyxfunc.C

index 23b2ac43cef1071b59a15ba6e6e882d8e525a17a..f0b34219f343a893939c67d88bed3ea5b1a566e5 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,7 @@
 2002-03-12  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
 
+       * README: add bulgarian
+
        * configure.in (ALL_LINGUAS): add bg
 
 2002-03-12  Lars Gullik Bjønnes  <larsbj@birdstep.com>
diff --git a/README b/README
index 7d3b882bff23e831f57f72238a08871d67b6306b..617c3d45ed546d10aa579249f716346554b62e0c 100644 (file)
--- a/README
+++ b/README
@@ -132,6 +132,7 @@ Does LyX have support for non-English speakers/writers/readers?
        bindings as well):
 
        Basque      (eu)
+       Bulgarian   (bg)
        Catalan     (ca)
        Czech       (cs)
        Danish      (da)
@@ -156,6 +157,7 @@ Does LyX have support for non-English speakers/writers/readers?
        Keymaps can ease typing in one or more of the following languages:
 
        Arabic
+       Bulgarian
        Czech
        French, Swiss French
        German, Swiss German
index 0970eac913b266447a7527744dc340182a2e11d1..b0521442c73616c3809040c9da1ea7092b9f8c3e 100644 (file)
@@ -2751,10 +2751,6 @@ bool BufferView::Pimpl::Dispatch(kb_action action, string const & argument)
        }
        break;
        
-       case LFUN_INSET_TEXT:
-               insertAndEditInset(new InsetText(buffer_->params));
-               break;
-       
        case LFUN_INSET_ERT:
                insertAndEditInset(new InsetERT(buffer_->params));
                break;
index 7576954914ea51602b52c17bcaaabd22b0f8779a..a6233d3363bbc267d86b55eea9a73cb3144ca29e 100644 (file)
@@ -1,3 +1,11 @@
+2002-03-06  John Levon  <moz@compsoc.man.ac.uk>
+
+       * commandtags.h:
+       * LyXAction.C:
+       * lyxfunc.C:
+       * BufferView_pimpl.C: remove unused LFUN_CORE,
+       LFUN_TEXT_INSET
+
 2002-03-13  Lars Gullik Bjønnes  <larsbj@birdstep.com>
 
        * Painter.C (display): anon helper function, adjust code for this
index ad6b2f3f4e48da9f95dd3ec1976661eb4a42b9a6..093a630691ebb545b073ea2dcb353c1ca2376642 100644 (file)
@@ -379,8 +379,6 @@ void LyXAction::init()
                  N_("Tabular Features"), Noop },
                { LFUN_INSET_TABULAR, "tabular-insert",
                  N_("Insert a new Tabular Inset"), Noop },
-               { LFUN_INSET_TEXT, "text-insert",
-                 N_("Insert a new Text Inset"), Noop },
 #if 0
                { LFUN_INSET_THEOREM, "theorem-insert", "", Noop },
 #endif
index 6581649728161874462b2114e69a1b2bcc42b02c..afaba9c63e0a2f4f4b7ff34ba59f6786f149e98e 100644 (file)
--- a/src/box.C
+++ b/src/box.C
@@ -30,4 +30,3 @@ ostream & operator<<(ostream & o, Box const & b)
        return o << "x1,y1: " << b.x1 << "," << b.y1
                << " x2,y2: " << b.x2 << "," << b.y2 << std::endl;
 }
index b9042343b89ea8861709f7c93e167d92d3922290..5134ccb2b1c27ef2d70ce59cf3e26c2faa60bdf7 100644 (file)
@@ -253,7 +253,6 @@ enum kb_action {
        LFUN_HELP_OPEN, // 220          // Jug 990627
        LFUN_DATE_INSERT,                     // jdblair 20000131
        LFUN_LANGUAGE,                  // Dekel 20000203
-       LFUN_INSET_TEXT,                      // Jug 20000214
        LFUN_INSET_ERT,                 // Jug 20000218
        LFUN_INSET_GRAPHICS,            // Lgb 20000226
        LFUN_INSET_FOOTNOTE,            // Jug 20000307
index e1628deffc5b64795d2cd46f78c8fb36faafed6d..9d4421ac118804a3798709f3e3962052713c568b 100644 (file)
@@ -1,3 +1,7 @@
+2002-03-13  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
+
+       * insetgraphics.h: remove display() method.
+
 2002-03-11  Juergen Vigna  <jug@sad.it>
 
        * insetgraphics.C (draw): hack to fix the redrawing bug.
index 94effb1491a0b2806f9561459337d5800a485567..ac446c7ca5cb45edb8714f0608891e35f6eae1ab 100644 (file)
@@ -44,8 +44,6 @@ public:
        ///
        int width(BufferView *, LyXFont const &) const;
        ///
-       bool display() const { return true; }
-       ///
        void draw(BufferView *, LyXFont const &, int, float &, bool) const;
        ///
        void edit(BufferView *, int, int, unsigned int);
index 0857b261b34f8faa11f274d3cc3a3188c86705c6..59c5849cc7571f49ac8130ac28b44b897e4c48cc 100644 (file)
@@ -568,9 +568,6 @@ FuncStatus LyXFunc::getStatus(kb_action action,
        // the functions which insert insets
        Inset::Code code = Inset::NO_CODE;
        switch (action) {
-       case LFUN_INSET_TEXT:
-               code = Inset::TEXT_CODE;
-               break;
        case LFUN_INSET_ERT:
                code = Inset::ERT_CODE;         
                break;