]> git.lyx.org Git - lyx.git/blobdiff - src/support/SystemcallPrivate.h
Reorder a bit status messages, but they are still cleared at the end of LyXFunc
[lyx.git] / src / support / SystemcallPrivate.h
index ff4afed0ea88419bb2f2d8505b62b624c4776aff..4fee2c698bce075604c8d9ee770475245ca66e85 100644 (file)
@@ -34,10 +34,10 @@ public:
        ~SystemcallPrivate();
 
        /// Should the standard output be displayed?
-       void showout() { showout_ = true; }
+       void setShowOut(bool val) { showout_ = val; }
 
        /// Should the standard error be displayed?
-       void showerr() { showerr_ = true; }
+       void setShowErr(bool val) { showerr_ = val; }
 
        enum State {
                Starting,
@@ -80,8 +80,11 @@ private:
        bool showout_;
        /// 
        bool showerr_;
+       bool process_events;
+       QString cmd_;
 
        void waitAndProcessEvents();
+       void processEvents();
 
        void killProcess();
 
@@ -92,6 +95,8 @@ public Q_SLOTS:
        void processStarted();
        void processFinished(int, QProcess::ExitStatus status);
 
+Q_SIGNALS:
+
 };
 
 } // namespace support