Home | History | Annotate | Download | only in qt

Lines Matching refs:scroll

59     QAction* actScrollHere = menu.addAction(QCoreApplication::translate("QWebPage", "Scroll here"));
70 QAction* actScrollUp = menu.addAction(horizontal ? QCoreApplication::translate("QWebPage", "Scroll left") : QCoreApplication::translate("QWebPage", "Scroll up"));
71 QAction* actScrollDown = menu.addAction(horizontal ? QCoreApplication::translate("QWebPage", "Scroll right") : QCoreApplication::translate("QWebPage", "Scroll down"));
85 scrollableArea()->scroll(horizontal ? ScrollLeft : ScrollUp, ScrollByDocument);
87 scrollableArea()->scroll(horizontal ? ScrollRight : ScrollDown, ScrollByDocument);
89 scrollableArea()->scroll(horizontal ? ScrollLeft : ScrollUp, ScrollByPage);
91 scrollableArea()->scroll(horizontal ? ScrollRight : ScrollDown, ScrollByPage);
93 scrollableArea()->scroll(horizontal ? ScrollLeft : ScrollUp, ScrollByLine);
95 scrollableArea()->scroll(horizontal ? ScrollRight : ScrollDown, ScrollByLine);