14 #include "xrubysupport.h"
15 #include "xrubythreadconnector.h"
16 #include "xrubythread.h"
17 #include <QPushButton>
19 #include <QTextBrowser>
21 #include "ui_rubythreadtool.h"
22 #include "icons/icon.h"
24 XRubyThreadConnector::XRubyThreadConnector(
26 const shared_ptr<XRuby> &rbsupport) :
31 m_rubyThread(rbthread),
32 m_rubySupport(rbsupport),
34 rbthread->filename(), form->m_plblFilename)),
36 rbthread->status(), form->m_plblStatus)),
38 m_resume, (form->m_pbtnResume))),
40 m_kill, form->m_pbtnKill)),
42 rbthread->lineinput(), form->m_edLineinput)) {
44 form->m_pbtnResume->setIcon(
45 QApplication::style()->standardIcon(QStyle::SP_MediaPlay));
46 form->m_pbtnKill->setIcon(
47 QApplication::style()->standardIcon(QStyle::SP_BrowserStop));
49 m_pForm->m_ptxtDefout->setReadOnly(
true);
50 m_pForm->m_ptxtDefout->setOpenLinks(
false);
51 m_pForm->m_ptxtDefout->setOpenExternalLinks(
false);
54 m_lsnOnResumeTouched = tr[ *m_resume].onTouch().connectWeakly(
55 shared_from_this(), &XRubyThreadConnector::onResumeTouched);
58 m_lsnOnKillTouched = tr[ *m_kill].onTouch().connectWeakly(
59 shared_from_this(), &XRubyThreadConnector::onKillTouched);
62 m_lsnOnDefout = tr[ *rbthread].onMessageOut().connectWeakly(
63 shared_from_this(), &XRubyThreadConnector::onDefout, XListener::FLAG_MAIN_THREAD_CALL);
64 m_lsnOnStatusChanged = tr[ *rbthread->status()].onValueChanged().connectWeakly(
65 shared_from_this(), &XRubyThreadConnector::onStatusChanged);
67 onStatusChanged(shot, rbthread->status().get());
69 form->setWindowIcon( *g_pIconScript);
70 form->setWindowTitle(rbthread->getLabel());
72 XRubyThreadConnector::~XRubyThreadConnector() {
74 m_pForm->m_ptxtDefout->clear();
77 m_rubySupport->release(m_rubyThread);
81 bool alive = m_rubyThread->isAlive();
82 m_kill->setUIEnabled(alive);
83 bool running = m_rubyThread->isRunning();
84 m_resume->setUIEnabled(alive && !running);
88 m_rubyThread->resume();
95 XRubyThreadConnector::onDefout(
const Snapshot &shot,
const shared_ptr<XString> &str) {
96 m_pForm->m_ptxtDefout->append( *str);