wxMaxima
Loading...
Searching...
No Matches
MaximaProtocol.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
34#ifndef MAXIMAPROTOCOL_H
35#define MAXIMAPROTOCOL_H
36
37#include <wx/string.h>
38
39namespace MaximaProtocol {
40
43bool IsDebuggerPrompt(const wxString &label);
44
47bool IsLispReplPrompt(const wxString &label);
48
52bool IsNumberedInputPrompt(const wxString &label);
53
63bool IsMainInputPrompt(const wxString &label, bool inLispMode);
64
71bool CommandIsBlank(const wxString &command);
72
73} // namespace MaximaProtocol
74
75#endif // MAXIMAPROTOCOL_H
bool IsLispReplPrompt(const wxString &label)
A Maxima Lisp-REPL prompt ("MAXIMA> "), as seen after to_lisp(). The prompt may be preceded by a newl...
Definition: MaximaProtocol.cpp:34
bool IsDebuggerPrompt(const wxString &label)
A Maxima high-level debugger prompt, e.g. "(dbm:1)". Maxima drops into this REPL on an error while de...
Definition: MaximaProtocol.cpp:30
bool CommandIsBlank(const wxString &command)
Would transmitting command send nothing but a bare newline? SendMaxima trims trailing whitespace and ...
Definition: MaximaProtocol.cpp:75
bool IsNumberedInputPrompt(const wxString &label)
A normal numbered Maxima input/label prompt, e.g. "(%i3) " or "(%o12) ". The character before the clo...
Definition: MaximaProtocol.cpp:38
bool IsMainInputPrompt(const wxString &label, bool inLispMode)
Does label mark a new main prompt - one where wxMaxima should advance its evaluation queue - as oppos...
Definition: MaximaProtocol.cpp:62