]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/process.h
Don't create multiple parent-less top level frames in layout sample.
[wxWidgets.git] / include / wx / process.h
index 2f1027ae64d76cd3999892e66d4a53b7c97f4014..5a893a7ed5d486cffe42dd1ab9de3652f824ad34 100644 (file)
@@ -104,6 +104,15 @@ public:
                         wxInputStream *errStream);
 #endif // wxUSE_STREAMS
 
                         wxInputStream *errStream);
 #endif // wxUSE_STREAMS
 
+    // priority
+        // Sets the priority to the given value: see wxPRIORITY_XXX constants.
+        //
+        // NB: the priority can only be set before the process is created
+    void SetPriority(unsigned priority);
+
+        // Get the current priority.
+    unsigned GetPriority() const { return m_priority; }
+
     // implementation only - don't use!
     // --------------------------------
 
     // implementation only - don't use!
     // --------------------------------
 
@@ -116,6 +125,8 @@ protected:
     int m_id;
     long m_pid;
 
     int m_id;
     long m_pid;
 
+    unsigned m_priority;
+
 #if wxUSE_STREAMS
     // these streams are connected to stdout, stderr and stdin of the child
     // process respectively (yes, m_inputStream corresponds to stdout -- very
 #if wxUSE_STREAMS
     // these streams are connected to stdout, stderr and stdin of the child
     // process respectively (yes, m_inputStream corresponds to stdout -- very