]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetinfo.C
use the new sstream return non-pods as const, use string instead of char * in a lot...
[lyx.git] / src / insets / insetinfo.C
index 139d32167d61931ba1efd4b52efa080a21f0ce85..55d6cf911193f9d45f20904afffebd8de59a0530 100644 (file)
@@ -4,9 +4,9 @@
  *           LyX, The Document Processor
  *      
  *         Copyright 1995 Matthias Ettrich
- *          Copyright 1995-1999 The LyX Team.
+ *          Copyright 1995-2000 The LyX Team.
  *
- * ======================================================*/
+ * ====================================================== */
 
 #include <config.h>
 
 #include "insetinfo.h"
 #include "lyxparagraph.h"
 #include "debug.h"
-#include "lyxdraw.h"
 #include "gettext.h"
 #include "lyx_gui_misc.h" // CancelCloseBoxCB
 #include "buffer.h"
 #include "support/lstrings.h"
+#include "Painter.h"
+#include "font.h"
+
+using std::ostream;
+using std::endl;
 
 /* Info, used for the Info boxes */
 
 extern BufferView * current_view;
 
+
 InsetInfo::InsetInfo()
+       : form(0), labelfont(LyXFont::ALL_SANE)
 {
-       form = 0;
+       labelfont.decSize().decSize()
+               .setColor(LColor::note).setLatex(LyXFont::OFF);
 }
 
 
