123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293 |
- // Qt includes
- #include <QApplication>
- #include <QTextStream>
- // CTK includes
- #include <ctkPythonShell.h>
- #include <ctkCommandLineParser.h>
- #include "ctkSimplePythonManager.h"
- #include "ctkTestWrappedQProperty.h"
- #include "ctkTestWrappedQInvokable.h"
- #include "ctkTestWrappedSlot.h"
- #include "ctkSimplePythonShellConfigure.h" // For CTK_WRAP_PYTHONQT_USE_VTK
- #ifdef CTK_WRAP_PYTHONQT_USE_VTK
- # include "ctkTestWrappedQListOfVTKObject.h"
- # include "ctkTestWrappedVTKSlot.h"
- # include "ctkTestWrappedVTKQInvokable.h"
- #endif
- int main(int argc, char** argv)
- {
- QApplication app(argc, argv);
- ctkCommandLineParser parser;
- // Use Unix-style argument names
- parser.setArgumentPrefix("--", "-");
- // Add command line argument names
- parser.addArgument("help", "h", QVariant::Bool, "Print usage information and exit.");
- parser.addArgument("interactive", "I", QVariant::Bool, "Enable interactive mode");
- // Parse the command line arguments
- bool ok = false;
- QHash<QString, QVariant> parsedArgs = parser.parseArguments(QCoreApplication::arguments(), &ok);
- if (!ok)
- {
- QTextStream(stderr, QIODevice::WriteOnly) << "Error parsing arguments: "
- << parser.errorString() << "\n";
- return EXIT_FAILURE;
- }
- // Show a help message
- if (parsedArgs.contains("help") || parsedArgs.contains("h"))
- {
- QTextStream(stdout, QIODevice::WriteOnly) << "ctkSimplePythonShell\n"
- << "Usage\n\n"
- << " ctkSimplePythonShell [options] [<path-to-python-script> ...]\n\n"
- << "Options\n"
- << parser.helpText();
- return EXIT_SUCCESS;
- }
-
- ctkSimplePythonManager pythonManager;
-
- ctkPythonShell shell(&pythonManager);
- shell.setAttribute(Qt::WA_QuitOnClose, true);
- shell.resize(600, 280);
- shell.show();
- shell.setProperty("isInteractive", parsedArgs.contains("interactive"));
- pythonManager.addObjectToPythonMain("_ctkPythonShellInstance", &shell);
- ctkTestWrappedQProperty testWrappedQProperty;
- pythonManager.addObjectToPythonMain("_testWrappedQPropertyInstance", &testWrappedQProperty);
- ctkTestWrappedQInvokable testWrappedQInvokable;
- pythonManager.addObjectToPythonMain("_testWrappedQInvokableInstance", &testWrappedQInvokable);
- ctkTestWrappedSlot testWrappedSlot;
- pythonManager.addObjectToPythonMain("_testWrappedSlotInstance", &testWrappedSlot);
- #ifdef CTK_WRAP_PYTHONQT_USE_VTK
- ctkTestWrappedVTKQInvokable testWrappedVTKQInvokable;
- pythonManager.addObjectToPythonMain("_testWrappedVTKQInvokableInstance", &testWrappedVTKQInvokable);
- ctkTestWrappedVTKSlot testWrappedVTKSlot;
- pythonManager.addObjectToPythonMain("_testWrappedVTKSlotInstance", &testWrappedVTKSlot);
- ctkTestWrappedQListOfVTKObject testWrappedQListOfVTKObject;
- pythonManager.addObjectToPythonMain("_testWrappedQListOfVTKObjectInstance", &testWrappedQListOfVTKObject);
- #endif
- foreach(const QString& script, parser.unparsedArguments())
- {
- pythonManager.executeFile(script);
- }
-
- return app.exec();
- }
|