Tag: cws_src680_dba202d User: oj Date: 06/01/23 03:47:14 Modified: /dba/dbaccess/source/ui/app/ AppDetailView.cxx, AppSwapWindow.cxx, AppSwapWindow.hxx
Log: #i48614# send somevents File Changes: Directory: /dba/dbaccess/source/ui/app/ ======================================= File [changed]: AppDetailView.cxx Url: http://dba.openoffice.org/source/browse/dba/dbaccess/source/ui/app/AppDetailView.cxx?r1=1.12&r2=1.12.52.1 Delta lines: +9 -3 ------------------- --- AppDetailView.cxx 23 Sep 2005 12:16:10 -0000 1.12 +++ AppDetailView.cxx 23 Jan 2006 11:47:02 -0000 1.12.52.1 @@ -4,9 +4,9 @@ * * $RCSfile: AppDetailView.cxx,v $ * - * $Revision: 1.12 $ + * $Revision: 1.12.52.1 $ * - * last change: $Author: hr $ $Date: 2005/09/23 12:16:10 $ + * last change: $Author: oj $ $Date: 2006/01/23 11:47:02 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -301,7 +301,10 @@ InvalidateEntry( GetCurEntry() ); SetCurEntry( _pEntry ); if ( GetCurEntry() ) + { InvalidateEntry( GetCurEntry() ); + CallEventListeners( VCLEVENT_LISTBOX_SELECT, GetCurEntry() ); + } return true; } return false; @@ -343,7 +346,10 @@ if ( pOldCurrent ) InvalidateEntry( pOldCurrent ); if ( pNewCurrent ) + { InvalidateEntry( pNewCurrent ); + CallEventListeners( VCLEVENT_LISTBOX_SELECT, pNewCurrent ); + } // if ( pNewCurrent ) updateHelpText(); } } File [changed]: AppSwapWindow.cxx Url: http://dba.openoffice.org/source/browse/dba/dbaccess/source/ui/app/AppSwapWindow.cxx?r1=1.6&r2=1.6.52.1 Delta lines: +6 -5 ------------------- --- AppSwapWindow.cxx 23 Sep 2005 12:17:08 -0000 1.6 +++ AppSwapWindow.cxx 23 Jan 2006 11:47:06 -0000 1.6.52.1 @@ -4,9 +4,9 @@ * * $RCSfile: AppSwapWindow.cxx,v $ * - * $Revision: 1.6 $ + * $Revision: 1.6.52.1 $ * - * last change: $Author: hr $ $Date: 2005/09/23 12:17:08 $ + * last change: $Author: oj $ $Date: 2006/01/23 11:47:06 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -78,12 +78,13 @@ // class OApplicationSwapWindow DBG_NAME(OApplicationSwapWindow) //================================================================== -OApplicationSwapWindow::OApplicationSwapWindow(Window* _pParent,OAppBorderWindow* _pBorderWindow) : Control(_pParent,WB_DIALOGCONTROL ) +OApplicationSwapWindow::OApplicationSwapWindow(Window* _pParent,OAppBorderWindow* _pBorderWindow) : Window(_pParent,WB_DIALOGCONTROL ) ,m_aIconControl(this) ,m_pBorderWin(_pBorderWindow) ,m_eLastType(E_NONE) { DBG_CTOR(OApplicationSwapWindow,NULL); +// SetCompoundControl( TRUE ); ImplInitSettings( sal_True, sal_True, sal_True ); @@ -91,7 +92,7 @@ m_aIconControl.setControlActionListener(_pBorderWindow->getView()->getActionListener()); m_aIconControl.SetHelpId(HID_APP_SWAP_ICONCONTROL); m_aIconControl.Show(); - m_aIconControl.Enable(TRUE); + //m_aIconControl.Enable(TRUE); } // ----------------------------------------------------------------------------- OApplicationSwapWindow::~OApplicationSwapWindow() File [changed]: AppSwapWindow.hxx Url: http://dba.openoffice.org/source/browse/dba/dbaccess/source/ui/app/AppSwapWindow.hxx?r1=1.4&r2=1.4.60.1 Delta lines: +4 -4 ------------------- --- AppSwapWindow.hxx 8 Sep 2005 14:22:06 -0000 1.4 +++ AppSwapWindow.hxx 23 Jan 2006 11:47:08 -0000 1.4.60.1 @@ -4,9 +4,9 @@ * * $RCSfile: AppSwapWindow.hxx,v $ * - * $Revision: 1.4 $ + * $Revision: 1.4.60.1 $ * - * last change: $Author: rt $ $Date: 2005/09/08 14:22:06 $ + * last change: $Author: oj $ $Date: 2006/01/23 11:47:08 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -52,7 +52,7 @@ { class OAppBorderWindow; //================================================================== - class OApplicationSwapWindow : public Control, + class OApplicationSwapWindow : public Window, public IClipboardTest { OApplicationIconControl m_aIconControl; --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
