Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download

open-axiom repository from github

24005 views
1
// Copyright (C) 2011-2013, Gabriel Dos Reis.
2
// All rights reserved.
3
// Written by Gabriel Dos Reis.
4
//
5
// Redistribution and use in source and binary forms, with or without
6
// modification, are permitted provided that the following conditions are
7
// met:
8
//
9
// - Redistributions of source code must retain the above copyright
10
// notice, this list of conditions and the following disclaimer.
11
//
12
// - Redistributions in binary form must reproduce the above copyright
13
// notice, this list of conditions and the following disclaimer in
14
// the documentation and/or other materials provided with the
15
// distribution.
16
//
17
// - Neither the name of OpenAxiom. nor the names of its contributors
18
// may be used to endorse or promote products derived from this
19
// software without specific prior written permission.
20
//
21
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
22
// IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
23
// TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
24
// PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER
25
// OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
26
// EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
27
// PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
28
// PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
29
// LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
30
// NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
31
// SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32
33
#include <QMenuBar>
34
#include <QAction>
35
#include <QApplication>
36
#include <QMessageBox>
37
#include <QScrollBar>
38
39
#include "debate.h"
40
#include "main-window.h"
41
42
namespace OpenAxiom {
43
void
44
MainWindow::display_error(const std::string& s) {
45
QMessageBox::critical(this, tr("System error"), QString(s.c_str()));
46
}
47
48
void
49
MainWindow::read_databases() {
50
}
51
52
53
static void connect_server_io(MainWindow* win, Debate* debate) {
54
QObject::connect(win->server(), SIGNAL(readyReadStandardError()),
55
win, SLOT(display_error()));
56
QObject::connect(win->server(), SIGNAL(readyReadStandardOutput()),
57
debate->exchanges(), SLOT(read_reply()));
58
}
59
60
61
MainWindow::MainWindow(int argc, char* argv[])
62
: srv(argc, argv), tabs(this) {
63
setCentralWidget(&tabs);
64
setWindowTitle("OpenAxiom");
65
auto debate = new Debate(this);
66
tabs.addTab(debate, "Interpreter");
67
auto s = debate->widget()->frameSize();
68
s.rwidth() += debate->verticalScrollBar()->width();
69
s.rheight() += debate->horizontalScrollBar()->width();
70
resize(s);
71
QMenu* file = menuBar()->addMenu(tr("&File"));
72
QAction* action = new QAction(tr("Quit"), this);
73
file->addAction(action);
74
action->setShortcut(tr("Ctrl+Q"));
75
connect(action, SIGNAL(triggered()), this, SLOT(close()));
76
77
connect_server_io(this, debate);
78
server()->launch();
79
// When invoked in a --role=server mode, OpenAxiom would
80
// wait to be pinged before displaying a prompt. This is
81
// an unfortunate result of a rather awkward hack.
82
server()->input("");
83
read_databases();
84
}
85
86
MainWindow::~MainWindow() {
87
}
88
89
void MainWindow::done(int s, QProcess::ExitStatus) {
90
// For the time being, shut done the whole application
91
// if the interpreter quits. FIXME.
92
QApplication::exit(s);
93
}
94
95
void MainWindow::display_error() {
96
auto s = server()->readAllStandardError();
97
QMessageBox::critical(this, tr("System error"), QString(s));
98
}
99
}
100
101