]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetlabel.C
reformatting and remove using delc
[lyx.git] / src / insets / insetlabel.C
index 02f3930d4a2edaa05964c54209e12724e8b0ac94..cf48ce3d4a1d9c7febe98c6314d2ca9ab55248df 100644 (file)
@@ -28,19 +28,12 @@ using std::pair;
 /* Label. Used to insert a label automatically */
 
 
-InsetLabel::InsetLabel(string const & cmd)
-{
-       scanCommand(cmd);
-}
+InsetLabel::InsetLabel(InsetCommandParams const & p)
+       : InsetCommand(p)
+{}
 
 
-Inset * InsetLabel::Clone() const
-{
-       return new InsetLabel(getCommand());
-}
-
-
-vector<string> InsetLabel::getLabelList() const
+vector<string> const InsetLabel::getLabelList() const
 {
        return vector<string>(1,getContents());
 }
@@ -59,50 +52,51 @@ void InsetLabel::Edit(BufferView * bv, int, int, unsigned int)
                if (!new_contents.empty() &&
                    getContents() != new_contents) {
                        bv->buffer()->markDirty();
-                       bool flag = bv->ChangeRefs(getContents(),new_contents);
-                       setContents( new_contents );
-                       bv->text->RedoParagraph();
+                       bool flag = bv->ChangeRefsIfUnique(getContents(),
+                                                          new_contents);
+                       setContents(new_contents);
+                       bv->text->RedoParagraph(bv);
                        if (flag) {
                                bv->redraw();
-                               bv->fitCursor();
-                               //bv->updateScrollbar();
+                               bv->fitCursor(getLyXText(bv));
                        } else
-                               bv->update(1);
+                               bv->update(bv->text, BufferView::SELECT|BufferView::FITCUR|BufferView::CHANGE);
                }
        }
 }
 
-int InsetLabel::Latex(ostream & os,
+
+int InsetLabel::Latex(Buffer const *, ostream & os,
                      bool /*fragile*/, bool /*fs*/) const
 {
        os << escape(getCommand());
        return 0;
 }
 
-int InsetLabel::Ascii(ostream & os) const
+int InsetLabel::Ascii(Buffer const *, ostream & os, int) const
 {
        os << "<" << getContents()  << ">";
        return 0;
 }
 
 
-int InsetLabel::Linuxdoc(ostream & os) const
+int InsetLabel::Linuxdoc(Buffer const *, ostream & os) const
 {
        os << "<label id=\"" << getContents() << "\" >";
        return 0;
 }
 
 
-int InsetLabel::DocBook(ostream & os) const
+int InsetLabel::DocBook(Buffer const *, ostream & os) const
 {
-       os << "<anchor id=\"" << getContents() << "\" >";
+       os << "<anchor id=\"" << getContents() << "\" ></anchor>";
        return 0;
 }
 
 
 // This function escapes 8-bit characters and other problematic characters
 // It's exactly the same code as in insetref.C.
-string InsetLabel::escape(string const & lab) const {
+string const InsetLabel::escape(string const & lab) const {
        char hexdigit[16] = { '0', '1', '2', '3', '4', '5', '6', '7',
                              '8', '9', 'A', 'B', 'C', 'D', 'E', 'F' };
        string enc;