31#include <wx/filesys.h>
46 virtual std::unique_ptr<Cell>
Copy(
GroupCell *group)
const override = 0;
58 virtual int GetPPI()
const = 0;
59 virtual size_t GetOriginalWidth()
const = 0;
60 virtual size_t GetOriginalHeight()
const = 0;
84 virtual const wxString
GetToolTip(wxPoint point)
const override = 0;
92 virtual wxCoord GetMaxWidth()
const = 0;
93 virtual wxCoord GetHeightList()
const = 0;
94 virtual void SetMaxWidth(wxCoord width) = 0;
95 virtual void SetMaxHeight(wxCoord height) = 0;
99 virtual void Draw(wxPoint point, wxDC *dc, wxDC *antialiassingDC)
override = 0;
102 virtual wxString
ToRTF()
const override = 0;
104 virtual wxString
ToTeX()
const override = 0;
105 virtual wxString
ToXML()
const override = 0;
The definition of the base class of all cells the worksheet consists of.
This file declares the class Image.
A Type-Safe Fixed-Point Font Size.
Definition: FontAttribs.h:98
Definition: AnimationCell.h:46
A class that carries information about the type of a cell.
Definition: Cell.h:93
The base class all cell types the worksheet can consist of are derived from.
Definition: Cell.h:142
The configuration storage for the current worksheet.
Definition: Configuration.h:85
A cell grouping input (and, if there is one, also the output) cell to a foldable item.
Definition: GroupCell.h:74
Definition: ImgCellBase.h:42
ImgCellBase & operator=(const ImgCellBase &)=delete
This class can be derived from wxAccessible which has no copy constructor.
virtual wxString GetExtension() const =0
Returns the file name extension that matches the image type.
virtual wxSize ToImageFile(wxString filename)=0
Writes the image to a file.
virtual const CellTypeInfo & GetInfo() override=0
Returns the information about this cell's type.
virtual wxString ToXML() const override=0
Convert this cell to a representation fit for saving in a .wxmx file.
virtual wxString ToRTF() const override=0
Returns the cell's representation as RTF.
virtual const wxString GetToolTip(wxPoint point) const override=0
Returns the ToolTip this cell provides at a given point.
virtual wxString ToString() const override=0
Returns the cell's representation as a string.
virtual wxString GnuplotSource() const override=0
The name of the file with gnuplot commands that created this file.
virtual void Recalculate(AFontSize fontsize) override=0
Recalculate the size of the cell and the difference between top and center.
virtual void Draw(wxPoint point, wxDC *dc, wxDC *antialiassingDC) override=0
Draw this cell.
virtual void SetPPI(int ppi)=0
Set the image's resolution.
virtual wxString ToMatlab() const override=0
Convert this cell to its Matlab representation.
virtual wxString ToTeX() const override=0
Convert this cell to its LaTeX representation.
virtual bool CanExportSVG() const =0
Can this image be exported in SVG format?
virtual std::unique_ptr< Cell > Copy(GroupCell *group) const override=0
Create a copy of this cell.
virtual bool CopyToClipboard() const override=0
Copies the cell to the system's clipboard.
virtual void ClearCache() override=0
Removes the cached scaled image from memory.
virtual bool CanPopOut() const override=0
Can this cell be popped out interactively in gnuplot?