Lines Matching refs:pWindow

134 void AquaA11yFocusTracker::toolbox_open_floater(Window *pWindow)  in toolbox_open_floater()  argument
139 while ( pWindow != NULL ) { in toolbox_open_floater()
140 if ( pWindow->GetType() == WINDOW_TOOLBOX ) { in toolbox_open_floater()
142 } else if ( pWindow->GetType() == WINDOW_FLOATINGWINDOW ) { in toolbox_open_floater()
144 pFloatingWindow = pWindow; in toolbox_open_floater()
146 pWindow = pWindow->GetParent(); in toolbox_open_floater()
169 void AquaA11yFocusTracker::toolbox_highlight_on(Window *pWindow) in toolbox_highlight_on() argument
172 if ( ! pWindow->HasFocus() ) in toolbox_highlight_on()
174 ToolBox* pToolBoxParent = dynamic_cast< ToolBox * >( pWindow->GetParent() ); in toolbox_highlight_on()
179 notify_toolbox_item_focus(static_cast <ToolBox *> (pWindow)); in toolbox_highlight_on()
184 void AquaA11yFocusTracker::toolbox_highlight_off(Window *pWindow) in toolbox_highlight_off() argument
186 ToolBox* pToolBoxParent = dynamic_cast< ToolBox * >( pWindow->GetParent() ); in toolbox_highlight_off()
195 void AquaA11yFocusTracker::tabpage_activated(Window *pWindow) in tabpage_activated() argument
197 Reference< XAccessible > xAccessible( pWindow->GetAccessible() ); in tabpage_activated()
225 void AquaA11yFocusTracker::window_got_focus(Window *pWindow) in window_got_focus() argument
228 if( ! pWindow || !pWindow->IsReallyVisible() || pWindow->GetType() == WINDOW_MENUBARWINDOW ) in window_got_focus()
232 if( pWindow->GetType() == WINDOW_TOOLBOX ) in window_got_focus()
235 if( pWindow->GetType() == WINDOW_TABCONTROL ) in window_got_focus()
237 tabpage_activated( pWindow ); in window_got_focus()
241 Reference< XAccessible > xAccessible(pWindow->GetAccessible()); in window_got_focus()
259 …if( xStateSet->contains(AccessibleStateType::FOCUSED) && (pWindow->GetType() != WINDOW_TREELISTBOX… in window_got_focus()
265 if( m_aDocumentWindowList.find(pWindow) == m_aDocumentWindowList.end() ) in window_got_focus()
267 m_aDocumentWindowList.insert(pWindow); in window_got_focus()
272 fprintf(stderr, "Window %p already in the list\n", pWindow ); in window_got_focus()