Home
last modified time | relevance | path

Searched refs:pAccessible (Results 1 – 25 of 31) sorted by relevance

12

/AOO42X/main/winaccessibility/source/service/
H A DAccComponentEventListener.cxx94 pAgent->UpdateValue(pAccessible); in handleValueChangedEvent()
95 pAgent->NotifyAccEvent(UM_EVENT_OBJECT_VALUECHANGE, pAccessible); in handleValueChangedEvent()
103 pAgent->UpdateAction(pAccessible); in handleActionChangedEvent()
104 pAgent->NotifyAccEvent(UM_EVENT_OBJECT_DEFACTIONCHANGE, pAccessible); in handleActionChangedEvent()
115 pAgent->UpdateValue(pAccessible, newValue); in handleTextChangedEvent()
116 pAgent->NotifyAccEvent(UM_EVENT_OBJECT_VALUECHANGE, pAccessible); in handleTextChangedEvent()
127 pAgent->NotifyAccEvent(UM_EVENT_OBJECT_CARETCHANGE, pAccessible); in handleCaretChangedEvent()
170 pAgent->IncreaseState( pAccessible, AccessibleStateType::VISIBLE); in setComponentState()
171 pAgent->IncreaseState( pAccessible, AccessibleStateType::FOCUSABLE); in setComponentState()
175 pAgent->DecreaseState( pAccessible, AccessibleStateType::VISIBLE); in setComponentState()
[all …]
H A DAccContainerEventListener.cxx148 if(pAgent->InsertAccObj( pAcc,pAccessible)) in handleChildChangedEvent()
191 pAgent->NotifyAccEvent(UM_EVENT_SELECTION_CHANGED, pAccessible); in handleSelectionChangedEvent()
200 if( pAccessible ) in handleAllChildrenChangedEvent()
203 pAgent->DeleteChildrenAccObj( pAccessible ); in handleAllChildrenChangedEvent()
205 pAgent->InsertChildrenAccObj( pAccessible ); in handleAllChildrenChangedEvent()
206 pAgent->NotifyAccEvent(UM_EVENT_OBJECT_REORDER , pAccessible); in handleAllChildrenChangedEvent()
215 pAgent->UpdateValue(pAccessible, newValue); in handleTextChangedEvent()
216 pAgent->NotifyAccEvent(UM_EVENT_OBJECT_TEXTCHANGE, pAccessible); in handleTextChangedEvent()
245 pAgent->DecreaseState( pAccessible, AccessibleStateType::DEFUNC); in setComponentState()
246 pAgent->IncreaseState( pAccessible, AccessibleStateType::FOCUSABLE); in setComponentState()
[all …]
H A DAccTopWindowListener.cxx86 …AccTopWindowListener::handleWindowOpened( com::sun::star::accessibility::XAccessible* pAccessible ) in handleWindowOpened() argument
89 VCLXWindow* pvclwindow = (VCLXWindow*)pAccessible; in handleWindowOpened()
101 …Reference<com::sun::star::accessibility::XAccessibleContext> xContext(pAccessible->getAccessibleCo… in handleWindowOpened()
110 accManagerAgent.SaveTopWindowHandle((HWND)systemdata->hWnd, pAccessible); in handleWindowOpened()
112 AddAllListeners(pAccessible,NULL,(HWND)systemdata->hWnd); in handleWindowOpened()
115 accManagerAgent.IncreaseState( pAccessible, -1 /* U_MOVEBLE */ ); in handleWindowOpened()
123 accManagerAgent.NotifyAccEvent(UM_EVENT_MENUPOPUPSTART, pAccessible); in handleWindowOpened()
131 accManagerAgent.NotifyAccEvent(UM_EVENT_SHOW, pAccessible); in handleWindowOpened()
157 com::sun::star::accessibility::XAccessible* pAccessible = xAccessible.get(); in windowOpened() local
158 if ( pAccessible == NULL) in windowOpened()
[all …]
H A DAccEventListener.cxx52 :pAccessible(pAcc), in AccEventListener()
92 if ( pAgent->IsTopWinAcc( pAccessible ) ) in handleNameChangedEvent()
94 XAccessible* pAccDoc = pAgent->GetAccDocByAccTopWin( pAccessible ); in handleNameChangedEvent()
102 pAgent->UpdateAccName(pAccessible, name); in handleNameChangedEvent()
103 pAgent->NotifyAccEvent(UM_EVENT_OBJECT_NAMECHANGE, pAccessible); in handleNameChangedEvent()
112 pAgent->UpdateDescription(pAccessible, desc); in handleDescriptionChangedEvent()
113 pAgent->NotifyAccEvent(UM_EVENT_OBJECT_DESCRIPTIONCHANGE, pAccessible); in handleDescriptionChangedEvent()
121 pAgent->UpdateLocation(pAccessible); in handleBoundrectChangedEvent()
122 pAgent->NotifyAccEvent(UM_EVENT_BOUNDRECT_CHANGED, pAccessible); in handleBoundrectChangedEvent()
130 pAgent->UpdateValue(pAccessible); in handleVisibleDataChangedEvent()
[all …]
H A DAccTableEventListener.cxx59 pAgent->NotifyAccEvent(UM_EVENT_TABLE_CAPTION_CHANGED, pAccessible); in notifyEvent()
65 pAgent->NotifyAccEvent(UM_EVENT_TABLE_COLUMN_DESCRIPTION_CHANGED, pAccessible); in notifyEvent()
71 pAgent->NotifyAccEvent(UM_EVENT_TABLE_COLUMN_HEADER_CHANGED, pAccessible); in notifyEvent()
77 pAgent->NotifyAccEvent(UM_EVENT_TABLE_ROW_HEADER_CHANGED, pAccessible); in notifyEvent()
89 pAgent->NotifyAccEvent(UM_EVENT_TABLE_SUMMARY_CHANGED, pAccessible); in notifyEvent()
95 pAgent->NotifyAccEvent(UM_EVENT_TABLE_ROW_DESCRIPTION_CHANGED, pAccessible); in notifyEvent()
117 pAgent->InsertAccObj(pAcc,pAccessible); in handleActiveDescendantChangedEvent()
137 if( pAccessible ) in handleTableModelChangeEvent()
140 pAgent->DeleteChildrenAccObj( pAccessible ); in handleTableModelChangeEvent()
142 pAgent->InsertChildrenAccObj( pAccessible ); in handleTableModelChangeEvent()
[all …]
H A DAccDescendantManagerEventListener.cxx93 pAgent->InsertAccObj( pAcc,pAccessible); in handleChildChangedEvent()
151 pAgent->NotifyAccEvent(UM_EVENT_SELECTION_CHANGED, pAccessible); in handleSelectionChangedEvent()
165 pAgent->InsertAccObj(pAcc,pAccessible); in handleChildChangedNoFocusEvent()
192 …if (pAgent && pAgent->IsStateManageDescendant(pAccessible) && ( nWinEvent == UM_EVENT_SELECTION_CH… in NotifyChildEvent()
207 pAgent->NotifyAccEvent(UM_EVENT_SELECTION_CHANGED_ADD,pAccessible); in handleSelectionChangedAddEvent()
215 pAgent->NotifyAccEvent(UM_EVENT_SELECTION_CHANGED_REMOVE,pAccessible); in handleSelectionChangedRemoveEvent()
224 pAgent->NotifyAccEvent(UM_EVENT_SELECTION_CHANGED_WITHIN,pAccessible); in handleSelectionChangedWithinEvent()
H A DAccParagraphEventListener.cxx66 pAgent->IncreaseState( pAccessible, State); in notifyEvent()
71 pAgent->DecreaseState( pAccessible, State); in notifyEvent()
96 pAgent->UpdateLocation(pAccessible); in handleCaretChangedEvent()
97 pAgent->NotifyAccEvent(UM_EVENT_OBJECT_CARETCHANGE, pAccessible); in handleCaretChangedEvent()
143 pAgent->NotifyAccEvent(UM_EVENT_TEXT_SELECTION_CHANGED, pAccessible); in handleTextSelectionChangedEvent()
H A DAccMenuEventListener.cxx80 pAgent->InsertAccObj( pAcc,pAccessible); in handleChildChangedEvent()
111 pAgent->NotifyAccEvent(UM_EVENT_SELECTION_CHANGED, pAccessible); in handleSelectionChangedEvent()
126 pAgent->IncreaseState( pAccessible, state); in fireStatePropertyChange()
128 pAgent->UpdateChildState(pAccessible); in fireStatePropertyChange()
142 pAgent->DecreaseState( pAccessible, state ); in fireStatePropertyChange()
H A DAccWindowEventListener.cxx96 pAgent->InsertAccObj( pAcc,pAccessible); in handleChildChangedEvent()
136 pAgent->IncreaseState( pAccessible, AccessibleStateType::VISIBLE ); in setComponentState()
138 pAgent->DecreaseState( pAccessible, AccessibleStateType::VISIBLE ); in setComponentState()
144 pAgent->IncreaseState( pAccessible, AccessibleStateType::SHOWING ); in setComponentState()
147 pAgent->DecreaseState( pAccessible, AccessibleStateType::SHOWING ); in setComponentState()
H A DAccFrameEventListener.cxx115 VCLXWindow* pvclwindow = (VCLXWindow*)pAccessible; in handleChildChangedEvent()
120 pAgent->InsertAccObj( pAcc,pAccessible,(HWND)systemdata->hWnd); in handleChildChangedEvent()
162 pAgent->IncreaseState( pAccessible, AccessibleStateType::VISIBLE ); in setComponentState()
164 pAgent->DecreaseState( pAccessible, AccessibleStateType::VISIBLE ); in setComponentState()
H A DAccObjectWinManager.cxx1098 sal_Bool AccObjectWinManager::IsContainer(XAccessible* pAccessible) in IsContainer() argument
1102 if(pAccessible) in IsContainer()
1104 Reference<XAccessibleContext> xContext(pAccessible->getAccessibleContext(),UNO_QUERY); in IsContainer()
1143 if(!IsStateManageDescendant(pAccessible)) in IsContainer()
1167 bool AccObjectWinManager::IsStateManageDescendant(XAccessible* pAccessible) in IsStateManageDescendant() argument
1169 if(pAccessible) in IsStateManageDescendant()
1171 Reference<XAccessibleContext> xContext(pAccessible->getAccessibleContext(),UNO_QUERY); in IsStateManageDescendant()
H A DAccDialogEventListener.cxx97 pAgent->InsertAccObj( pAcc,pAccessible); in handleChildChangedEvent()
139 pAgent->IncreaseState( pAccessible, AccessibleStateType::VISIBLE ); in setComponentState()
141 pAgent->DecreaseState( pAccessible, AccessibleStateType::VISIBLE ); in setComponentState()
H A DAccObjectContainerEventListener.cxx58 pAgent->UpdateAccName(pAccessible); in handleStateChangedEvent()
60 pAgent->UpdateDescription(pAccessible); in handleStateChangedEvent()
H A DAccListEventListener.cxx86 sal_Bool bHasCache = pAgent->InsertAccObj(pAcc,pAccessible); in handleActiveDescendantChangedEvent()
119 XAccessible* pParentAcc = pAgent->GetParentXAccessible(pAccessible); in handleValueChangedEvent()
/AOO42X/main/vcl/unx/gtk/a11y/
H A Datkwindow.cxx144 AtkObject* pAccessible = gtk_widget_get_accessible( pToolTip ); in ooo_tooltip_map() local
145 if( pAccessible ) in ooo_tooltip_map()
146 atk_object_notify_state_change( pAccessible, ATK_STATE_SHOWING, TRUE ); in ooo_tooltip_map()
152 AtkObject* pAccessible = gtk_widget_get_accessible( pToolTip ); in ooo_tooltip_unmap() local
153 if( pAccessible ) in ooo_tooltip_unmap()
154 atk_object_notify_state_change( pAccessible, ATK_STATE_SHOWING, FALSE ); in ooo_tooltip_unmap()
H A Datkregistry.cxx62 ooo_wrapper_registry_remove(XAccessible *pAccessible) in ooo_wrapper_registry_remove() argument
65 g_hash_table_remove( uno_to_gobject, (gpointer) pAccessible ); in ooo_wrapper_registry_remove()
H A Datkregistry.hxx34 void ooo_wrapper_registry_remove(::com::sun::star::accessibility::XAccessible *pAccessible);
/AOO42X/main/starmath/source/
H A Dedit.cxx99 pAccessible (0), in SmEditWindow()
138 if (pAccessible) in ~SmEditWindow()
139 pAccessible->ClearWin(); // make Accessible defunctional in ~SmEditWindow()
642 ::accessibility::AccessibleTextHelper *pHelper = pAccessible->GetTextHelper(); in GetFocus()
666 ::accessibility::AccessibleTextHelper *pHelper = pAccessible->GetTextHelper(); in LoseFocus()
977 if (!pAccessible) in CreateAccessible()
979 pAccessible = new SmEditAccessible( this ); in CreateAccessible()
980 xAccessible = pAccessible; in CreateAccessible()
981 pAccessible->Init(); in CreateAccessible()
H A Dview.cxx96 pAccessible(0), in SmGraphicWindow()
118 if (pAccessible) in ~SmGraphicWindow()
119 pAccessible->ClearWin(); // make Accessible dysfunctional in ~SmGraphicWindow()
235 pAccessible->LaunchEvent( AccessibleEventId::STATE_CHANGED, in LoseFocus()
441 if (!pAccessible) in CreateAccessible()
443 pAccessible = new SmGraphicAccessible( this ); in CreateAccessible()
444 xAccessible = pAccessible; in CreateAccessible()
/AOO42X/main/accessibility/source/helper/
H A Dacc_factory.cxx272 OAccessibleMenuBaseComponent* pAccessible; in createAccessible() local
274 pAccessible = new VCLXAccessibleMenuBar( _pMenu ); in createAccessible()
276 pAccessible = new VCLXAccessiblePopupMenu( _pMenu ); in createAccessible()
277 pAccessible->SetStates(); in createAccessible()
278 return pAccessible; in createAccessible()
/AOO42X/main/winaccessibility/inc/
H A DAccTopWindowListener.hxx61 …virtual void AddAllListeners(com::sun::star::accessibility::XAccessible* pAccessible,com::sun::sta…
63 virtual void handleWindowOpened( com::sun::star::accessibility::XAccessible* pAccessible );
H A DAccObjectWinManager.hxx154 sal_Bool IsContainer( com::sun::star::accessibility::XAccessible* pAccessible );
174 bool IsStateManageDescendant(com::sun::star::accessibility::XAccessible* pAccessible);
/AOO42X/main/starmath/inc/
H A Dedit.hxx60 SmEditAccessible * pAccessible; member in SmEditWindow
143 SmEditAccessible * GetAccessible() { return pAccessible; } in GetAccessible()
H A Dview.hxx54 SmGraphicAccessible * pAccessible; member in SmGraphicWindow
107 SmGraphicAccessible * GetAccessible_Impl() { return pAccessible; } in GetAccessible_Impl()
/AOO42X/main/dbaccess/source/ui/querydesign/
H A DTableWindow.cxx624 OTableWindowAccess* pAccessible = new OTableWindowAccess(this); in CreateAccessible() local
625 m_pAccessible = pAccessible; in CreateAccessible()
626 return pAccessible; in CreateAccessible()

12