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
|
// SPDX-FileCopyrightText: 2003 Dominique Devriese <devriese@kde.org>
// SPDX-License-Identifier: GPL-2.0-or-later
#include "script_mode.h"
#include "newscriptwizard.h"
#include "python_scripter.h"
#include "python_type.h"
#include "../kig/kig_commands.h"
#include "../kig/kig_part.h"
#include "../kig/kig_view.h"
#include "../misc/calcpaths.h"
#include "../misc/kigpainter.h"
#include "../modes/dragrectmode.h"
#include "../objects/bogus_imp.h"
#include "../objects/object_factory.h"
#include "../objects/object_imp.h"
#include <KMessageBox>
#include <KIconLoader>
void ScriptModeBase::dragRect(const QPoint &p, KigWidget &w)
{
if (mwawd != SelectingArgs)
return;
DragRectMode dm(p, mdoc, w);
mdoc.runMode(&dm);
std::vector<ObjectHolder *> ret = dm.ret();
KigPainter pter(w.screenInfo(), &w.stillPix, mdoc.document());
if (dm.needClear()) {
std::vector<ObjectHolder *> tmp(margs.begin(), margs.begin());
pter.drawObjects(tmp, false);
margs.clear();
}
std::copy(ret.begin(), ret.end(), std::inserter(margs, margs.begin()));
pter.drawObjects(ret, true);
w.updateCurPix(pter.overlay());
w.updateWidget();
}
void ScriptModeBase::leftClickedObject(ObjectHolder *o, const QPoint &, KigWidget &w, bool)
{
std::list<ObjectHolder *>::iterator dup_o;
if (mwawd != SelectingArgs)
return;
KigPainter pter(w.screenInfo(), &w.stillPix, mdoc.document());
if ((dup_o = std::find(margs.begin(), margs.end(), o)) != margs.end()) {
margs.erase(dup_o);
pter.drawObject(o, false);
} else {
margs.push_back(o);
pter.drawObject(o, true);
};
w.updateCurPix(pter.overlay());
w.updateWidget();
}
void ScriptModeBase::mouseMoved(const std::vector<ObjectHolder *> &os, const QPoint &pt, KigWidget &w, bool)
{
if (mwawd != SelectingArgs)
return;
w.updateCurPix();
if (os.empty()) {
w.setCursor(Qt::ArrowCursor);
mdoc.emitStatusBarText(0);
w.updateWidget();
} else {
// the cursor is over an object, show object type next to cursor
// and set statusbar text
w.setCursor(Qt::PointingHandCursor);
QString selectstat = os.front()->selectStatement();
// statusbar text
mdoc.emitStatusBarText(selectstat);
KigPainter p(w.screenInfo(), &w.curPix, mdoc.document());
// set the text next to the arrow cursor
QPoint point = pt;
point.setX(point.x() + 15);
p.drawTextStd(point, selectstat);
w.updateWidget(p.overlay());
}
}
ScriptModeBase::ScriptModeBase(KigPart &doc)
: BaseMode(doc)
, mwizard(0)
, mpart(doc)
, mwawd(SelectingArgs)
{
mwizard = new NewScriptWizard(doc.widget(), this, KIconLoader::global());
doc.redrawScreen();
}
ScriptModeBase::~ScriptModeBase()
{
}
void ScriptModeBase::killMode()
{
mdoc.doneMode(this);
}
bool ScriptCreationMode::queryCancel()
{
killMode();
return true;
}
void ScriptModeBase::argsPageEntered()
{
mwawd = SelectingArgs;
mdoc.redrawScreen();
}
void ScriptModeBase::enableActions()
{
KigMode::enableActions();
// we don't enable any actions..
}
void ScriptModeBase::codePageEntered()
{
QString wizardText{mwizard->text()};
if (wizardText.isEmpty()) {
// insert template code..
wizardText = ScriptType::templateCode(mtype, margs);
} else {
ScriptType::updateCodeFunction(mtype, margs, wizardText);
}
mwizard->setText(wizardText);
mwawd = EnteringCode;
mdoc.redrawScreen();
}
void ScriptModeBase::redrawScreen(KigWidget *w)
{
std::vector<ObjectHolder *> sel;
if (mwawd == SelectingArgs)
sel = std::vector<ObjectHolder *>(margs.begin(), margs.end());
w->redrawScreen(sel);
w->updateScrollBars();
}
bool ScriptCreationMode::queryFinish()
{
std::vector<ObjectCalcer *> args;
QString script = mwizard->text();
args.push_back(new ObjectConstCalcer(new StringImp(script)));
ObjectTypeCalcer *compiledscript = new ObjectTypeCalcer(PythonCompileType::instance(), args);
compiledscript->calc(mdoc.document());
args.clear();
args.push_back(compiledscript);
for (std::list<ObjectHolder *>::iterator i = margs.begin(); i != margs.end(); ++i)
args.push_back((*i)->calcer());
ObjectTypeCalcer::shared_ptr reto = new ObjectTypeCalcer(PythonExecuteType::instance(), args);
reto->calc(mdoc.document());
if (reto->imp()->inherits(InvalidImp::stype())) {
PythonScripter *inst = PythonScripter::instance();
QByteArray errtrace = inst->lastErrorExceptionTraceback().c_str();
if (inst->errorOccurred()) {
KMessageBox::detailedError(mwizard,
i18n("The Python interpreter caught an error during the execution of your "
"script. Please fix the script and click the Finish button again."),
i18n("The Python Interpreter generated the following error output:\n%1", QString(errtrace)));
} else {
KMessageBox::error(mwizard,
i18n("There seems to be an error in your script. The Python interpreter "
"reported no errors, but the script does not generate "
"a valid object. Please fix the script, and click the Finish button "
"again."));
}
return false;
} else {
if (reto->imp()->inherits(DoubleImp::stype()) || reto->imp()->inherits(IntImp::stype())) {
/*
* if the python script returns a DoubleImp (IntImp) we need a way to let the user
* interact with the result. We do this by adding a text label (located at
* the origin) that contains the DoubleImp (IntImp) value.
*/
QString s = QStringLiteral("%1");
Coordinate coord = Coordinate(0., 0.);
bool needframe = false;
std::vector<ObjectCalcer *> args;
args.push_back(reto.get());
ObjectHolder *label = 0;
label = ObjectFactory::instance()->label(s, coord, needframe, args, mdoc.document());
mdoc.addObject(label);
} else if (reto->imp()->inherits(StringImp::stype())) {
/*
* if the python script returns a StringImp we need a way to let the user
* interact with the result, see above.
*/
QString s = QStringLiteral("%1");
Coordinate coord = Coordinate(0., 0.);
bool needframe = false;
std::vector<ObjectCalcer *> args;
args.push_back(reto.get());
ObjectHolder *label = 0;
label = ObjectFactory::instance()->label(s, coord, needframe, args, mdoc.document());
mdoc.addObject(label);
} else
mdoc.addObject(new ObjectHolder(reto.get()));
killMode();
return true;
}
}
void ScriptModeBase::midClicked(const QPoint &, KigWidget &)
{
}
void ScriptModeBase::rightClicked(const std::vector<ObjectHolder *> &, const QPoint &, KigWidget &)
{
}
void ScriptModeBase::setScriptType(ScriptType::Type type)
{
mtype = type;
mwizard->setType(mtype);
}
void ScriptModeBase::addArgs(const std::vector<ObjectHolder *> &obj, KigWidget &w)
{
KigPainter pter(w.screenInfo(), &w.stillPix, mdoc.document());
std::copy(obj.begin(), obj.end(), std::inserter(margs, margs.begin()));
pter.drawObjects(obj, true);
w.updateCurPix(pter.overlay());
w.updateWidget();
}
void ScriptModeBase::goToCodePage()
{
mwizard->next();
}
ScriptCreationMode::ScriptCreationMode(KigPart &doc)
: ScriptModeBase(doc)
{
mwizard->show();
}
ScriptCreationMode::~ScriptCreationMode()
{
}
ScriptEditMode::ScriptEditMode(ObjectTypeCalcer *exec_calc, KigPart &doc)
: ScriptModeBase(doc)
, mexecuted(exec_calc)
{
mwawd = EnteringCode;
mexecargs = mexecuted->parents();
assert(mexecargs.size() >= 1);
mcompiledargs = mexecargs[0]->parents();
assert(mcompiledargs.size() == 1);
const ObjectImp *imp = static_cast<ObjectConstCalcer *>(mcompiledargs[0])->imp();
assert(dynamic_cast<const StringImp *>(imp));
// save the original script text, in case the user modifies the text
// in the editor and aborts the editing
morigscript = static_cast<const StringImp *>(imp)->data();
mwizard->setWindowTitle(i18nc("@title:window 'Edit' is a verb", "Edit Script"));
mwizard->setText(morigscript);
mwizard->show();
mwizard->next();
mwizard->button(QWizard::BackButton)->setEnabled(false);
}
ScriptEditMode::~ScriptEditMode()
{
}
bool ScriptEditMode::queryFinish()
{
MonitorDataObjects mon(mcompiledargs);
static_cast<ObjectConstCalcer *>(mcompiledargs[0])->switchImp(new StringImp(mwizard->text()));
mexecargs[0]->calc(mpart.document());
mexecuted->calc(mpart.document());
mpart.redrawScreen();
KigCommand *comm = new KigCommand(mpart, i18n("Edit Python Script"));
mon.finish(comm);
if (mexecuted->imp()->inherits(InvalidImp::stype())) {
PythonScripter *inst = PythonScripter::instance();
QByteArray errtrace = inst->lastErrorExceptionTraceback().c_str();
if (inst->errorOccurred()) {
KMessageBox::detailedError(mwizard,
i18n("The Python interpreter caught an error during the execution of your "
"script. Please fix the script."),
i18n("The Python Interpreter generated the following error output:\n%1", QString(errtrace)));
} else {
KMessageBox::error(mwizard,
i18n("There seems to be an error in your script. The Python interpreter "
"reported no errors, but the script does not generate "
"a valid object. Please fix the script."));
}
delete comm;
return false;
}
mpart.history()->push(comm);
mpart.setModified(true);
killMode();
return true;
}
bool ScriptEditMode::queryCancel()
{
// reverting the original script text
static_cast<ObjectConstCalcer *>(mcompiledargs[0])->switchImp(new StringImp(morigscript));
mexecargs[0]->calc(mpart.document());
mexecuted->calc(mpart.document());
// paranoic check
assert(!mexecuted->imp()->inherits(InvalidImp::stype()));
mpart.redrawScreen();
// no need to further checks here, as the original script text is ok
killMode();
return true;
}
|