2001-01-12 10:35:45 +00:00
|
|
|
/*************************************************************************
|
|
|
|
*
|
|
|
|
* $RCSfile: browserline.cxx,v $
|
|
|
|
*
|
2004-03-19 10:59:54 +00:00
|
|
|
* $Revision: 1.6 $
|
2001-01-12 10:35:45 +00:00
|
|
|
*
|
2004-03-19 10:59:54 +00:00
|
|
|
* last change: $Author: obo $ $Date: 2004-03-19 11:59:54 $
|
2001-01-12 10:35:45 +00:00
|
|
|
*
|
|
|
|
* The Contents of this file are made available subject to the terms of
|
|
|
|
* either of the following licenses
|
|
|
|
*
|
|
|
|
* - GNU Lesser General Public License Version 2.1
|
|
|
|
* - Sun Industry Standards Source License Version 1.1
|
|
|
|
*
|
|
|
|
* Sun Microsystems Inc., October, 2000
|
|
|
|
*
|
|
|
|
* GNU Lesser General Public License Version 2.1
|
|
|
|
* =============================================
|
|
|
|
* Copyright 2000 by Sun Microsystems, Inc.
|
|
|
|
* 901 San Antonio Road, Palo Alto, CA 94303, USA
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License version 2.1, as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston,
|
|
|
|
* MA 02111-1307 USA
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* Sun Industry Standards Source License Version 1.1
|
|
|
|
* =================================================
|
|
|
|
* The contents of this file are subject to the Sun Industry Standards
|
|
|
|
* Source License Version 1.1 (the "License"); You may not use this file
|
|
|
|
* except in compliance with the License. You may obtain a copy of the
|
|
|
|
* License at http://www.openoffice.org/license.html.
|
|
|
|
*
|
|
|
|
* Software provided under this License is provided on an "AS IS" basis,
|
|
|
|
* WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING,
|
|
|
|
* WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS,
|
|
|
|
* MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING.
|
|
|
|
* See the License for the specific provisions governing your rights and
|
|
|
|
* obligations concerning the Software.
|
|
|
|
*
|
|
|
|
* The Initial Developer of the Original Code is: Sun Microsystems, Inc..
|
|
|
|
*
|
|
|
|
* Copyright: 2000 by Sun Microsystems, Inc.
|
|
|
|
*
|
|
|
|
* All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Contributor(s): _______________________________________
|
|
|
|
*
|
|
|
|
*
|
|
|
|
************************************************************************/
|
|
|
|
|
|
|
|
#ifndef _EXTENSIONS_PROPCTRLR_BROWSERLINE_HXX_
|
|
|
|
#include "browserline.hxx"
|
|
|
|
#endif
|
|
|
|
#ifndef _EXTENSIONS_PROPCTRLR_BRWCONTROLLISTENER_HXX_
|
|
|
|
#include "brwcontrollistener.hxx"
|
|
|
|
#endif
|
|
|
|
#ifndef _TOOLS_DEBUG_HXX
|
|
|
|
#include <tools/debug.hxx>
|
|
|
|
#endif
|
2004-03-19 10:59:54 +00:00
|
|
|
#ifndef _SV_SVAPP_HXX
|
|
|
|
#include <vcl/svapp.hxx>
|
|
|
|
#endif
|
2001-01-12 10:35:45 +00:00
|
|
|
|
|
|
|
//............................................................................
|
|
|
|
namespace pcr
|
|
|
|
{
|
|
|
|
//............................................................................
|
|
|
|
|
|
|
|
//==================================================================
|
|
|
|
//= OBrowserLine
|
|
|
|
//==================================================================
|
2001-01-18 12:20:45 +00:00
|
|
|
DBG_NAME(OBrowserLine)
|
2001-01-12 10:35:45 +00:00
|
|
|
//------------------------------------------------------------------
|
|
|
|
|
|
|
|
OBrowserLine::OBrowserLine( Window* pParent)
|
|
|
|
:m_aFtTitle(pParent)
|
|
|
|
,m_pData(NULL)
|
2004-03-19 10:59:54 +00:00
|
|
|
,m_pBrowseButton(NULL)
|
2001-01-12 10:35:45 +00:00
|
|
|
,m_pBrowserControl(NULL)
|
|
|
|
,m_bIsLocked(sal_False)
|
|
|
|
,m_bIsHyperlink(sal_False)
|
|
|
|
,m_nNameWidth(0)
|
|
|
|
,m_pTheParent(pParent)
|
|
|
|
,m_bNeedsRepaint(sal_True)
|
|
|
|
,m_eControlType(BCT_UNDEFINED)
|
|
|
|
{
|
|
|
|
DBG_CTOR(OBrowserLine,NULL);
|
|
|
|
m_aFtTitle.Show();
|
|
|
|
}
|
|
|
|
//------------------------------------------------------------------
|
|
|
|
OBrowserLine::~OBrowserLine()
|
|
|
|
{
|
2004-03-19 10:59:54 +00:00
|
|
|
if(m_pBrowseButton)
|
2001-01-12 10:35:45 +00:00
|
|
|
{
|
2004-03-19 10:59:54 +00:00
|
|
|
m_pBrowseButton->Hide();
|
|
|
|
delete m_pBrowseButton;
|
|
|
|
m_pBrowseButton=NULL;
|
2001-01-12 10:35:45 +00:00
|
|
|
}
|
|
|
|
DBG_DTOR(OBrowserLine,NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
//------------------------------------------------------------------
|
|
|
|
void OBrowserLine::SetHelpId(sal_uInt32 nHelpId,sal_uInt32 nBtUniqueId)
|
|
|
|
{
|
|
|
|
if(m_pBrowserControl)
|
|
|
|
m_pBrowserControl->SetCtrHelpId(nHelpId);
|
|
|
|
|
2004-03-19 10:59:54 +00:00
|
|
|
if(m_pBrowseButton)
|
2001-01-12 10:35:45 +00:00
|
|
|
{
|
2004-03-19 10:59:54 +00:00
|
|
|
m_pBrowseButton->SetHelpId(nHelpId);
|
|
|
|
m_pBrowseButton->SetUniqueId(nBtUniqueId);
|
2001-01-12 10:35:45 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//------------------------------------------------------------------
|
|
|
|
void OBrowserLine::setControl(IBrowserControl* pXControl)
|
|
|
|
{
|
|
|
|
m_pBrowserControl=pXControl;
|
|
|
|
m_pBrowserControl->ShowCtr();
|
|
|
|
Resize();
|
|
|
|
}
|
|
|
|
|
|
|
|
//------------------------------------------------------------------
|
|
|
|
IBrowserControl* OBrowserLine::getControl()
|
|
|
|
{
|
|
|
|
return m_pBrowserControl;
|
|
|
|
}
|
|
|
|
|
|
|
|
//------------------------------------------------------------------
|
|
|
|
void OBrowserLine::SetSizePixel(Size aSize)
|
|
|
|
{
|
|
|
|
m_aOutputSize = aSize;
|
|
|
|
Resize();
|
|
|
|
}
|
|
|
|
|
|
|
|
//------------------------------------------------------------------
|
|
|
|
void OBrowserLine::SetPosPixel(Point aPosPoint)
|
|
|
|
{
|
|
|
|
m_aLinePos=aPosPoint;
|
|
|
|
Point aPos(m_aLinePos);
|
|
|
|
aPos.Y()+=2;
|
|
|
|
|
|
|
|
Point aTitlePos(m_aLinePos);
|
|
|
|
aTitlePos.Y()+=8;
|
|
|
|
Point aCtrPos(aPos);
|
|
|
|
Point aBtnPos(aPos);
|
|
|
|
|
|
|
|
if(m_pBrowserControl)
|
|
|
|
{
|
|
|
|
aCtrPos.X()=m_pBrowserControl->GetCtrPos().X();
|
|
|
|
}
|
2004-03-19 10:59:54 +00:00
|
|
|
if(m_pBrowseButton)
|
2001-01-12 10:35:45 +00:00
|
|
|
{
|
2004-03-19 10:59:54 +00:00
|
|
|
aBtnPos.X()=m_pBrowseButton->GetPosPixel().X();
|
2001-01-12 10:35:45 +00:00
|
|
|
}
|
|
|
|
m_aFtTitle.SetPosPixel(aTitlePos);
|
|
|
|
|
|
|
|
if(m_pBrowserControl)
|
|
|
|
{
|
|
|
|
m_pBrowserControl->SetCtrPos(aCtrPos);
|
|
|
|
}
|
|
|
|
|
2004-03-19 10:59:54 +00:00
|
|
|
if(m_pBrowseButton)
|
2001-01-12 10:35:45 +00:00
|
|
|
{
|
2004-03-19 10:59:54 +00:00
|
|
|
m_pBrowseButton->SetPosPixel(aBtnPos);
|
2001-01-12 10:35:45 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//------------------------------------------------------------------
|
|
|
|
Window* OBrowserLine::GetRefWindow()
|
|
|
|
{
|
|
|
|
Window* pRefWindow=&m_aFtTitle;
|
|
|
|
|
2004-03-19 10:59:54 +00:00
|
|
|
if(m_pBrowseButton)
|
2001-01-12 10:35:45 +00:00
|
|
|
{
|
2004-03-19 10:59:54 +00:00
|
|
|
pRefWindow=(Window*)m_pBrowseButton;
|
2001-01-12 10:35:45 +00:00
|
|
|
}
|
|
|
|
else if(m_pBrowserControl)
|
|
|
|
{
|
|
|
|
pRefWindow=m_pBrowserControl->GetMe();
|
|
|
|
}
|
|
|
|
return pRefWindow;
|
|
|
|
}
|
|
|
|
|
|
|
|
//------------------------------------------------------------------
|
|
|
|
void OBrowserLine::SetTabOrder(Window* pRefWindow, sal_uInt16 nFlags )
|
|
|
|
{
|
|
|
|
m_aFtTitle.SetZOrder(pRefWindow,nFlags);
|
|
|
|
if(m_pBrowserControl)
|
|
|
|
{
|
|
|
|
m_pBrowserControl->
|
|
|
|
SetTabOrder((Window*)&m_aFtTitle,WINDOW_ZORDER_BEHIND);
|
|
|
|
}
|
|
|
|
|
2004-03-19 10:59:54 +00:00
|
|
|
if(m_pBrowseButton)
|
2001-01-12 10:35:45 +00:00
|
|
|
{
|
2004-03-19 10:59:54 +00:00
|
|
|
m_pBrowseButton->SetZOrder(m_pBrowserControl->GetMe(),
|
2001-01-12 10:35:45 +00:00
|
|
|
WINDOW_ZORDER_BEHIND);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//------------------------------------------------------------------
|
|
|
|
sal_Bool OBrowserLine::GrabFocus()
|
|
|
|
{
|
|
|
|
sal_Bool bRes=sal_False;
|
|
|
|
|
|
|
|
if(m_pBrowserControl &&
|
|
|
|
m_pBrowserControl->GetMe()->IsEnabled())
|
|
|
|
{
|
|
|
|
m_pBrowserControl->GetMe()->GrabFocus();
|
|
|
|
bRes=sal_True;
|
|
|
|
}
|
2004-03-19 10:59:54 +00:00
|
|
|
else if(m_pBrowseButton && m_pBrowseButton->IsEnabled())
|
2001-01-12 10:35:45 +00:00
|
|
|
{
|
2004-03-19 10:59:54 +00:00
|
|
|
m_pBrowseButton->GrabFocus();
|
2001-01-12 10:35:45 +00:00
|
|
|
bRes=sal_True;
|
|
|
|
}
|
|
|
|
return bRes;
|
|
|
|
}
|
|
|
|
|
|
|
|
//------------------------------------------------------------------
|
|
|
|
void OBrowserLine::SetPosSizePixel(Point aPosPoint,Size aSize)
|
|
|
|
{
|
|
|
|
if(m_aLinePos!=aPosPoint && m_aOutputSize!=aSize)
|
|
|
|
{
|
|
|
|
SetControlPosSize(aPosPoint,aSize);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
m_aOutputSize=aSize;
|
|
|
|
Resize();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//------------------------------------------------------------------
|
|
|
|
Size OBrowserLine::GetSizePixel()
|
|
|
|
{
|
|
|
|
return m_aOutputSize;
|
|
|
|
}
|
|
|
|
|
2003-10-21 08:03:53 +00:00
|
|
|
//------------------------------------------------------------------
|
|
|
|
void OBrowserLine::Enable( sal_Bool _bDoEnable )
|
|
|
|
{
|
|
|
|
m_aFtTitle.Enable( _bDoEnable );
|
|
|
|
if ( m_pBrowserControl )
|
|
|
|
m_pBrowserControl->EnableControl( _bDoEnable );
|
2004-03-19 10:59:54 +00:00
|
|
|
if ( m_pBrowseButton )
|
|
|
|
m_pBrowseButton->Enable( _bDoEnable );
|
2003-10-21 08:03:53 +00:00
|
|
|
}
|
|
|
|
|
2001-01-12 10:35:45 +00:00
|
|
|
//------------------------------------------------------------------
|
|
|
|
void OBrowserLine::Show(sal_Bool bFlag)
|
|
|
|
{
|
|
|
|
m_aFtTitle.Show(bFlag);
|
|
|
|
if(m_pBrowserControl)
|
|
|
|
{
|
|
|
|
m_pBrowserControl->ShowCtr(bFlag);
|
|
|
|
}
|
2004-03-19 10:59:54 +00:00
|
|
|
if(m_pBrowseButton)
|
2001-01-12 10:35:45 +00:00
|
|
|
{
|
2004-03-19 10:59:54 +00:00
|
|
|
m_pBrowseButton->Show(bFlag);
|
2001-01-12 10:35:45 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//------------------------------------------------------------------
|
|
|
|
void OBrowserLine::Hide()
|
|
|
|
{
|
|
|
|
Show(sal_False);
|
|
|
|
}
|
|
|
|
|
|
|
|
//------------------------------------------------------------------
|
|
|
|
sal_Bool OBrowserLine::IsVisible()
|
|
|
|
{
|
|
|
|
return m_aFtTitle.IsVisible();
|
|
|
|
}
|
|
|
|
|
|
|
|
//------------------------------------------------------------------
|
|
|
|
void OBrowserLine::Invalidate()
|
|
|
|
{
|
|
|
|
m_aFtTitle.Invalidate();
|
|
|
|
if(m_pBrowserControl)
|
|
|
|
{
|
|
|
|
m_pBrowserControl->InvalidateCtr();
|
|
|
|
}
|
2004-03-19 10:59:54 +00:00
|
|
|
if(m_pBrowseButton)
|
2001-01-12 10:35:45 +00:00
|
|
|
{
|
2004-03-19 10:59:54 +00:00
|
|
|
m_pBrowseButton->Invalidate();
|
2001-01-12 10:35:45 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//------------------------------------------------------------------
|
|
|
|
void OBrowserLine::Update()
|
|
|
|
{
|
|
|
|
m_aFtTitle.Update();
|
|
|
|
if(m_pBrowserControl)
|
|
|
|
{
|
|
|
|
m_pBrowserControl->UpdateCtr();
|
|
|
|
}
|
2004-03-19 10:59:54 +00:00
|
|
|
if(m_pBrowseButton)
|
2001-01-12 10:35:45 +00:00
|
|
|
{
|
2004-03-19 10:59:54 +00:00
|
|
|
m_pBrowseButton->Update();
|
2001-01-12 10:35:45 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//------------------------------------------------------------------
|
|
|
|
void OBrowserLine::SetData(void *pPtr)
|
|
|
|
{
|
|
|
|
m_pData=pPtr;
|
|
|
|
}
|
|
|
|
|
|
|
|
//------------------------------------------------------------------
|
|
|
|
void* OBrowserLine::GetData()
|
|
|
|
{
|
|
|
|
return m_pData;
|
|
|
|
}
|
|
|
|
//------------------------------------------------------------------
|
|
|
|
void OBrowserLine::SetControlPosSize(Point aPos,Size aSize)
|
|
|
|
{
|
|
|
|
m_aLinePos=aPos;
|
|
|
|
m_aOutputSize=aSize;
|
|
|
|
Size a2Size(aSize);
|
|
|
|
|
|
|
|
aSize.Width()=m_nNameWidth-3;
|
|
|
|
a2Size.Width()-=m_nNameWidth;
|
|
|
|
a2Size.Height() -=2;
|
|
|
|
|
|
|
|
aPos.Y()+=2;
|
|
|
|
Point aTitlePos(m_aLinePos);
|
|
|
|
aTitlePos.Y()+=8;
|
|
|
|
|
|
|
|
m_aFtTitle.SetPosSizePixel(aTitlePos,aSize);
|
2004-03-19 10:59:54 +00:00
|
|
|
sal_uInt16 nBrowseButtonWidth=0;
|
2001-01-12 10:35:45 +00:00
|
|
|
|
2004-03-19 10:59:54 +00:00
|
|
|
nBrowseButtonWidth=(sal_uInt16)aSize.Height()-4;
|
2001-01-12 10:35:45 +00:00
|
|
|
|
2004-03-19 10:59:54 +00:00
|
|
|
a2Size.Width()=a2Size.Width()-nBrowseButtonWidth;
|
2001-01-12 10:35:45 +00:00
|
|
|
|
|
|
|
aPos.X()+=aSize.Width();
|
|
|
|
|
|
|
|
if(m_pBrowserControl)
|
|
|
|
{
|
|
|
|
a2Size.Height()=m_pBrowserControl->GetCtrSize().Height();
|
|
|
|
m_pBrowserControl->SetCtrPos(aPos);
|
|
|
|
m_pBrowserControl->SetCtrSize(a2Size);
|
|
|
|
}
|
|
|
|
|
2004-03-19 10:59:54 +00:00
|
|
|
if ( m_pBrowseButton )
|
2001-01-12 10:35:45 +00:00
|
|
|
{
|
2004-03-19 10:59:54 +00:00
|
|
|
long nx=m_aOutputSize.Width()-nBrowseButtonWidth;
|
2001-01-12 10:35:45 +00:00
|
|
|
if(nx>aPos.X())
|
|
|
|
{
|
|
|
|
aPos.X()=nx;
|
|
|
|
}
|
2004-03-19 10:59:54 +00:00
|
|
|
aSize.Width()=nBrowseButtonWidth-3;
|
|
|
|
aSize.Height()=nBrowseButtonWidth-2;
|
|
|
|
m_pBrowseButton->SetPosSizePixel(aPos,aSize);
|
2001-01-12 10:35:45 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//------------------------------------------------------------------
|
|
|
|
void OBrowserLine::Resize()
|
|
|
|
{
|
|
|
|
Size aSize(m_aOutputSize);
|
|
|
|
Size a2Size(aSize);
|
|
|
|
|
|
|
|
aSize.Width()=m_nNameWidth-3;
|
|
|
|
a2Size.Width()-=m_nNameWidth;
|
|
|
|
a2Size.Height() -=2;
|
|
|
|
|
|
|
|
Point aPos(m_aLinePos);
|
|
|
|
aPos.Y()+=2;
|
|
|
|
Point aTitlePos(m_aLinePos);
|
|
|
|
aTitlePos.Y()+=8;
|
|
|
|
|
2004-03-19 10:59:54 +00:00
|
|
|
sal_uInt16 nBrowseButtonWidth=0;
|
2001-01-12 10:35:45 +00:00
|
|
|
|
2004-03-19 10:59:54 +00:00
|
|
|
nBrowseButtonWidth=(sal_uInt16)aSize.Height()-4;
|
2001-01-12 10:35:45 +00:00
|
|
|
|
2004-03-19 10:59:54 +00:00
|
|
|
a2Size.Width()=a2Size.Width()-nBrowseButtonWidth;
|
2001-01-12 10:35:45 +00:00
|
|
|
|
|
|
|
aPos.X()+=aSize.Width();
|
|
|
|
|
|
|
|
if(m_pBrowserControl)
|
|
|
|
{
|
|
|
|
a2Size.Height() = m_pBrowserControl->GetCtrSize().Height();
|
|
|
|
m_pBrowserControl->SetCtrSize(a2Size);
|
|
|
|
}
|
|
|
|
|
2004-03-19 10:59:54 +00:00
|
|
|
if ( m_pBrowseButton )
|
2001-01-12 10:35:45 +00:00
|
|
|
{
|
2004-03-19 10:59:54 +00:00
|
|
|
long nx=m_aOutputSize.Width()-nBrowseButtonWidth;
|
2001-01-12 10:35:45 +00:00
|
|
|
if(nx>aPos.X())
|
|
|
|
{
|
|
|
|
aPos.X()=nx;
|
|
|
|
}
|
2004-03-19 10:59:54 +00:00
|
|
|
aSize.Width()=nBrowseButtonWidth-3;
|
|
|
|
aSize.Height()=nBrowseButtonWidth-2;
|
|
|
|
m_pBrowseButton->SetPosSizePixel(aPos,aSize);
|
2001-01-12 10:35:45 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//------------------------------------------------------------------
|
|
|
|
void OBrowserLine::SetNeedsRepaint(sal_Bool bFlag)
|
|
|
|
{
|
|
|
|
m_bNeedsRepaint=bFlag;
|
|
|
|
}
|
|
|
|
|
|
|
|
//------------------------------------------------------------------
|
|
|
|
sal_Bool OBrowserLine::NeedsRepaint()
|
|
|
|
{
|
|
|
|
return m_bNeedsRepaint;
|
|
|
|
}
|
|
|
|
|
|
|
|
//------------------------------------------------------------------
|
|
|
|
void OBrowserLine::SetTitle(const XubString& rString )
|
|
|
|
{
|
|
|
|
String aText(rString);
|
2002-11-05 08:56:59 +00:00
|
|
|
// #99102# --------------
|
2001-01-12 10:35:45 +00:00
|
|
|
m_aFtTitle.SetText(aText);
|
2002-11-05 08:56:59 +00:00
|
|
|
FullFillTitleString();
|
|
|
|
}
|
|
|
|
|
|
|
|
// #99102# ---------------------------------------------------------
|
|
|
|
void OBrowserLine::FullFillTitleString()
|
|
|
|
{
|
|
|
|
if( m_pTheParent )
|
|
|
|
{
|
|
|
|
String aText = m_aFtTitle.GetText();
|
|
|
|
while( m_pTheParent->GetTextWidth( aText ) < m_nNameWidth )
|
|
|
|
aText.AppendAscii("...........");
|
|
|
|
m_aFtTitle.SetText(aText);
|
|
|
|
}
|
2001-01-12 10:35:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//------------------------------------------------------------------
|
|
|
|
XubString OBrowserLine::GetTitle() const
|
|
|
|
{
|
|
|
|
return m_aFtTitle.GetText();
|
|
|
|
}
|
|
|
|
|
|
|
|
//------------------------------------------------------------------
|
|
|
|
void OBrowserLine::SetKindOfControl(BrowserControlType eKOC)
|
|
|
|
{
|
|
|
|
m_eControlType=eKOC;
|
|
|
|
}
|
|
|
|
|
|
|
|
//------------------------------------------------------------------
|
|
|
|
BrowserControlType OBrowserLine::GetKindOfControl()
|
|
|
|
{
|
|
|
|
return m_eControlType;
|
|
|
|
}
|
|
|
|
|
|
|
|
//------------------------------------------------------------------
|
2004-03-19 10:59:54 +00:00
|
|
|
void OBrowserLine::EnableInputControls( bool _bEnableInput, bool _bEnableBrowseButton )
|
2001-01-12 10:35:45 +00:00
|
|
|
{
|
2004-03-19 10:59:54 +00:00
|
|
|
if ( m_pBrowseButton )
|
|
|
|
m_pBrowseButton->Enable( _bEnableBrowseButton );
|
|
|
|
if ( m_pBrowserControl )
|
|
|
|
m_pBrowserControl->EnableControl( _bEnableInput );
|
|
|
|
m_aFtTitle.Enable( _bEnableInput );
|
2001-01-12 10:35:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//------------------------------------------------------------------
|
2004-03-19 10:59:54 +00:00
|
|
|
void OBrowserLine::ShowBrowseButton()
|
2001-01-12 10:35:45 +00:00
|
|
|
{
|
2004-03-19 10:59:54 +00:00
|
|
|
if ( !m_pBrowseButton )
|
2001-01-12 10:35:45 +00:00
|
|
|
{
|
2004-03-19 10:59:54 +00:00
|
|
|
delete m_pBrowseButton;
|
|
|
|
m_pBrowseButton=new PushButton( m_pTheParent, WB_NOPOINTERFOCUS );
|
|
|
|
m_pBrowseButton->SetGetFocusHdl( LINK( this, OBrowserLine, GetFocusHdl ) );
|
|
|
|
m_pBrowseButton->SetData( (void*)this );
|
|
|
|
m_pBrowseButton->SetText( String::CreateFromAscii( "..." ) );
|
2001-01-12 10:35:45 +00:00
|
|
|
}
|
2004-03-19 10:59:54 +00:00
|
|
|
m_pBrowseButton->Show();
|
2001-01-12 10:35:45 +00:00
|
|
|
Resize();
|
|
|
|
}
|
|
|
|
|
|
|
|
//------------------------------------------------------------------
|
2004-03-19 10:59:54 +00:00
|
|
|
void OBrowserLine::HideBrowseButton()
|
2001-01-12 10:35:45 +00:00
|
|
|
{
|
2004-03-19 10:59:54 +00:00
|
|
|
if ( m_pBrowseButton )
|
2001-01-12 10:35:45 +00:00
|
|
|
{
|
2004-03-19 10:59:54 +00:00
|
|
|
m_pBrowseButton->Hide();
|
|
|
|
delete m_pBrowseButton;
|
|
|
|
m_pBrowseButton=NULL;
|
2001-01-12 10:35:45 +00:00
|
|
|
}
|
2004-03-19 10:59:54 +00:00
|
|
|
Resize();
|
2001-01-12 10:35:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//------------------------------------------------------------------
|
|
|
|
void OBrowserLine::Locked(sal_Bool nFlag)
|
|
|
|
{
|
|
|
|
m_bIsLocked=nFlag;
|
|
|
|
}
|
|
|
|
|
|
|
|
//------------------------------------------------------------------
|
|
|
|
sal_Bool OBrowserLine::IsLocked()
|
|
|
|
{
|
|
|
|
return m_bIsLocked;
|
|
|
|
}
|
|
|
|
|
|
|
|
//------------------------------------------------------------------
|
|
|
|
void OBrowserLine::SetTitleWidth(sal_uInt16 nWidth)
|
|
|
|
{
|
|
|
|
if (m_nNameWidth != nWidth+10)
|
|
|
|
{
|
|
|
|
m_nNameWidth = nWidth+10;
|
|
|
|
SetControlPosSize(m_aLinePos,m_aOutputSize);
|
|
|
|
}
|
2002-11-05 08:56:59 +00:00
|
|
|
// #99102# ---------
|
|
|
|
FullFillTitleString();
|
2001-01-12 10:35:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//------------------------------------------------------------------
|
|
|
|
void OBrowserLine::SetClickHdl(const Link& rLink)
|
|
|
|
{
|
2004-03-19 10:59:54 +00:00
|
|
|
if(m_pBrowseButton)
|
|
|
|
m_pBrowseButton->SetClickHdl(rLink );
|
2001-01-12 10:35:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//------------------------------------------------------------------
|
|
|
|
IMPL_LINK( OBrowserLine, GetFocusHdl, PushButton*, pPB )
|
|
|
|
{
|
|
|
|
if(m_pBrowserControl)
|
|
|
|
{
|
|
|
|
IBrowserControlListener* pListener = m_pBrowserControl->getListener();
|
|
|
|
if (pListener)
|
|
|
|
pListener->GetFocus(m_pBrowserControl);
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
//............................................................................
|
|
|
|
} // namespace pcr
|
|
|
|
//............................................................................
|
|
|
|
|