2

のサイズ変更にどのように対応しQMainWindowますか?私はQTextBrowsersにあり、QScrollAreaそれらを作成するときにコンテンツのサイズに調整します(スクロールする必要があるのはQScrollArea)だけです。

今のところすべてが機能しますが、リフロー機能がトリガーされないため、のサイズを変更してもmainWindow、の高さは変更されません。QTextBrowsers

その内容に合わせて調整するためのより良いアイデアはありますQTextBrowserか?私の現在のコードは次のとおりです。

void RenderFrame::adjustTextBrowser(QTextBrowser* e) const {
    e->document()->setTextWidth(e->parentWidget()->width());
    e->setMinimumHeight(e->document()->size().toSize().height());
    e->setMaximumHeight(e->minimumHeight());
}

ウィジェット自体で実行すると、実際のサイズに関係なく常に100が返されるため、これparentWidget()が必要です。width()

4

1 に答える 1

3

テキストまたはhtmlしかない場合はQLabel、使用可能なスペースにサイズがすでに適応しているため、代わりに使用できます。以下を使用する必要があります。

label->setWordWrap(true);        
label->setTextInteractionFlags(Qt::TextBrowserInteraction); 

とほぼ同じ動作をしQTextBrowserます。


本当に使用したい場合は、次のようなものを試すことができます(ソースコードQTextBrowserから適応):QLabel

class TextBrowser : public QTextBrowser {
    Q_OBJECT
public:
    explicit TextBrowser(QWidget *parent) : QTextBrowser(parent) {
        // updateGeometry should be called whenever the size changes
        // and the size changes when the document changes        
        connect(this, SIGNAL(textChanged()), SLOT(onTextChanged()));

        QSizePolicy policy = sizePolicy();
        // Obvious enough ? 
        policy.setHeightForWidth(true);
        setSizePolicy(policy);
    }

    int heightForWidth(int width) const {
        int left, top, right, bottom;
        getContentsMargins(&left, &top, &right, &bottom);
        QSize margins(left + right, top + bottom);

        // As working on the real document seems to cause infinite recursion,
        // we create a clone to calculate the width
        QScopedPointer<QTextDocument> tempDoc(document()->clone());
        tempDoc->setTextWidth(width - margins.width());

        return qMax(tempDoc->size().toSize().height() + margins.height(),
                    minimumHeight());
    }
private slots:
    void onTextChanged() {
        updateGeometry();
    }
};
于 2011-09-05T00:06:14.383 に答える