127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
|
- (of_dimension_t)iconSize
{
return toOF(toQt(self)->iconSize());
}
- (void)setIconSize: (of_dimension_t)iconSize
{
toQt(self)->setIconSize(toQt(iconSize));
}
- (QKeySequence)shortcut
{
return toQt(self)->shortcut();
}
|
|
|
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
|
- (of_dimension_t)iconSize
{
return toOF(toQt(self)->iconSize());
}
- (void)setIconSize: (of_dimension_t)iconSize
{
toQt(self)->setIconSize(toQt(iconSize).toSize());
}
- (QKeySequence)shortcut
{
return toQt(self)->shortcut();
}
|