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 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395
|
/***************************************************************************
* Copyright (C) 2008 by Alexey Balakin *
* mathgl.abalakin@gmail.com *
* *
* 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 <QLabel>
#include <QLayout>
#include <QLineEdit>
#include <QComboBox>
#include <QTableWidget>
#include <QPushButton>
#include <QMessageBox>
#include <QTextBrowser>
#include <QToolButton>
#include <QFileDialog>
#include <mgl2/mgl.h>
#include "newcmd_dlg.h"
#include "opt_dlg.h"
#include "style_dlg.h"
#include "data_dlg.h"
extern mglParse parser;
extern QString pathHelp;
//-----------------------------------------------------------------------------
NewCmdDialog::NewCmdDialog(QWidget *p) : QDialog(p,Qt::WindowStaysOnTopHint)
{
replace = false;
QPushButton *b;
QToolButton *t;
QHBoxLayout *m = new QHBoxLayout(this), *a;
QVBoxLayout *o = new QVBoxLayout; m->addLayout(o);
optDialog = new OptionDialog(this);
stlDialog = new StyleDialog(this);
datDialog = new DataDialog(this);
type = new QComboBox(this); o->addWidget(type);
type->setToolTip(_("Groups of MGL commands"));
fillList();
name = new QComboBox(this); o->addWidget(name);
name->setToolTip(_("MGL commands for selected group"));
name->addItems(argn[0]);
info = new QLabel(this); o->addWidget(info);
info->setToolTip(_("Short description of selected command"));
kind= new QComboBox(this); o->addWidget(kind); kind->addItem("");
kind->setToolTip(_("Kind of command argument order. The notation is:\n"
" * Capital arguments are data (like, Ydat);\n"
" * Argument in '' are strings (like, 'fmt');\n"
" * Other arguments are numbers (like, zval);\n"
" * Arguments in [] are optional arguments."));
args = new QTableWidget(this); o->addWidget(args);
args->setToolTip(_("Command arguments. Bold ones are required arguments.\n"
"Other are optional arguments but its order is required.\n"
"You can use '' for default format. See help at right\nfor default values."));
QStringList sl; sl<<_("Argument")<<_("Value");
args->setHorizontalHeaderLabels(sl);
connect(args,SIGNAL(cellDoubleClicked(int,int)), this, SLOT(insertData()));
a = new QHBoxLayout; o->addLayout(a);
b = new QPushButton(_("Options"),this); a->addWidget(b);
b->setToolTip(_("Here you can specify command options.\nOptions are used for additional plot tunning."));
connect(b, SIGNAL(clicked()),this,SLOT(insertOpt()));
opt = new QLineEdit(this); a->addWidget(opt);
a = new QHBoxLayout; o->addLayout(a);
b = new QPushButton(_("Cancel"),this); a->addWidget(b);
connect(b, SIGNAL(clicked()), this, SLOT(reject()));
b = new QPushButton(_("OK"),this); a->addWidget(b);
connect(b, SIGNAL(clicked()), this, SLOT(finish()));
o = new QVBoxLayout; m->addLayout(o,1);
a = new QHBoxLayout; o->addLayout(a);
help = new QTextBrowser(this); help->setMinimumWidth(500);
help->setOpenExternalLinks(false); o->addWidget(help);
t = new QToolButton(p); t->setIcon(QPixmap(":/png/go-previous.png"));
connect(t, SIGNAL(clicked()), help, SLOT(backward())); a->addWidget(t);
t = new QToolButton(p); t->setIcon(QPixmap(":/png/go-next.png"));
connect(t, SIGNAL(clicked()), help, SLOT(forward())); a->addWidget(t);
a->addStretch(1);
t = new QToolButton(p); t->setIcon(QPixmap(":/png/zoom-in.png"));
connect(t, SIGNAL(clicked()), this, SLOT(zoomIn())); a->addWidget(t);
t = new QToolButton(p); t->setIcon(QPixmap(":/png/zoom-out.png"));
connect(t, SIGNAL(clicked()), this, SLOT(zoomOut())); a->addWidget(t);
connect(type, SIGNAL(currentIndexChanged(int)),this,SLOT(typeChanged(int)));
connect(name, SIGNAL(currentIndexChanged(int)),this,SLOT(nameChanged(int)));
connect(kind, SIGNAL(currentIndexChanged(int)),this,SLOT(kindChanged(int)));
type->setCurrentIndex(0); typeChanged(0);
setWindowTitle(_("New command"));
}
//-----------------------------------------------------------------------------
void NewCmdDialog::zoomIn()
{ QFont f(help->font()); f.setPointSize(f.pointSize()+1); help->setFont(f); }
//-----------------------------------------------------------------------------
void NewCmdDialog::zoomOut()
{ QFont f(help->font()); f.setPointSize(f.pointSize()-1); help->setFont(f); }
//-----------------------------------------------------------------------------
void NewCmdDialog::parseCmd(const QString &txt)
{
QString str = txt.trimmed().section(':',0,0);
#if (QT_VERSION_MAJOR>5)
QRegularExpression sep("[ \t]");
#else
QRegExp sep("[ \t]");
#endif
QString cmd = str.section(sep,0,0),a,b;
bool opt,var,chr;
replace = false;
for(int i=0;i<17;i++)
{
if(cmds[i].contains(cmd)) // find command first
{
typeChanged(i);
name->setCurrentIndex(cmds[i].indexOf(cmd));
int j0=-1,k0=-1,k;
for(int j=0;j<NUM_CH;j++) // determine set of arguments
{
if(argn[j].isEmpty()) break;
bool ok=true;
for(k=0;k<argn[j].count();k++)
{
a = argn[j].at(k); opt = (a[0]=='_' || a[0]=='+');
chr = (a[0]=='\'' || (opt && a[1]=='\''));
var = (a[0].isUpper() || (opt && a[1].isUpper()));
b = str.section(sep,k+1,k+1).trimmed();
if(b.isEmpty()) break;
if(b[0].isDigit() && (chr || var)) { ok=false; break; }
if(b[0]=='\'' && !chr) { ok=false; break; }
}
if(ok && (j0<0 || k>k0)) { j0=j; k0=k; }
}
if(j0>=0) // best choice
{
kind->setCurrentIndex(j0);
for(int k=0;k<argn[j0].count();k++)
args->item(k,1)->setText(str.section(sep,k+1,k+1).trimmed());
}
replace = true; return; // selection is done
}
}
}
//-----------------------------------------------------------------------------
#include "xpm/preview.xpm"
#include "xpm/text.xpm"
#include "xpm/table.xpm"
#include "xpm/oper_dir.xpm"
#include "xpm/axis.xpm"
#include "xpm/axis_sh.xpm"
#include "xpm/plot.xpm"
#include "xpm/box.xpm"
#include "xpm/curve.xpm"
#include "xpm/other.xpm"
#include "xpm/vect.xpm"
#include "xpm/tiles.xpm"
//-----------------------------------------------------------------------------
void NewCmdDialog::fillList()
{
type->addItem(QPixmap(plot_xpm), _("1D plots"));
type->addItem(QPixmap(preview_xpm), _("2D plots"));
type->addItem(QPixmap(":/png/weather-clouds.png"), _("3D plots"));
type->addItem(QPixmap(tiles_xpm), _("Dual plots"));
type->addItem(QPixmap(vect_xpm), _("Vector plots"));
type->addItem(QPixmap(other_xpm), _("Other plots"));
type->addItem(QPixmap(text_xpm), _("Text and legend"));
type->addItem(QPixmap(table_xpm), _("Create data and I/O"));
type->addItem(QPixmap(oper_dir_xpm), _("Data transform"));
type->addItem(QPixmap(oper_dir_xpm), _("Data handling"));
type->addItem(QPixmap(axis_xpm), _("Axis and colorbar"));
type->addItem(QPixmap(axis_sh_xpm), _("Axis setup"));
type->addItem(QPixmap(":/png/preferences-system.png"), _("General setup"));
type->addItem(QPixmap(box_xpm), _("Scale and rotate"));
type->addItem(QPixmap(":/png/media-playback-start.png"), _("Program flow"));
type->addItem(QPixmap(curve_xpm), _("Primitives"));
// now fill it automatically from parser for all categories
long i, n = parser.GetCmdNum();
for(i=0;i<n;i++)
{
const char *name = parser.GetCmdName(i);
switch(parser.CmdType(name))
{
case 1: cmds[5]<<name; break;
case 2: cmds[5]<<name; break;
case 3: cmds[12]<<name; break;
case 4: cmds[9]<<name; break;
case 5: cmds[7]<<name; break;
case 6: cmds[13]<<name; break;
case 7: cmds[14]<<name; break;
case 8: cmds[0]<<name; break;
case 9: cmds[1]<<name; break;
case 10: cmds[2]<<name; break;
case 11: cmds[3]<<name; break;
case 12: cmds[4]<<name; break;
case 13: cmds[10]<<name; break;
case 14: cmds[15]<<name; break;
case 15: cmds[11]<<name; break;
case 16: cmds[6]<<name; break;
case 17: cmds[8]<<name; break;
}
}
}
//-----------------------------------------------------------------------------
void NewCmdDialog::typeChanged(int s)
{
if(s<0 || s>16) return;
name->clear(); name->addItems(cmds[s]); name->setCurrentIndex(0);
}
//-----------------------------------------------------------------------------
void parse(QStringList &sl, const QString &s)
{
sl.clear();
int i, ex=0, i1=0;
bool op=false, sp=true;
for(i=0;i<s.length();i++)
{
if(s[i].isLetterOrNumber() || s[i]=='\'' || s[i]=='(' || s[i]==')' || s[i]=='_')
{ if(sp) i1=i; sp = false; }
else
{
QString p;
if(op) p="_"; else if(ex) p="+";
if(!sp) sl<<p+s.mid(i1,i-i1);
sp = true;
if(s[i]=='{') ex++;
if(s[i]=='}') ex--;
if(s[i]=='[') op=true;
}
}
if(!sp) sl<<s.mid(i1);
}
//-----------------------------------------------------------------------------
void NewCmdDialog::nameChanged(int s)
{
QString n=name->itemText(s), par, a;
int k;
if(n.isEmpty()) return;
QStringList ss; ss<<(pathHelp);
help->setSearchPaths(ss);
help->setSource(_("mgl_en")+QString(".html#")+n);
// clear old
kind->clear(); kinds.clear(); for(k=0;k<NUM_CH;k++) argn[k].clear();
// try to find the keyword
QByteArray qcmd = n.toLatin1();
const char *cmd = qcmd.constData();
if(!parser.CmdType(cmd)) return;
info->setText(parser.CmdDesc(cmd));
par = parser.CmdFormat(cmd);
int i0 = par.indexOf(' '); // first space if present
if(i0<0) { kind->addItem(par); return; } // no arguments
// parse kind of arguments
par = par.mid(i0);
for(k=0;k<NUM_CH;k++)
{
a = par.section('|',k,k);
if(a.isEmpty()) break;
a=a.trimmed();
kinds<<n+" "+a;
parse(argn[k],a);
}
kind->addItems(kinds); kind->setCurrentIndex(0); replace = false;
}
//-----------------------------------------------------------------------------
void NewCmdDialog::kindChanged(int s)
{
if(s<0 || s>NUM_CH-1) return;
cmd="";
int nn = argn[s].count();
QStringList lst;
for(int i=0;i<args->rowCount();i++)
lst<<args->item(i,0)->text()+"~ "+args->item(i,1)->text();
//return;
args->setRowCount(nn); args->setColumnCount(2);
QTableWidgetItem *it;
QFont f;
for(int i=0;i<nn;i++)
{
it = new QTableWidgetItem; args->setItem(i,0,it);
it = new QTableWidgetItem; args->setItem(i,1,it);
QString a = argn[s].at(i);
bool optional = (a[0]=='_' || a[0]=='+'); if(optional) a=a.mid(1);
f.setItalic(a[0].isUpper()); f.setBold(!optional);
args->item(i,0)->setText(a); args->item(i,0)->setFont(f);
args->item(i,0)->setFlags(Qt::ItemIsEnabled);
args->item(i,1)->setFlags(Qt::ItemIsEditable|Qt::ItemIsEnabled);
for(int j=0;j<lst.count();j++)
if(lst[j].section('~',0,0)==a)
args->item(i,1)->setText(lst[j].section('~',1).trimmed());
}
}
//-----------------------------------------------------------------------------
void NewCmdDialog::insertOpt()
{ if(optDialog->exec()) opt->setText(optDialog->getOption()); }
//-----------------------------------------------------------------------------
void NewCmdDialog::insertData()
{
int row = args->currentRow();
if(row<0)
{
QMessageBox::warning(this,_("New command"), _("No argument is selected"));
return;
}
QString a = args->item(row,0)->text();
if(a[0].isUpper())
{
if(datDialog->exec()) args->item(row,1)->setText(datDialog->getData());
}
else if(a=="'fmt'" || a=="_'fmt'")
{
if(stlDialog->exec()) args->item(row,1)->setText(stlDialog->getStyle());
}
else if(a=="'file'")
{
QString str = QFileDialog::getOpenFileName(this, _("UDAV - Insert filename"));
if(!str.isEmpty()) args->item(row,1)->setText(str);
}
else if(a=="'path'")
{
QString str = QFileDialog::getExistingDirectory(this, _("UDAV - Insert path"));
if(!str.isEmpty()) args->item(row,1)->setText(str);
}
}
//-----------------------------------------------------------------------------
void NewCmdDialog::insertStl()
{
int s=kind->currentIndex();
if(s<0 || s>4)
{ QMessageBox::warning(this,_("New command"),
_("Select first the proper kind of arguments"));
return; }
if(!argn[s].contains("'fmt'") && !argn[s].contains("_'fmt'"))
{ QMessageBox::warning(this,_("New command"),
_("There is no 'fmt' argument for this command"));
return; }
int i;
i = argn[s].indexOf("'fmt'");
if(i<0) i = argn[s].indexOf("_'fmt'");
if(!stlDialog->exec()) args->item(i,1)->setText(stlDialog->getStyle());
}
//-----------------------------------------------------------------------------
void NewCmdDialog::finish()
{
QString txt,cur;
int s = kind->currentIndex();
if(s<0 || s>4)
{ QMessageBox::warning(this,_("New command"),
_("Select first the proper kind of arguments"));
cmd=""; return; }
cmd = name->currentText();
int n = argn[s].count(), i;
bool op=false;
for(i=0;i<n;i++)
{
cur = argn[s].at(i);
txt = args->item(i,1)->text();
if(txt.isEmpty())
{
if(cur[0]!='_' && cur[0]!='+')
{ QMessageBox::warning(this,_("New command"),
_("You should specify required argument ")+cur);
cmd=""; return; }
if(argn[s].at(i)[0]=='_') op = true;
}
else
{
if(cur[0]=='\'' && txt[0]!='\'')
{ QMessageBox::warning(this,_("New command"),
_("You should put text inside ' ' for argument ")+cur);
cmd=""; return; }
if(cur[1]=='\'' && txt[0]!='\'')
{ QMessageBox::warning(this,_("New command"),
_("You should put text inside ' ' for argument ")+cur.mid(1));
cmd=""; return; }
if(cur[0]=='_' && op)
{ QMessageBox::warning(this,_("New command"),
_("You should specify all optional arguments before ")+cur.mid(1));
cmd=""; return; }
cmd = cmd + ' ' + txt;
}
}
cmd = cmd + opt->text(); accept(); emit result(cmd, replace);
}
//-----------------------------------------------------------------------------
|