wxMaxima
Loading...
Searching...
No Matches
MaximaVariableUpdates.h
Go to the documentation of this file.
1// -*- mode: c++; c-file-style: "linux"; c-basic-offset: 2; indent-tabs-mode: nil -*-
2//
3// Copyright (C) 2026 Gunter Königsmann <wxMaxima@physikbuch.de>
4//
5// This program is free software; you can redistribute it and/or modify
6// it under the terms of the GNU General Public License as published by
7// the Free Software Foundation; either version 2 of the License, or
8// (at your option) any later version.
9//
10// This program is distributed in the hope that it will be useful,
11// but WITHOUT ANY WARRANTY; without even the implied warranty of
12// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13// GNU General Public License for more details.
14//
15//
16// You should have received a copy of the GNU General Public License
17// along with this program; if not, write to the Free Software
18// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19//
20// SPDX-License-Identifier: GPL-2.0+
21
32#ifndef MAXIMAVARIABLEUPDATES_H
33#define MAXIMAVARIABLEUPDATES_H
34
35#include <wx/string.h>
36#include <wx/xml/xml.h>
37#include <vector>
38
47{
49 wxString m_name;
51 wxString m_value;
53 bool m_bound = false;
54};
55
64std::vector<MaximaVariableUpdate>
65ParseMaximaVariableUpdates(const wxXmlDocument &xmldoc);
66
76std::vector<wxString>
77ParseWatchVariableAdditions(const wxXmlDocument &xmldoc);
78
79#endif // MAXIMAVARIABLEUPDATES_H
std::vector< MaximaVariableUpdate > ParseMaximaVariableUpdates(const wxXmlDocument &xmldoc)
Parses a <variables> XML document Maxima sent into a list of updates.
Definition: MaximaVariableUpdates.cpp:29
std::vector< wxString > ParseWatchVariableAdditions(const wxXmlDocument &xmldoc)
Parses the <watch_variables_add> XML document Maxima sends into the list of variable names to add to ...
Definition: MaximaVariableUpdates.cpp:66
One variable update from a <variables> document Maxima sent.
Definition: MaximaVariableUpdates.h:47
wxString m_value
The variable's value, verbatim as Maxima sent it. Only valid if m_bound.
Definition: MaximaVariableUpdates.h:51
wxString m_name
The variable's name.
Definition: MaximaVariableUpdates.h:49
bool m_bound
True = the variable is bound to a value; false = it is undefined.
Definition: MaximaVariableUpdates.h:53