Exemplo n.º 1
0
 private static void restoreScrolledCompositeOrigins(Shell shell) {
   WidgetTreeUtil.accept(shell, new RestoreScrolledCompositeOriginsVisitor());
 }
Exemplo n.º 2
0
 private static void enlargeScrolledCompositeContent(Shell shell) {
   WidgetTreeUtil.accept(shell, new EnlargeScrolledCompositeContentVisitor());
 }
Exemplo n.º 3
0
 private static void clearLayoutBuffers(Shell shell) {
   WidgetTreeUtil.accept(shell, new ClearLayoutBuffersVisitor());
 }
Exemplo n.º 4
0
 private static void markLayoutNeeded(Shell shell) {
   WidgetTreeUtil.accept(shell, new MarkLayoutNeededVisitor());
 }
Exemplo n.º 5
0
 private static void rePack(Shell shell) {
   WidgetTreeUtil.accept(shell, new RePackVisitor());
 }