ObjQt  Diff

Differences From Artifact [c9293dd1ab]:

To Artifact [117e62c463]:


17
18
19
20
21
22
23


24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
 * POSSIBILITY OF SUCH DAMAGE.
 */

#import "QtThread.h"



@implementation QtThread: QtObject
- initWithQObject: (QObject*)qObject
{
	OF_INVALID_INIT_METHOD
}

- initWithQThread: (QThread*)qThread
{
	return [super initWithQObject: qThread];
}

- (QThread*)qThread
{
	return qobject_cast<QThread*>(_qObject);
}

- (QAbstractEventDispatcher*)eventDispatcher
{
	return [self qThread]->eventDispatcher();
}

- (void)setEventDispatcher: (QAbstractEventDispatcher*)eventDispatcher
{
	[self qThread]->setEventDispatcher(eventDispatcher);
}

- (void)exitWithReturnCode: (int)returnCode
{
	[self qThread]->exit(returnCode);
}

- (bool)isFinished
{
	return [self qThread]->isFinished();
}

- (bool)isInterruptionRequested
{
	return [self qThread]->isInterruptionRequested();
}

- (bool)isRunning
{
	return [self qThread]->isRunning();
}

- (int)loopLevel
{
	return [self qThread]->loopLevel();
}

- (QThread::Priority)priority
{
	return [self qThread]->priority();
}

- (void)setPriority: (QThread::Priority)priority
{
	[self qThread]->setPriority(priority);
}

- (void)requestInterruption
{
	[self qThread]->requestInterruption();
}

- (unsigned int)stackSize
{
	return [self qThread]->stackSize();
}

- (void)setStackSize: (unsigned int)stackSize
{
	[self qThread]->setStackSize(stackSize);
}

- (bool)waitForMilliseconds: (unsigned long)time
{
	return [self qThread]->wait(time);
}

- (void)quit
{
	[self qThread]->quit();
}

- (void)startWithPriority: (QThread::Priority)priority
{
	[self qThread]->start(priority);
}

- (void)terminate
{
	[self qThread]->terminate();
}
@end







>
>



















|




|




|




|




|




|




|




|




|




|




|




|




|




|




|




|


17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
 * POSSIBILITY OF SUCH DAMAGE.
 */

#import "QtThread.h"

using ObjQt::toQt;

@implementation QtThread: QtObject
- initWithQObject: (QObject*)qObject
{
	OF_INVALID_INIT_METHOD
}

- initWithQThread: (QThread*)qThread
{
	return [super initWithQObject: qThread];
}

- (QThread*)qThread
{
	return qobject_cast<QThread*>(_qObject);
}

- (QAbstractEventDispatcher*)eventDispatcher
{
	return toQt(self)->eventDispatcher();
}

- (void)setEventDispatcher: (QAbstractEventDispatcher*)eventDispatcher
{
	toQt(self)->setEventDispatcher(eventDispatcher);
}

- (void)exitWithReturnCode: (int)returnCode
{
	toQt(self)->exit(returnCode);
}

- (bool)isFinished
{
	return toQt(self)->isFinished();
}

- (bool)isInterruptionRequested
{
	return toQt(self)->isInterruptionRequested();
}

- (bool)isRunning
{
	return toQt(self)->isRunning();
}

- (int)loopLevel
{
	return toQt(self)->loopLevel();
}

- (QThread::Priority)priority
{
	return toQt(self)->priority();
}

- (void)setPriority: (QThread::Priority)priority
{
	toQt(self)->setPriority(priority);
}

- (void)requestInterruption
{
	toQt(self)->requestInterruption();
}

- (unsigned int)stackSize
{
	return toQt(self)->stackSize();
}

- (void)setStackSize: (unsigned int)stackSize
{
	toQt(self)->setStackSize(stackSize);
}

- (bool)waitForMilliseconds: (unsigned long)time
{
	return toQt(self)->wait(time);
}

- (void)quit
{
	toQt(self)->quit();
}

- (void)startWithPriority: (QThread::Priority)priority
{
	toQt(self)->start(priority);
}

- (void)terminate
{
	toQt(self)->terminate();
}
@end