Lines Matching refs:i_nPosition
117 size_t InsertPanel( const PToolPanel& i_pPanel, const size_t i_nPosition );
118 PToolPanel RemovePanel( const size_t i_nPosition );
134 virtual void PanelInserted( const PToolPanel& i_pPanel, const size_t i_nPosition );
135 virtual void PanelRemoved( const size_t i_nPosition );
204 size_t ToolPanelDeck_Impl::InsertPanel( const PToolPanel& i_pPanel, const size_t i_nPosition ) in InsertPanel() argument
206 return m_aPanels.InsertPanel( i_pPanel, i_nPosition ); in InsertPanel()
210 PToolPanel ToolPanelDeck_Impl::RemovePanel( const size_t i_nPosition ) in RemovePanel() argument
212 return m_aPanels.RemovePanel( i_nPosition ); in RemovePanel()
307 void ToolPanelDeck_Impl::PanelInserted( const PToolPanel& i_pPanel, const size_t i_nPosition ) in PanelInserted() argument
310 m_aListeners.PanelInserted( i_pPanel, i_nPosition ); in PanelInserted()
314 void ToolPanelDeck_Impl::PanelRemoved( const size_t i_nPosition ) in PanelRemoved() argument
317 m_aListeners.PanelRemoved( i_nPosition ); in PanelRemoved()
414 size_t ToolPanelDeck::InsertPanel( const PToolPanel& i_pPanel, const size_t i_nPosition ) in InsertPanel() argument
416 return m_pImpl->InsertPanel( i_pPanel, i_nPosition ); in InsertPanel()
420 PToolPanel ToolPanelDeck::RemovePanel( const size_t i_nPosition ) in RemovePanel() argument
422 return m_pImpl->RemovePanel( i_nPosition ); in RemovePanel()