QTextEdit
クラスから派生した複雑なリッチ テキスト エディターを作成しています。埋め込みテーブルにさまざまな書式を挿入、サイズ変更、および適用できる必要があります。
列幅を設定する関数を見つけました(setColumnWidthConstraints)。しかし、する人はいませんchange _rows_ heights
。
これを達成する方法はありますか?
コード例:
void CustomTextEdit::insertTable (int rows_cnt, int columns_cnt)
{
QTextCursor cursor = textCursor ();
QTextTableFormat table_format;
table_format.setCellPadding (5);
// TODO: This call just changed the frame border height, not table itself.
//table_format.setHeight (50);
// Setup columns widths - all is working perfectly.
QVector <QTextLength> col_widths;
for (int i = 0; i < columns_cnt; ++i)
col_widths << QTextLength (QTextLength::PercentageLength, 100.0 / columns_cnt);
table_format.setColumnWidthConstraints (col_widths);
// ...But there is no similar function as setRowHeighConstraints for rows!
// Insert our table with specified format settings
cursor.insertTable (rows_cnt, columns_cnt, table_format);
}