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
|
/**
*
* This file is part of Tulip (www.tulip-software.org)
*
* Authors: David Auber and the Tulip development Team
* from LaBRI, University of Bordeaux 1 and Inria Bordeaux - Sud Ouest
*
* Tulip is free software; you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License
* as published by the Free Software Foundation, either version 3
* of the License, or (at your option) any later version.
*
* Tulip 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.
*
*/
#include "PythonInterpreter.h"
#include "PluginCreationDialog.h"
#include <QtCore/QDate>
#include <QtGui/QFileDialog>
#include <QtGui/QMessageBox>
#include <iostream>
PluginCreationDialog::PluginCreationDialog(QWidget *parent) : QDialog(parent) {
setupUi(this);
setModal(true);
connect(okButton, SIGNAL(clicked()), this, SLOT(validateForm()));
connect(cancelButton, SIGNAL(clicked()), this, SLOT(reject()));
connect(browseButton, SIGNAL(clicked()), this, SLOT(selectPluginSourceFile()));
QDate currentDate = QDate::currentDate();
date->setText(currentDate.toString("dd/MM/yyyy"));
}
void PluginCreationDialog::validateForm() {
if (pluginFileName->text().isEmpty()) {
QMessageBox::critical(this, "Error", "No file has been selected to save the plugin source code.");
return;
}
QString moduleName = pluginFileName->text().mid(pluginFileName->text().lastIndexOf("/")+1);
moduleName = moduleName.mid(0, moduleName.length() - 3);
if (moduleName.at(0).isNumber()) {
QMessageBox::critical(this, "Error", "Python does not allow a module name to begin with a number.");
return;
}
if (moduleName.contains(" ")) {
QMessageBox::critical(this, "Error", "The Python module name can not contain any whitespace.");
return;
}
int i = 0;
while (pythonReservedCharacters[i]) {
if (moduleName.contains(pythonReservedCharacters[i++])) {
QMessageBox::critical(this, "Error", "The Python module name contains an invalid character.");
return;
}
}
if (pluginClassName->text().isEmpty()) {
QMessageBox::critical(this, "Error", "No class name has been provided for the plugin.");
return;
}
if (pluginClassName->text().at(0).isNumber()) {
QMessageBox::critical(this, "Error", "Python does not allow a class name to begin with a number.");
return;
}
if (pluginClassName->text().contains(" ")) {
QMessageBox::critical(this, "Error", "The Python class name can not contain any whitespace.");
return;
}
i = 0;
while (pythonReservedCharacters[i]) {
if (pluginClassName->text().contains(pythonReservedCharacters[i++])) {
QMessageBox::critical(this, "Error", "The Python class name contains an invalid character.");
return;
}
}
if (pluginName->text().isEmpty()) {
QMessageBox::critical(this, "Error", "No name has been provided for the plugin.");
return;
}
accept();
}
void PluginCreationDialog::selectPluginSourceFile() {
QString fileName = QFileDialog::getSaveFileName(this, tr("Set Plugin source filen"),"","Python script (*.py)");
if (fileName.isEmpty())
return;
if (!fileName.endsWith(".py"))
fileName += ".py";
pluginFileName->setText(fileName);
}
QString PluginCreationDialog::getPluginFileName() const {
return pluginFileName->text();
}
QString PluginCreationDialog::getPluginType() const {
return pluginType->currentText();
}
QString PluginCreationDialog::getPluginClassName() const {
return pluginClassName->text();
}
QString PluginCreationDialog::getPluginName() const {
return pluginName->text();
}
QString PluginCreationDialog::getPluginAuthor() const {
return author->text();
}
QString PluginCreationDialog::getPluginDate() const {
return date->text();
}
QString PluginCreationDialog::getPluginInfos() const {
return infos->text();
}
QString PluginCreationDialog::getPluginRelease() const {
return release->text();
}
QString PluginCreationDialog::getPluginGroup() const {
return group->text();
}
|