wxMaxima
Loading...
Searching...
No Matches
VisiblyInvalidCell.h
1// -*- mode: c++; c-file-style: "linux"; c-basic-offset: 2; indent-tabs-mode: nil -*-
2//
3// Copyright (C) 2004-2015 Andrej Vodopivec <andrej.vodopivec@gmail.com>
4// (C) 2014-2018 Gunter Königsmann <wxMaxima@physikbuch.de>
5//
6// This program is free software; you can redistribute it and/or modify
7// it under the terms of the GNU General Public License as published by
8// the Free Software Foundation; either version 2 of the License, or
9// (at your option) any later version.
10//
11// This program is distributed in the hope that it will be useful,
12// but WITHOUT ANY WARRANTY; without even the implied warranty of
13// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14// GNU General Public License for more details.
15//
16//
17// You should have received a copy of the GNU General Public License
18// along with this program; if not, write to the Free Software
19// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20//
21// SPDX-License-Identifier: GPL-2.0+
22
23#ifndef VISIBLYINVALIDCELL_H
24#define VISIBLYINVALIDCELL_H
25
26#include "TextCell.h"
27
32class VisiblyInvalidCell final : public TextCell
33{
34public:
38 VisiblyInvalidCell(GroupCell *group, Configuration *config, wxString &&toolTip);
39 VisiblyInvalidCell(GroupCell *group, Configuration *config, const wxString *toolTip);
41 virtual ~VisiblyInvalidCell(){}
42 virtual std::unique_ptr<Cell> Copy(GroupCell *group) const override;
43 const CellTypeInfo &GetInfo() override;
44
46 void SetCurrentPoint(wxPoint point) override;
47 void Draw(wxDC *dc, wxDC *antialiassingDC) override;
48
49 private:
50//** Bitfield objects (0 bytes)
51//**
52 static void InitBitFields_VisiblyInvalidCell()
53 { // Keep the initialization order below same as the order
54 // of bit fields in this class!
55 }
56};
57
58#endif // VISIBLYINVALIDCELL_H
A class that carries information about the type of a cell.
Definition: Cell.h:93
virtual void SetCurrentPoint(wxPoint point)
Pass 2: Arrangement.
Definition: Cell.cpp:466
The configuration storage for the current worksheet.
Definition: Configuration.h:86
A cell grouping input (and, if there is one, also the output) cell to a foldable item.
Definition: GroupCell.h:87
A Text cell.
Definition: TextCell.h:38
A visibly invalid cell.
Definition: VisiblyInvalidCell.h:33
void SetCurrentPoint(wxPoint point) override
Pass 2: Arrangement.
Definition: VisiblyInvalidCell.cpp:76
const CellTypeInfo & GetInfo() override
Returns the information about this cell's type.
void Draw(wxDC *dc, wxDC *antialiassingDC) override
Pass 3 (Paint): Renders the cell using pre-calculated coordinates.
Definition: VisiblyInvalidCell.cpp:80
virtual std::unique_ptr< Cell > Copy(GroupCell *group) const override
Create a copy of this cell.