2000-02-29 02:19:17 +00:00
|
|
|
// -*- C++ -*-
|
|
|
|
/* This file is part of
|
|
|
|
* ======================================================
|
|
|
|
*
|
|
|
|
* LyX, The Document Processor
|
|
|
|
*
|
|
|
|
* Copyright 1995 Matthias Ettrich
|
|
|
|
* Copyright 1995-2000 the LyX Team.
|
|
|
|
*
|
|
|
|
* ====================================================== */
|
|
|
|
|
|
|
|
#ifndef INSET_GRAPHICS_H
|
|
|
|
#define INSET_GRAPHICS_H
|
|
|
|
|
2000-08-08 09:18:39 +00:00
|
|
|
|
2000-02-29 02:19:17 +00:00
|
|
|
#ifdef __GNUG__
|
|
|
|
#pragma interface
|
2000-08-14 09:44:53 +00:00
|
|
|
#endif
|
2000-08-08 09:18:39 +00:00
|
|
|
|
2000-02-29 02:19:17 +00:00
|
|
|
#include "insets/lyxinset.h"
|
2000-07-31 12:30:10 +00:00
|
|
|
#include "insets/insetgraphicsParams.h"
|
2000-08-10 13:15:05 +00:00
|
|
|
#include "graphics/GraphicsCacheItem.h"
|
2000-07-31 12:30:10 +00:00
|
|
|
|
2000-02-29 02:19:17 +00:00
|
|
|
#include "LaTeXFeatures.h"
|
|
|
|
|
2000-07-31 12:30:10 +00:00
|
|
|
// We need a signal here to hide an active dialog when we are deleted.
|
|
|
|
#include "sigc++/signal_system.h"
|
|
|
|
#ifdef SIGC_CXX_NAMESPACES
|
|
|
|
using SigC::Signal0;
|
2000-08-08 09:18:39 +00:00
|
|
|
using SigC::slot;
|
|
|
|
using SigC::Object;
|
2000-08-14 09:44:53 +00:00
|
|
|
#endif
|
2000-07-31 12:30:10 +00:00
|
|
|
|
|
|
|
class Dialogs;
|
2000-10-12 10:46:06 +00:00
|
|
|
class LyXImage;
|
2000-03-09 23:58:55 +00:00
|
|
|
|
2000-02-29 02:19:17 +00:00
|
|
|
///
|
2000-08-08 09:18:39 +00:00
|
|
|
#ifdef SIGC_CXX_NAMESPACES
|
2000-08-14 09:44:53 +00:00
|
|
|
class InsetGraphics : public Inset, public SigC::Object
|
2000-08-08 09:18:39 +00:00
|
|
|
#else
|
2000-08-14 09:44:53 +00:00
|
|
|
class InsetGraphics : public Inset, public Object
|
2000-09-14 17:53:12 +00:00
|
|
|
#endif
|
2000-08-14 09:44:53 +00:00
|
|
|
{
|
2000-02-29 02:19:17 +00:00
|
|
|
public:
|
2000-03-09 23:58:55 +00:00
|
|
|
///
|
|
|
|
InsetGraphics();
|
2000-08-14 09:44:53 +00:00
|
|
|
///
|
|
|
|
~InsetGraphics();
|
2000-02-29 02:19:17 +00:00
|
|
|
///
|
2000-07-05 14:57:48 +00:00
|
|
|
int ascent(BufferView *, LyXFont const &) const;
|
2000-02-29 02:19:17 +00:00
|
|
|
///
|
2000-07-05 14:57:48 +00:00
|
|
|
int descent(BufferView *, LyXFont const &) const;
|
2000-02-29 02:19:17 +00:00
|
|
|
///
|
2000-07-05 14:57:48 +00:00
|
|
|
int width(BufferView *, LyXFont const &) const;
|
2000-02-29 02:19:17 +00:00
|
|
|
///
|
2000-07-31 12:30:10 +00:00
|
|
|
bool display() const { return true; }
|
|
|
|
///
|
2000-06-23 15:02:46 +00:00
|
|
|
void draw(BufferView *, LyXFont const &, int, float &, bool) const;
|
2000-02-29 02:19:17 +00:00
|
|
|
///
|
|
|
|
void Edit(BufferView *, int, int, unsigned int);
|
|
|
|
///
|
2000-03-08 13:52:57 +00:00
|
|
|
EDITABLE Editable() const;
|
2000-02-29 02:19:17 +00:00
|
|
|
///
|
2000-06-12 11:27:15 +00:00
|
|
|
void Write(Buffer const *, std::ostream &) const;
|
2000-02-29 02:19:17 +00:00
|
|
|
///
|
2000-06-12 11:27:15 +00:00
|
|
|
void Read(Buffer const *, LyXLex & lex);
|
2000-07-31 12:30:10 +00:00
|
|
|
|
2000-02-29 02:19:17 +00:00
|
|
|
/** returns the number of rows (\n's) of generated tex code.
|
2000-09-14 17:53:12 +00:00
|
|
|
#fragile == true# means, that the inset should take care about
|
|
|
|
fragile commands by adding a #\protect# before.
|
2000-02-29 02:19:17 +00:00
|
|
|
*/
|
2000-07-15 23:51:46 +00:00
|
|
|
int Latex(Buffer const *, std::ostream &,
|
2000-08-14 09:44:53 +00:00
|
|
|
bool fragile, bool free_spc) const;
|
2000-03-06 02:42:40 +00:00
|
|
|
///
|
2000-09-26 15:25:14 +00:00
|
|
|
int Ascii(Buffer const *, std::ostream &, int linelen) const;
|
2000-04-24 20:58:23 +00:00
|
|
|
///
|
2000-06-12 11:27:15 +00:00
|
|
|
int Linuxdoc(Buffer const *, std::ostream &) const;
|
2000-03-06 02:42:40 +00:00
|
|
|
///
|
2000-06-12 11:27:15 +00:00
|
|
|
int DocBook(Buffer const *, std::ostream &) const;
|
2000-03-09 23:58:55 +00:00
|
|
|
|
2000-07-31 12:30:10 +00:00
|
|
|
/** Tell LyX what the latex features you need i.e. what latex packages
|
2000-09-14 17:53:12 +00:00
|
|
|
you need to be included.
|
|
|
|
*/
|
2000-02-29 02:19:17 +00:00
|
|
|
void Validate(LaTeXFeatures & features) const;
|
|
|
|
|
|
|
|
/// returns LyX code associated with the inset. Used for TOC, ...)
|
|
|
|
Inset::Code LyxCode() const { return Inset::GRAPHICS_CODE; }
|
2000-08-14 09:44:53 +00:00
|
|
|
|
2000-02-29 02:19:17 +00:00
|
|
|
///
|
2000-10-10 11:50:43 +00:00
|
|
|
Inset * Clone(Buffer const &) const;
|
2000-07-31 12:30:10 +00:00
|
|
|
|
2000-09-14 17:53:12 +00:00
|
|
|
/** Set the inset parameters, used by the GUIndependent dialog.
|
|
|
|
Return true of new params are different from what was so far.
|
|
|
|
*/
|
2000-08-14 09:44:53 +00:00
|
|
|
bool setParams(InsetGraphicsParams const & params);
|
2000-07-31 12:30:10 +00:00
|
|
|
|
2000-08-14 09:44:53 +00:00
|
|
|
/// Get the inset parameters, used by the GUIndependent dialog.
|
|
|
|
InsetGraphicsParams getParams() const;
|
2000-07-31 12:30:10 +00:00
|
|
|
|
2000-09-14 17:53:12 +00:00
|
|
|
/** This signal is connected by our dialog and called when the inset
|
|
|
|
is deleted.
|
|
|
|
*/
|
|
|
|
Signal0 <void> hide;
|
2000-02-29 02:19:17 +00:00
|
|
|
private:
|
2000-08-14 09:44:53 +00:00
|
|
|
/// Update the inset after parameter change.
|
2000-10-12 10:46:06 +00:00
|
|
|
void updateInset() const;
|
|
|
|
/// Get the status message, depends on the image loading status.
|
|
|
|
char const * statusMessage() const;
|
2001-02-08 13:06:55 +00:00
|
|
|
/// Create the options for the latex command.
|
|
|
|
string const createLatexOptions() const;
|
|
|
|
/// Convert the file if needed, and return the location of the file.
|
|
|
|
string const prepareFile(Buffer const * buf) const;
|
2000-08-14 09:44:53 +00:00
|
|
|
|
|
|
|
/// The graphics cache handle.
|
2000-10-12 10:46:06 +00:00
|
|
|
mutable GraphicsCacheItem * cacheHandle;
|
2000-08-14 09:44:53 +00:00
|
|
|
|
|
|
|
/// The pixmap
|
2000-10-12 10:46:06 +00:00
|
|
|
mutable LyXImage * pixmap;
|
2000-08-14 09:44:53 +00:00
|
|
|
/// is the pixmap initialized?
|
2001-02-08 13:06:55 +00:00
|
|
|
mutable bool updateImage;
|
2000-08-14 09:44:53 +00:00
|
|
|
|
|
|
|
InsetGraphicsParams params;
|
2000-02-29 02:19:17 +00:00
|
|
|
};
|
|
|
|
|
2000-08-14 09:44:53 +00:00
|
|
|
#endif
|