]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetref.C
prepare for 1.1.6pre2
[lyx.git] / src / insets / insetref.C
index fc639e95475586e4e5a3005a43c107045d7ce1e5..b936e53ad941b1301fba6f4c22964f94cabc9d8f 100644 (file)
@@ -1,69 +1,53 @@
 #include <config.h>
 
-#include <cstdlib>
-
 #ifdef __GNUG__
 #pragma implementation
 #endif
 
-#include FORMS_H_LOCATION 
 #include "insetref.h"
 #include "buffer.h"
-#include "debug.h"
-#include "lyx_gui_misc.h" // CancelCloseBoxCB
-#include "LyXView.h"
-#include "lyxfunc.h"
 #include "commandtags.h"
+#include "debug.h"
 #include "gettext.h"
+#include "LaTeXFeatures.h"
+#include "lyxfunc.h"
+#include "LyXView.h"
+#include "frontends/Dialogs.h"
 
-extern BufferView * current_view;
+using std::ostream;
 
+InsetRef::InsetRef(InsetCommandParams const & p, Buffer const & buf)
+       : InsetCommand(p), isLatex(buf.isLatex())
+{}
 
-InsetRef::InsetRef(string const & cmd, Buffer * bf)
-       : master(bf)
+void InsetRef::Edit(BufferView * bv, int, int, unsigned int button)
 {
-       scanCommand(cmd);
-       if (getCmdName() == "ref")
-               flag = InsetRef::REF;
-       else
-               flag = InsetRef::PAGE_REF;
+       // Eventually trigger dialog with button 3 not 1
+       if (button == 3 )
+               bv->owner()->getLyXFunc()->
+                       Dispatch(LFUN_REF_GOTO, getContents());
+       else if (button == 1 )
+               bv->owner()->getDialogs()->showRef( this );
 }
 
 
-InsetRef::InsetRef(InsetCommand const & inscmd, Buffer * bf)
-       : master(bf)
+string const InsetRef::getScreenLabel() const
 {
-       setCmdName(inscmd.getCmdName());
-       setContents(inscmd.getContents());
-       setOptions(inscmd.getOptions());
+       string temp;
        if (getCmdName() == "ref")
-               flag = InsetRef::REF;
+               temp = _( "Ref: " );
+       else if (getCmdName() == "pageref")
+               temp = _( "Page: " );
+       else if (getCmdName() == "vref")
+               temp = _( "TextRef: " );
+       else if (getCmdName() == "vpageref")
+               temp = _( "TextPage: " );
        else
-               flag = InsetRef::PAGE_REF;
-}
-
-
-InsetRef::~InsetRef()
-{
-}
-
+               temp = _( "PrettyRef: " );
 
-void InsetRef::Edit(int, int)
-{
-        current_view->owner()->getLyXFunc()
-               ->Dispatch(LFUN_REFGOTO, getContents().c_str());
-}
-
-
-string InsetRef::getScreenLabel() const
-{
-       string temp;
-       if (flag == InsetRef::PAGE_REF)
-               temp += _("Page: ");
-       else 
-               temp += _("Ref: ");
        temp += getContents();
-       if(!current_view->buffer()->isLatex()
+
+       if (!isLatex
           && !getOptions().empty()) {
                temp += "||";
                temp += getOptions();
@@ -72,53 +56,46 @@ string InsetRef::getScreenLabel() const
 }
 
 
-int InsetRef::Latex(FILE * file, signed char /*fragile*/)
+int InsetRef::Latex(Buffer const *, ostream & os,
+                   bool /*fragile*/, bool /*fs*/) const
 {
-       if(getOptions().empty())
-               fprintf(file, "%s", escape(getCommand()).c_str());
+       if (getOptions().empty())
+               os << escape(getCommand());
        else {
-               string ns;
-               InsetCommand clone = InsetCommand(getCmdName(), getContents(), ns);
-               fprintf(file, "%s", escape(clone.getCommand()).c_str());
+               InsetCommandParams p( getCmdName(), getContents(), "" );
+               os << escape(p.getCommand());
        }
        return 0;
 }
 
 
-int InsetRef::Latex(string & file, signed char /*fragile*/)
+int InsetRef::Ascii(Buffer const *, ostream & os, int) const
 {
-       if(getOptions().empty())
-               file += escape(getCommand());
-       else {
-               string ns;
-               InsetCommand clone= InsetCommand(getCmdName(), getContents(), ns);
-               file += escape(clone.getCommand());
-       }
+       os << "[" << getContents() << "]";
        return 0;
 }
 
 
-int InsetRef::Linuxdoc(string & file)
+int InsetRef::Linuxdoc(Buffer const *, ostream & os) const
 {
-       file += "<ref id=\"" + getContents()
-               + "\" name=\""+ getOptions() +"\" >" ;
-
+       os << "<ref id=\"" << getContents()
+          << "\" name=\"" << getOptions() << "\" >";
        return 0;
 }
 
 
-int InsetRef::DocBook(string & file)
+int InsetRef::DocBook(Buffer const *, ostream & os) const
 {
-       file += "<link linkend=\"" + getContents()
-               + "\">"+ getOptions() +"</link>" ;
-
+       os << "<link linkend=\"" << getContents()
+          << "\">" << getOptions() << "</link>";
        return 0;
 }
 
 
 // This function escapes 8-bit characters and other problematic characters
 // It's exactly the same code as in insetlabel.C.
-string InsetRef::escape(string const & lab) const {
+string const InsetRef::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;
@@ -134,3 +111,12 @@ string InsetRef::escape(string const & lab) const {
        }
        return enc;
 }
+
+
+void InsetRef::Validate(LaTeXFeatures & features) const
+{
+       if (getCmdName() == "vref" || getCmdName() == "vpageref")
+               features.varioref = true;
+       else if (getCmdName() == "prettyref")
+               features.prettyref = true;
+}