-InsetInfo::InsetInfo(string const & string)
-       : contents(string)
+InsetInfo::InsetInfo(string const & str)
+       : contents(str), form(0), labelfont(LyXFont::ALL_SANE)
 {
-       form = 0;
+       labelfont.decSize().decSize()
+               .setColor(LColor::note).setLatex(LyXFont::OFF);
 }
 
 
 InsetInfo::~InsetInfo()
 {
-       if (form){
+       if (form) {
                fl_hide_form(form);
                fl_free_form(form);
                form = 0;
@@ -52,51 +60,57 @@ InsetInfo::~InsetInfo()
 }
 
 
-int InsetInfo::Ascent(LyXFont const & font) const
+int InsetInfo::ascent(BufferView *, LyXFont const &) const
 {
-       return font.maxAscent() + 1;
+       return lyxfont::maxAscent(labelfont) + 1;
 }
 
 
-int InsetInfo::Descent(LyXFont const & font) const
+int InsetInfo::descent(BufferView *, LyXFont const &) const
 {
-       return font.maxDescent() + 1;
+       return lyxfont::maxDescent(labelfont) + 1;
 }
 
 
-int InsetInfo::Width(LyXFont const & font) const
+int InsetInfo::width(BufferView *, LyXFont const &) const
 {
-       return 6 + font.textWidth(_("Note"), strlen(_("Note")));
+       return 6 + lyxfont::width(_("Note"), labelfont);
 }
 
 
-void InsetInfo::Draw(LyXFont font, LyXScreen & scr,
-                    int baseline, float & x)
+void InsetInfo::draw(BufferView * bv, LyXFont const &,
+                    int baseline, float & x, bool) const
 {
-       /* Info-insets are never LaTeX, so just correct the font */
-       font.setLatex(LyXFont::OFF);
-
+       Painter & pain = bv->painter();
+#if 0
+       LyXFont font(f);
+       
+       // Info-insets are never LaTeX, so just correct the font
+       font.setLatex(LyXFont::OFF).setColor(LColor::note);
+#endif
        // Draw as "Note" in a yellow box
        x += 1;
-       scr.fillRectangle(gc_note,
-                         int(x), baseline - Ascent(font)+1,
-                         Width(font)-2, Ascent(font)+Descent(font)-2);
-       scr.drawRectangle(gc_note_frame,
-                         int(x), baseline- Ascent(font)+1,
-                         Width(font)-2, Ascent(font)+Descent(font)-2);
+       pain.fillRectangle(int(x), baseline - ascent(bv, labelfont),
+                          width(bv, labelfont) - 2,
+                          ascent(bv, labelfont) + descent(bv, labelfont) - 2,
+                          LColor::notebg);
+       pain.rectangle(int(x), baseline - ascent(bv, labelfont),
+                      width(bv, labelfont) - 2,
+                      ascent(bv, labelfont) + descent(bv, labelfont) - 2,
+                      LColor::noteframe);
        
-       scr.drawString(font, _("Note"), baseline, int(x+2));
-       x +=  Width(font) - 1;
+       pain.text(int(x + 2), baseline, _("Note"), labelfont);
+       x +=  width(bv, labelfont) - 1;
 }
 
 
-void InsetInfo::Write(FILE * file)
+void InsetInfo::Write(Buffer const *, ostream & os) const
 {
-       fprintf(file, "Info %s", contents.c_str());
+       os << "Info\n" << contents;
 }
 
 
-void InsetInfo::Read(LyXLex & lex)
+void InsetInfo::Read(Buffer const *, LyXLex & lex)
 {
        string tmp = lex.GetString(); // should be "Info"
        if (tmp != "Info")
@@ -123,33 +137,34 @@ void InsetInfo::Read(LyXLex & lex)
 }
       
 
-int InsetInfo::Latex(FILE *, signed char /*fragile*/)
+int InsetInfo::Latex(Buffer const *, ostream &,
+                    bool /*fragile*/, bool /*free_spc*/) const
 {
        return 0;
 }
 
 
-int InsetInfo::Latex(string &, signed char /*fragile*/)
+int InsetInfo::Ascii(Buffer const *, ostream &) const
 {
        return 0;
 }
 
 
-int InsetInfo::Linuxdoc(string &)
+int InsetInfo::Linuxdoc(Buffer const *, ostream &) const
 {
        return 0;
 }
 
 
-int InsetInfo::DocBook(string &)
+int InsetInfo::DocBook(Buffer const *, ostream &) const
 {
        return 0;
 }
 
 
-unsigned char InsetInfo::Editable() const
+Inset::EDITABLE InsetInfo::Editable() const
 {
-       return 1;
+       return IS_EDITABLE;
 }
 
 
@@ -157,7 +172,7 @@ void InsetInfo::CloseInfoCB(FL_OBJECT * ob, long)
 {
        InsetInfo * inset = static_cast<InsetInfo*>(ob->u_vdata);
        string tmp = fl_get_input(inset->strobj);
-       Buffer * buffer = current_view->currentBuffer();
+       Buffer * buffer = current_view->buffer();
        if(tmp != inset->contents && !(buffer->isReadonly()) ) {
                buffer->markDirty();
                inset->contents = tmp;
@@ -171,27 +186,34 @@ void InsetInfo::CloseInfoCB(FL_OBJECT * ob, long)
 
 
 // This is just a wrapper.
-extern "C" void C_InsetInfo_CloseInfoCB(FL_OBJECT * ob, long data) 
+extern "C"
+void C_InsetInfo_CloseInfoCB(FL_OBJECT * ob, long data) 
 {
        InsetInfo::CloseInfoCB(ob, data);
 }
 
 
-void InsetInfo::Edit(int, int)
+string const InsetInfo::EditMessage() const 
+{
+       return _("Opened note");
+}
+
+
+void InsetInfo::Edit(BufferView *bv, int, int, unsigned int)
 {
        static int ow = -1, oh;
 
-       if(current_view->currentBuffer()->isReadonly())
-               WarnReadonly();
+       if(bv->buffer()->isReadonly())
+               WarnReadonly(bv->buffer()->fileName());
        
        if (!form) {
                FL_OBJECT *obj;
-               form = fl_bgn_form(FL_UP_BOX,400,180);
-               strobj = obj = fl_add_input(FL_MULTILINE_INPUT,10,10,380,120,"");
-               fl_set_object_color(obj,FL_MCOL,FL_MCOL);
+               form = fl_bgn_form(FL_UP_BOX, 400, 180);
+               strobj = obj = fl_add_input(FL_MULTILINE_INPUT, 10, 10, 380, 120, "");
+               fl_set_object_color(obj, FL_MCOL, FL_MCOL);
                fl_set_object_resize(obj, FL_RESIZE_ALL);
                fl_set_object_gravity(obj, NorthWestGravity, SouthEastGravity);
-               obj = fl_add_button(FL_NORMAL_BUTTON,130,140,120,30,idex(_("Close|#C^[")));
+               obj = fl_add_button(FL_NORMAL_BUTTON, 130, 140, 120, 30, idex(_("Close|#C^[")));
                fl_set_object_resize(obj, FL_RESIZE_NONE);
                fl_set_object_gravity(obj, SouthEastGravity, SouthEastGravity);
                fl_set_object_callback(obj, C_InsetInfo_CloseInfoCB, 0);
@@ -204,7 +226,7 @@ void InsetInfo::Edit(int, int)
        if (form->visible) {
                fl_raise_form(form);
        } else {
-               fl_show_form(form,FL_PLACE_MOUSE | FL_FREE_SIZE,FL_FULLBORDER, 
+               fl_show_form(form, FL_PLACE_MOUSE | FL_FREE_SIZE, FL_FULLBORDER, 
                             _("Note"));
                if (ow < 0) {
                        ow = form->w;
@@ -215,10 +237,9 @@ void InsetInfo::Edit(int, int)
 }
 
 
-Inset* InsetInfo::Clone()
+Inset * InsetInfo::Clone() const
 {
-       InsetInfo * result = new InsetInfo(contents);
-       return result;
+       return new InsetInfo(contents);
 }