Searched defs:UITask (Results 1 - 2 of 2) sorted by relevance

/vbox/src/VBox/Frontends/VirtualBox/src/globals/
H A DUIThreadPool.h2 * VBox Qt GUI - UIThreadPool and UITask class declaration.
30 class UITask;
41 void sigTaskComplete(UITask *pTask);
50 void enqueueTask(UITask *pTask);
59 UITask* dequeueTask(UIThreadWorker *pWorker);
64 void sltHandleTaskComplete(UITask *pTask);
89 QQueue<UITask*> m_tasks;
110 class UITask : public QObject class in inherits:QObject
117 void sigComplete(UITask *pTask);
122 UITask(cons
[all...]
H A DUIThreadPool.cpp3 * VBox Qt GUI - UIThreadPool and UITask class implementation.
114 void UIThreadPool::enqueueTask(UITask *pTask)
119 connect(pTask, SIGNAL(sigComplete(UITask*)), this, SLOT(sltHandleTaskComplete(UITask*)), Qt::QueuedConnection);
193 UITask* UIThreadPool::dequeueTask(UIThreadWorker *pWorker)
208 UITask *pTask = m_tasks.dequeue();
238 void UIThreadPool::sltHandleTaskComplete(UITask *pTask)
258 UITask::UITask(const QVariant &data) function in class:UITask
263 const QVariant& UITask
[all...]

Completed in 108 milliseconds