44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
-
+
-
+
-
+
-
+
|
}
- (void)setDoubleClickInterval: (int)doubleClickInterval
{
[self qApplication]->setDoubleClickInterval(doubleClickInterval);
}
- (QSize)globalStrut
- (of_dimension_t)globalStrut
{
return [self qApplication]->globalStrut();
return QToOFDimension([self qApplication]->globalStrut());
}
- (void)setGlobalStrut: (QSize)globalStrut
- (void)setGlobalStrut: (of_dimension_t)globalStrut
{
[self qApplication]->setGlobalStrut(globalStrut);
[self qApplication]->setGlobalStrut(OFToQSize(globalStrut));
}
- (int)keyboardInputInterval
{
return [self qApplication]->keyboardInputInterval();
}
|