1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138
|
/*
* Copyright (c) 2009 Samit Basu
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
*/
#include "Interpreter.hpp"
#include "Array.hpp"
#include "helpwidget.hpp"
#include <QtCore>
#include <QApplication>
#include "PathSearch.hpp"
#include "MainApp.hpp"
extern MainApp *m_app;
//!
//@Module HELP Help
//@@Section FREEMAT
//@@Usage
//Displays help on a function available in FreeMat. The help function
//takes one argument:
//@[
// help topic
//@]
//where @|topic| is the topic to look for help on. For scripts, the
//result of running @|help| is the contents of the comments at the top
//of the file. If FreeMat finds no comments, then it simply displays
//the function declaration.
//@@Signature
//sfunction help HelpFunction
//inputs function
//outputs none
//!
ArrayVector HelpFunction(int nargout, const ArrayVector& arg, Interpreter* eval)
{
PathSearcher psearch(eval->getTotalPath());
if (arg.size() != 1)
throw Exception("help function requires a single argument (the function or script name)");
QString fname = arg[0].asString();
bool isFun;
FuncPtr val;
isFun = eval->getContext()->lookupFunction(fname,val);
if (isFun && (val->type() == FM_M_FUNCTION)) {
MFunctionDef *mptr;
mptr = (MFunctionDef *) val;
mptr->updateCode(eval);
for (int i=0;i<(int)mptr->helpText.size();i++)
eval->outputMessage(mptr->helpText[i]);
return ArrayVector();
} else {
// Check for a mdc file with the given name
QString mdcname = fname + ".mdc";
mdcname = psearch.ResolvePath(mdcname);
if( mdcname.isNull() )
throw Exception("no help available on " + fname);
QFile fp(mdcname);
if (!fp.open(QIODevice::ReadOnly))
throw Exception(QString("No help available on ") + fname);
QTextStream io(&fp);
int outputWidth = eval->getTerminalWidth() - 20;
while (!io.atEnd()) {
QString cp = io.readLine();
eval->outputMessage("\n ");
int charsRemaining = outputWidth - 10;
QStringList words = cp.split(" ");
for (int i=0;i<words.size();i++) {
QString word = words[i] + " ";
if ((word.size() >= outputWidth) || (word.size() < charsRemaining)) {
eval->outputMessage(word);
charsRemaining -= word.size();
} else {
eval->outputMessage("\n ");
charsRemaining = outputWidth-word.size();
eval->outputMessage(word);
}
}
}
return ArrayVector();
}
throw Exception("no help for that topic");
}
static HelpWindow *m_helpwin=0;
bool inBundleMode();
QString GetRootPath();
//!
//@Module HELPWIN Online Help Window
//@@Section FREEMAT
//@@Usage
//Brings up the online help window with the FreeMat manual. The
//@|helpwin| function takes no arguments:
//@[
// helpwin
// helpwin FunctionName
//@]
//@@Signature
//sgfunction helpwin HelpWinFunction
//inputs functionname
//outputs none
//!
ArrayVector HelpWinFunction(int nargout, const ArrayVector& arg, Interpreter* eval) {
QDir dir(GetRootPath()+"/help/html");
if (!m_helpwin){
m_helpwin = new HelpWindow(dir.canonicalPath());
QObject::connect(m_helpwin,SIGNAL(EvaluateText(QString)),m_app->GetKeyManager(),SLOT(QueueMultiString(QString)));
}
if (arg.size() == 0) {
m_helpwin->show();
m_helpwin->raise();
}
else if (arg.size() == 1) {
QString fulltext = arg[0].asString();
m_helpwin->helpText(fulltext);
m_helpwin->show();
m_helpwin->raise();
}
else
throw Exception("helpwin function accepts at most 1 argument.");
return ArrayVector();
}
|