Home | History | Annotate | Download | only in Api

Lines Matching full:frame

85             QWebFrame* frame = m_view->page()->mainFrame();
86 frame->setScrollBarPolicy(Qt::Vertical, m_oldVerticalScrollBarPolicy);
87 frame->setScrollBarPolicy(Qt::Horizontal, m_oldHorizontalScrollBarPolicy);
93 QWebFrame* frame = m_view->page()->mainFrame();
94 m_oldHorizontalScrollBarPolicy = frame->scrollBarPolicy(Qt::Horizontal);
95 m_oldVerticalScrollBarPolicy = frame->scrollBarPolicy(Qt::Vertical);
96 frame->setScrollBarPolicy(Qt::Vertical, Qt::ScrollBarAlwaysOff);
97 frame->setScrollBarPolicy(Qt::Horizontal, Qt::ScrollBarAlwaysOff);
112 // remember the frame where the button was pressed
148 // Returns the innermost frame at the given position that can scroll.
153 QWebFrame* frame = m_view->page()->mainFrame();
154 hitFrame = frame->hitTestContent(pos).frame();
166 QWebFrame* frame = currentFrame();
167 QSize s = frame ? frame->contentsSize() - frame->geometry().size() : QSize(0, 0);
173 QWebFrame* frame = currentFrame();
174 return frame ? frame->scrollPosition() : QPoint();
184 QWebFrame* frame = currentFrame();
185 if (frame)
186 frame->setScrollPosition(point);
657 \brief the scaling factor for all text in the frame
816 Prints the main frame to the given \a printer.
904 QWebFrame *frame = d->page->mainFrame();
908 frame->render(&p, ev->region());
1120 This signal is emitted whenever the \a title of the main frame changes.