更改QComboBox项的光标形状

时间:2017-06-13 14:49:04

标签: c++ qt qt5 qcombobox qcursor

我想为QComboBox及其项目设置光标形状。由于setCursor仅影响LineEdit的{​​{1}}部分,如何访问项目视图以更改光标形状?

QComboBox

我们使用Qt 5.5.1

1 个答案:

答案 0 :(得分:3)

此代码有效:

halide_dimension_t result_shape[3] =
    { { 2, size_x - 3, 1 }
    , { 2, size_y - 3, size_x + 1 }
    , { 2, size_z - 3, (size_y + 1) * (size_x + 1) }
    };
Halide::Runtime::Buffer< float > result_buffer( result_cpp_array, 3, result_shape );
result_buffer.set_host_dirty();

请参阅Qt Event Filters