|
|
|
@ -60,19 +60,19 @@ PythonSupportPart::PythonSupportPart(TQObject *parent, const char *name, const T
|
|
|
|
|
|
|
|
|
|
TDEAction *action;
|
|
|
|
|
|
|
|
|
|
action = new TDEAction( i18n("Execute Program"), "exec", 0,
|
|
|
|
|
action = new TDEAction( i18n("Execute Program"), "application-x-executable", 0,
|
|
|
|
|
this, TQT_SLOT(slotExecute()),
|
|
|
|
|
actionCollection(), "build_exec" );
|
|
|
|
|
action->setToolTip( i18n("Execute program") );
|
|
|
|
|
action->setWhatsThis(i18n("<b>Execute program</b><p>Runs the Python program."));
|
|
|
|
|
|
|
|
|
|
action = new TDEAction( i18n("Execute String..."), "exec", 0,
|
|
|
|
|
action = new TDEAction( i18n("Execute String..."), "application-x-executable", 0,
|
|
|
|
|
this, TQT_SLOT(slotExecuteString()),
|
|
|
|
|
actionCollection(), "build_execstring" );
|
|
|
|
|
action->setToolTip( i18n("Execute string") );
|
|
|
|
|
action->setWhatsThis(i18n("<b>Execute String</b><p>Executes a string as Python code."));
|
|
|
|
|
|
|
|
|
|
action = new TDEAction( i18n("Start Python Interpreter"), "exec", 0,
|
|
|
|
|
action = new TDEAction( i18n("Start Python Interpreter"), "application-x-executable", 0,
|
|
|
|
|
this, TQT_SLOT(slotStartInterpreter()),
|
|
|
|
|
actionCollection(), "build_runinterpreter" );
|
|
|
|
|
action->setToolTip( i18n("Start Python interpreter") );
|
|
|
|
|