mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 13:46:43 +00:00
a9b448a027
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@581 a592a061-630c-0410-9148-cb99ea01b6c8
82 lines
1.9 KiB
C++
82 lines
1.9 KiB
C++
// -*- C++ -*-
|
|
/* This file is part of*
|
|
* ======================================================
|
|
*
|
|
* LyX, The Document Processor
|
|
*
|
|
* Copyright 1995 Matthias Ettrich
|
|
* Copyright 1995-1999 the LyX Team.
|
|
*
|
|
* ====================================================== */
|
|
|
|
#ifndef INSET_INFO_H
|
|
#define INSET_INFO_H
|
|
|
|
#ifdef __GNUG__
|
|
#pragma interface
|
|
#endif
|
|
|
|
#include "lyxinset.h"
|
|
#include FORMS_H_LOCATION
|
|
#include "LString.h"
|
|
|
|
/** Info. Handles the note insets.
|
|
|
|
This class handles the note insets. The edit operation bringes up
|
|
a dialog, where the user can type a note about life or something
|
|
else of interest. When collapsed, the inset is displayed as "Note"
|
|
in a yellow box. Currently, the Read-function is a terrible hack.
|
|
Some day in the distant future, this will hopefully be obsoleted by
|
|
a true comment-environment. */
|
|
class InsetInfo : public Inset {
|
|
public:
|
|
///
|
|
InsetInfo();
|
|
///
|
|
InsetInfo(string const & string);
|
|
///
|
|
~InsetInfo();
|
|
///
|
|
int ascent(Painter &, LyXFont const &) const;
|
|
///
|
|
int descent(Painter &, LyXFont const &) const;
|
|
///
|
|
int width(Painter &, LyXFont const &) const;
|
|
///
|
|
void draw(Painter &, LyXFont const &, int baseline, float & x) const;
|
|
///
|
|
void Write(ostream &) const;
|
|
///
|
|
void Read(LyXLex & lex);
|
|
///
|
|
int Latex(ostream &, signed char fragile) const;
|
|
#ifndef USE_OSTREAM_ONLY
|
|
///
|
|
int Latex(string & file, signed char fragile) const;
|
|
#endif
|
|
///
|
|
int Linuxdoc(string & file) const;
|
|
///
|
|
int DocBook(string & file) const;
|
|
/// what appears in the minibuffer when opening
|
|
const char * EditMessage() const {return _("Opened note");}
|
|
///
|
|
void Edit(BufferView *, int, int, unsigned int);
|
|
///
|
|
unsigned char Editable() const;
|
|
///
|
|
Inset::Code LyxCode() const;
|
|
///
|
|
Inset * Clone() const;
|
|
///
|
|
static void CloseInfoCB(FL_OBJECT *, long data);
|
|
private:
|
|
///
|
|
string contents;
|
|
///
|
|
FL_FORM * form;
|
|
///
|
|
FL_OBJECT * strobj;
|
|
};
|
|
#endif
|