LCOV - code coverage report
Current view: top level - vcl/source/control - combobox.cxx (source / functions) Hit Total Coverage
Test: commit e02a6cb2c3e2b23b203b422e4e0680877f232636 Lines: 0 836 0.0 %
Date: 2014-04-14 Functions: 0 98 0.0 %
Legend: Lines: hit not hit

          Line data    Source code
       1             : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
       2             : /*
       3             :  * This file is part of the LibreOffice project.
       4             :  *
       5             :  * This Source Code Form is subject to the terms of the Mozilla Public
       6             :  * License, v. 2.0. If a copy of the MPL was not distributed with this
       7             :  * file, You can obtain one at http://mozilla.org/MPL/2.0/.
       8             :  *
       9             :  * This file incorporates work covered by the following license notice:
      10             :  *
      11             :  *   Licensed to the Apache Software Foundation (ASF) under one or more
      12             :  *   contributor license agreements. See the NOTICE file distributed
      13             :  *   with this work for additional information regarding copyright
      14             :  *   ownership. The ASF licenses this file to you under the Apache
      15             :  *   License, Version 2.0 (the "License"); you may not use this file
      16             :  *   except in compliance with the License. You may obtain a copy of
      17             :  *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
      18             :  */
      19             : 
      20             : #include <set>
      21             : #include <comphelper/string.hxx>
      22             : #include <tools/debug.hxx>
      23             : #include <tools/rc.h>
      24             : #include <vcl/decoview.hxx>
      25             : #include <vcl/lstbox.h>
      26             : #include <vcl/button.hxx>
      27             : #include <vcl/event.hxx>
      28             : #include <vcl/combobox.hxx>
      29             : #include <vcl/settings.hxx>
      30             : 
      31             : #include <svdata.hxx>
      32             : #include <ilstbox.hxx>
      33             : #include <controldata.hxx>
      34             : 
      35           0 : static void lcl_GetSelectedEntries( ::std::set< sal_Int32 >& rSelectedPos, const OUString& rText, sal_Unicode cTokenSep, const ImplEntryList* pEntryList )
      36             : {
      37           0 :     for (sal_Int32 n = comphelper::string::getTokenCount(rText, cTokenSep); n;)
      38             :     {
      39           0 :         OUString aToken = rText.getToken( --n, cTokenSep );
      40           0 :         aToken = comphelper::string::strip(aToken, ' ');
      41           0 :         sal_Int32 nPos = pEntryList->FindEntry( aToken );
      42           0 :         if ( nPos != LISTBOX_ENTRY_NOTFOUND )
      43           0 :             rSelectedPos.insert( nPos );
      44           0 :     }
      45           0 : }
      46             : 
      47           0 : ComboBox::ComboBox( WindowType nType ) :
      48           0 :     Edit( nType )
      49             : {
      50           0 :     ImplInitComboBoxData();
      51           0 :     SetWidthInChars(-1);
      52           0 : }
      53             : 
      54           0 : ComboBox::ComboBox( Window* pParent, WinBits nStyle ) :
      55           0 :     Edit( WINDOW_COMBOBOX )
      56             : {
      57           0 :     ImplInitComboBoxData();
      58           0 :     ImplInit( pParent, nStyle );
      59           0 :     SetWidthInChars(-1);
      60           0 : }
      61             : 
      62           0 : ComboBox::ComboBox( Window* pParent, const ResId& rResId ) :
      63           0 :     Edit( WINDOW_COMBOBOX )
      64             : {
      65           0 :     ImplInitComboBoxData();
      66           0 :     rResId.SetRT( RSC_COMBOBOX );
      67           0 :     WinBits nStyle = ImplInitRes( rResId );
      68           0 :     ImplInit( pParent, nStyle );
      69           0 :     ImplLoadRes( rResId );
      70             : 
      71           0 :     SetWidthInChars(-1);
      72           0 :     if ( !(nStyle & WB_HIDE ) )
      73           0 :         Show();
      74           0 : }
      75             : 
      76           0 : ComboBox::~ComboBox()
      77             : {
      78           0 :     SetSubEdit( NULL );
      79           0 :     delete mpSubEdit;
      80             : 
      81           0 :     ImplListBox *pImplLB = mpImplLB;
      82           0 :     mpImplLB = NULL;
      83           0 :     delete pImplLB;
      84             : 
      85           0 :     delete mpFloatWin;
      86           0 :     delete mpBtn;
      87           0 : }
      88             : 
      89           0 : void ComboBox::ImplInitComboBoxData()
      90             : {
      91           0 :     mpSubEdit           = NULL;
      92           0 :     mpBtn               = NULL;
      93           0 :     mpImplLB            = NULL;
      94           0 :     mpFloatWin          = NULL;
      95             : 
      96           0 :     mnDDHeight          = 0;
      97           0 :     mbDDAutoSize        = true;
      98           0 :     mbSyntheticModify   = false;
      99           0 :     mbMatchCase         = false;
     100           0 :     mcMultiSep          = ';';
     101           0 :     m_nMaxWidthChars    = -1;
     102           0 : }
     103             : 
     104           0 : void ComboBox::ImplCalcEditHeight()
     105             : {
     106             :     sal_Int32 nLeft, nTop, nRight, nBottom;
     107           0 :     GetBorder( nLeft, nTop, nRight, nBottom );
     108           0 :     mnDDHeight = (sal_uInt16)(mpSubEdit->GetTextHeight() + nTop + nBottom + 4);
     109           0 :     if ( !IsDropDownBox() )
     110           0 :         mnDDHeight += 4;
     111             : 
     112           0 :     Rectangle aCtrlRegion( Point( 0, 0 ), Size( 10, 10 ) );
     113           0 :     Rectangle aBoundRegion, aContentRegion;
     114           0 :     ImplControlValue aControlValue;
     115           0 :     ControlType aType = IsDropDownBox() ? CTRL_COMBOBOX : CTRL_EDITBOX;
     116           0 :     if( GetNativeControlRegion( aType, PART_ENTIRE_CONTROL,
     117             :                                 aCtrlRegion,
     118             :                                 CTRL_STATE_ENABLED,
     119             :                                 aControlValue, OUString(),
     120           0 :                                 aBoundRegion, aContentRegion ) )
     121             :     {
     122           0 :         const long nNCHeight = aBoundRegion.GetHeight();
     123           0 :         if( mnDDHeight < nNCHeight )
     124           0 :             mnDDHeight = sal::static_int_cast<sal_uInt16>( nNCHeight );
     125           0 :     }
     126           0 : }
     127             : 
     128           0 : void ComboBox::ImplInit( Window* pParent, WinBits nStyle )
     129             : {
     130           0 :     ImplInitStyle( nStyle );
     131             : 
     132           0 :     bool bNoBorder = ( nStyle & WB_NOBORDER ) ? true : false;
     133           0 :     if ( !(nStyle & WB_DROPDOWN) )
     134             :     {
     135           0 :         nStyle &= ~WB_BORDER;
     136           0 :         nStyle |= WB_NOBORDER;
     137             :     }
     138             :     else
     139             :     {
     140           0 :         if ( !bNoBorder )
     141           0 :             nStyle |= WB_BORDER;
     142             :     }
     143             : 
     144           0 :     Edit::ImplInit( pParent, nStyle );
     145           0 :     SetBackground();
     146             : 
     147             :     // DropDown ?
     148           0 :     WinBits nEditStyle = nStyle & ( WB_LEFT | WB_RIGHT | WB_CENTER );
     149           0 :     WinBits nListStyle = nStyle;
     150           0 :     if( nStyle & WB_DROPDOWN )
     151             :     {
     152           0 :         mpFloatWin = new ImplListBoxFloatingWindow( this );
     153           0 :         mpFloatWin->SetAutoWidth( true );
     154           0 :         mpFloatWin->SetPopupModeEndHdl( LINK( this, ComboBox, ImplPopupModeEndHdl ) );
     155             : 
     156           0 :         mpBtn = new ImplBtn( this, WB_NOLIGHTBORDER | WB_RECTSTYLE );
     157           0 :         ImplInitDropDownButton( mpBtn );
     158           0 :         mpBtn->SetMBDownHdl( LINK( this, ComboBox, ImplClickBtnHdl ) );
     159           0 :         mpBtn->Show();
     160             : 
     161           0 :         nEditStyle |= WB_NOBORDER;
     162           0 :         nListStyle &= ~WB_BORDER;
     163           0 :         nListStyle |= WB_NOBORDER;
     164             :     }
     165             :     else
     166             :     {
     167           0 :         if ( !bNoBorder )
     168             :         {
     169           0 :             nEditStyle |= WB_BORDER;
     170           0 :             nListStyle &= ~WB_NOBORDER;
     171           0 :             nListStyle |= WB_BORDER;
     172             :         }
     173             :     }
     174             : 
     175           0 :     mpSubEdit = new Edit( this, nEditStyle );
     176           0 :     mpSubEdit->EnableRTL( false );
     177           0 :     SetSubEdit( mpSubEdit );
     178           0 :     mpSubEdit->SetPosPixel( Point() );
     179           0 :     EnableAutocomplete( true );
     180           0 :     mpSubEdit->Show();
     181             : 
     182           0 :     Window* pLBParent = this;
     183           0 :     if ( mpFloatWin )
     184           0 :         pLBParent = mpFloatWin;
     185           0 :     mpImplLB = new ImplListBox( pLBParent, nListStyle|WB_SIMPLEMODE|WB_AUTOHSCROLL );
     186           0 :     mpImplLB->SetPosPixel( Point() );
     187           0 :     mpImplLB->SetSelectHdl( LINK( this, ComboBox, ImplSelectHdl ) );
     188           0 :     mpImplLB->SetCancelHdl( LINK( this, ComboBox, ImplCancelHdl ) );
     189           0 :     mpImplLB->SetDoubleClickHdl( LINK( this, ComboBox, ImplDoubleClickHdl ) );
     190           0 :     mpImplLB->SetUserDrawHdl( LINK( this, ComboBox, ImplUserDrawHdl ) );
     191           0 :     mpImplLB->SetSelectionChangedHdl( LINK( this, ComboBox, ImplSelectionChangedHdl ) );
     192           0 :     mpImplLB->SetListItemSelectHdl( LINK( this, ComboBox, ImplListItemSelectHdl ) );
     193           0 :     mpImplLB->Show();
     194             : 
     195           0 :     if ( mpFloatWin )
     196           0 :         mpFloatWin->SetImplListBox( mpImplLB );
     197             :     else
     198           0 :         mpImplLB->GetMainWindow()->AllowGrabFocus( true );
     199             : 
     200           0 :     ImplCalcEditHeight();
     201             : 
     202           0 :     SetCompoundControl( true );
     203           0 : }
     204             : 
     205           0 : WinBits ComboBox::ImplInitStyle( WinBits nStyle )
     206             : {
     207           0 :     if ( !(nStyle & WB_NOTABSTOP) )
     208           0 :         nStyle |= WB_TABSTOP;
     209           0 :     if ( !(nStyle & WB_NOGROUP) )
     210           0 :         nStyle |= WB_GROUP;
     211           0 :     return nStyle;
     212             : }
     213             : 
     214           0 : void ComboBox::ImplLoadRes( const ResId& rResId )
     215             : {
     216           0 :     Edit::ImplLoadRes( rResId );
     217             : 
     218           0 :     sal_Int32 nNumber = ReadLongRes();
     219             : 
     220           0 :     if( nNumber )
     221             :     {
     222           0 :         for( sal_Int32 i = 0; i < nNumber; i++ )
     223             :         {
     224           0 :             InsertEntry( ReadStringRes(), LISTBOX_APPEND );
     225             :         }
     226             :     }
     227           0 : }
     228             : 
     229           0 : void ComboBox::EnableAutocomplete( bool bEnable, bool bMatchCase )
     230             : {
     231           0 :     mbMatchCase = bMatchCase;
     232             : 
     233           0 :     if ( bEnable )
     234           0 :         mpSubEdit->SetAutocompleteHdl( LINK( this, ComboBox, ImplAutocompleteHdl ) );
     235             :     else
     236           0 :         mpSubEdit->SetAutocompleteHdl( Link() );
     237           0 : }
     238             : 
     239           0 : bool ComboBox::IsAutocompleteEnabled() const
     240             : {
     241           0 :     return mpSubEdit->GetAutocompleteHdl().IsSet();
     242             : }
     243             : 
     244           0 : IMPL_LINK_NOARG(ComboBox, ImplClickBtnHdl)
     245             : {
     246           0 :     ImplCallEventListeners( VCLEVENT_DROPDOWN_PRE_OPEN );
     247           0 :     mpSubEdit->GrabFocus();
     248           0 :     if ( !mpImplLB->GetEntryList()->GetMRUCount() )
     249           0 :         ImplUpdateFloatSelection();
     250             :     else
     251           0 :         mpImplLB->SelectEntry( 0 , true );
     252           0 :     mpBtn->SetPressed( true );
     253           0 :     SetSelection( Selection( 0, SELECTION_MAX ) );
     254           0 :     mpFloatWin->StartFloat( true );
     255           0 :     ImplCallEventListeners( VCLEVENT_DROPDOWN_OPEN );
     256             : 
     257           0 :     ImplClearLayoutData();
     258           0 :     if( mpImplLB )
     259           0 :         mpImplLB->GetMainWindow()->ImplClearLayoutData();
     260             : 
     261           0 :     return 0;
     262             : }
     263             : 
     264           0 : IMPL_LINK_NOARG(ComboBox, ImplPopupModeEndHdl)
     265             : {
     266           0 :     if( mpFloatWin->IsPopupModeCanceled() )
     267             :     {
     268           0 :         if ( !mpImplLB->GetEntryList()->IsEntryPosSelected( mpFloatWin->GetPopupModeStartSaveSelection() ) )
     269             :         {
     270           0 :             mpImplLB->SelectEntry( mpFloatWin->GetPopupModeStartSaveSelection(), true );
     271           0 :             bool bTravelSelect = mpImplLB->IsTravelSelect();
     272           0 :             mpImplLB->SetTravelSelect( true );
     273           0 :             Select();
     274           0 :             mpImplLB->SetTravelSelect( bTravelSelect );
     275             :         }
     276             :     }
     277             : 
     278           0 :     ImplClearLayoutData();
     279           0 :     if( mpImplLB )
     280           0 :         mpImplLB->GetMainWindow()->ImplClearLayoutData();
     281             : 
     282           0 :     mpBtn->SetPressed( false );
     283           0 :     ImplCallEventListeners( VCLEVENT_DROPDOWN_CLOSE );
     284           0 :     return 0;
     285             : }
     286             : 
     287           0 : IMPL_LINK( ComboBox, ImplAutocompleteHdl, Edit*, pEdit )
     288             : {
     289           0 :     Selection           aSel = pEdit->GetSelection();
     290           0 :     AutocompleteAction  eAction = pEdit->GetAutocompleteAction();
     291             : 
     292             :     /* If there is no current selection do not auto complete on
     293             :        Tab/Shift-Tab since then we would not cycle to the next field.
     294             :     */
     295           0 :     if ( aSel.Len() ||
     296           0 :          ((eAction != AUTOCOMPLETE_TABFORWARD) && (eAction != AUTOCOMPLETE_TABBACKWARD)) )
     297             :     {
     298           0 :         OUString    aFullText = pEdit->GetText();
     299           0 :         OUString    aStartText = aFullText.copy( 0, (sal_Int32)aSel.Max() );
     300           0 :         sal_Int32      nStart = mpImplLB->GetCurrentPos();
     301             : 
     302           0 :         if ( nStart == LISTBOX_ENTRY_NOTFOUND )
     303           0 :             nStart = 0;
     304             : 
     305           0 :         bool bForward = true;
     306           0 :         if ( eAction == AUTOCOMPLETE_TABFORWARD )
     307           0 :             nStart++;
     308           0 :         else if ( eAction == AUTOCOMPLETE_TABBACKWARD )
     309             :         {
     310           0 :             bForward = false;
     311           0 :             nStart = nStart ? nStart - 1 : mpImplLB->GetEntryList()->GetEntryCount()-1;
     312             :         }
     313             : 
     314           0 :         sal_Int32 nPos = LISTBOX_ENTRY_NOTFOUND;
     315           0 :         if( ! mbMatchCase )
     316             :         {
     317             :             // Try match case insensitive from current position
     318           0 :             nPos = mpImplLB->GetEntryList()->FindMatchingEntry( aStartText, nStart, bForward, true );
     319           0 :             if ( nPos == LISTBOX_ENTRY_NOTFOUND )
     320             :                 // Try match case insensitive, but from start
     321           0 :                 nPos = mpImplLB->GetEntryList()->FindMatchingEntry( aStartText, bForward ? 0 : (mpImplLB->GetEntryList()->GetEntryCount()-1), bForward, true );
     322             :         }
     323             : 
     324           0 :         if ( nPos == LISTBOX_ENTRY_NOTFOUND )
     325             :             // Try match full from current position
     326           0 :             nPos = mpImplLB->GetEntryList()->FindMatchingEntry( aStartText, nStart, bForward, false );
     327           0 :         if ( nPos == LISTBOX_ENTRY_NOTFOUND )
     328             :             //  Match full, but from start
     329           0 :             nPos = mpImplLB->GetEntryList()->FindMatchingEntry( aStartText, bForward ? 0 : (mpImplLB->GetEntryList()->GetEntryCount()-1), bForward, false );
     330             : 
     331           0 :         if ( nPos != LISTBOX_ENTRY_NOTFOUND )
     332             :         {
     333           0 :             OUString aText = mpImplLB->GetEntryList()->GetEntryText( nPos );
     334           0 :             Selection aSelection( aText.getLength(), aStartText.getLength() );
     335           0 :             pEdit->SetText( aText, aSelection );
     336           0 :         }
     337             :     }
     338             : 
     339           0 :     return 0;
     340             : }
     341             : 
     342           0 : IMPL_LINK_NOARG(ComboBox, ImplSelectHdl)
     343             : {
     344           0 :     bool bPopup = IsInDropDown();
     345           0 :     bool bCallSelect = false;
     346           0 :     if ( mpImplLB->IsSelectionChanged() || bPopup )
     347             :     {
     348           0 :         OUString aText;
     349           0 :         if ( IsMultiSelectionEnabled() )
     350             :         {
     351           0 :             aText = mpSubEdit->GetText();
     352             : 
     353             :             // remove all entries to which there is an entry, but which is not selected
     354           0 :             sal_Int32 nIndex = 0;
     355           0 :             while ( nIndex >= 0 )
     356             :             {
     357           0 :                 sal_Int32  nPrevIndex = nIndex;
     358           0 :                 OUString   aToken = aText.getToken( 0, mcMultiSep, nIndex );
     359           0 :                 sal_Int32  nTokenLen = aToken.getLength();
     360           0 :                 aToken = comphelper::string::strip(aToken, ' ');
     361           0 :                 sal_Int32      nP = mpImplLB->GetEntryList()->FindEntry( aToken );
     362           0 :                 if ( (nP != LISTBOX_ENTRY_NOTFOUND) && (!mpImplLB->GetEntryList()->IsEntryPosSelected( nP )) )
     363             :                 {
     364           0 :                     aText = aText.replaceAt( nPrevIndex, nTokenLen, "" );
     365           0 :                     nIndex = nIndex - nTokenLen;
     366           0 :                     sal_Int32 nSepCount=0;
     367           0 :                     if ( (nPrevIndex+nSepCount < aText.getLength()) && (aText[nPrevIndex+nSepCount] == mcMultiSep) )
     368             :                     {
     369           0 :                         nIndex--;
     370           0 :                         ++nSepCount;
     371             :                     }
     372           0 :                     aText = aText.replaceAt( nPrevIndex, nSepCount, "" );
     373             :                 }
     374           0 :                 aText = comphelper::string::strip(aText, ' ');
     375           0 :             }
     376             : 
     377             :             // attach missing entries
     378           0 :             ::std::set< sal_Int32 > aSelInText;
     379           0 :             lcl_GetSelectedEntries( aSelInText, aText, mcMultiSep, mpImplLB->GetEntryList() );
     380           0 :             sal_Int32 nSelectedEntries = mpImplLB->GetEntryList()->GetSelectEntryCount();
     381           0 :             for ( sal_Int32 n = 0; n < nSelectedEntries; n++ )
     382             :             {
     383           0 :                 sal_Int32 nP = mpImplLB->GetEntryList()->GetSelectEntryPos( n );
     384           0 :                 if ( !aSelInText.count( nP ) )
     385             :                 {
     386           0 :                     if ( !aText.isEmpty() && (aText[ aText.getLength()-1 ] != mcMultiSep) )
     387           0 :                         aText += OUString(mcMultiSep);
     388           0 :                     if ( !aText.isEmpty() )
     389           0 :                         aText += " ";   // slightly loosen
     390           0 :                     aText += mpImplLB->GetEntryList()->GetEntryText( nP );
     391           0 :                     aText += OUString(mcMultiSep);
     392             :                 }
     393             :             }
     394           0 :             aText = comphelper::string::stripEnd( aText, mcMultiSep );
     395             :         }
     396             :         else
     397             :         {
     398           0 :             aText = mpImplLB->GetEntryList()->GetSelectEntry( 0 );
     399             :         }
     400             : 
     401           0 :         mpSubEdit->SetText( aText );
     402             : 
     403           0 :         Selection aNewSelection( 0, aText.getLength() );
     404           0 :         if ( IsMultiSelectionEnabled() )
     405           0 :             aNewSelection.Min() = aText.getLength();
     406           0 :         mpSubEdit->SetSelection( aNewSelection );
     407             : 
     408           0 :         bCallSelect = true;
     409             :     }
     410             : 
     411             :     // #84652# Call GrabFocus and EndPopupMode before calling Select/Modify, but after changing the text
     412             : 
     413           0 :     if ( bPopup && !mpImplLB->IsTravelSelect() &&
     414           0 :         ( !IsMultiSelectionEnabled() || !mpImplLB->GetSelectModifier() ) )
     415             :     {
     416           0 :         mpFloatWin->EndPopupMode();
     417           0 :         GrabFocus();
     418             :     }
     419             : 
     420           0 :     if ( bCallSelect )
     421             :     {
     422           0 :         mpSubEdit->SetModifyFlag();
     423           0 :         mbSyntheticModify = true;
     424           0 :         Modify();
     425           0 :         mbSyntheticModify = false;
     426           0 :         Select();
     427             :     }
     428             : 
     429           0 :     return 0;
     430             : }
     431             : 
     432           0 : IMPL_LINK( ComboBox, ImplListItemSelectHdl,  void*, EMPTYARG )
     433             : {
     434           0 :     ImplCallEventListeners( VCLEVENT_DROPDOWN_SELECT );
     435           0 :     return 1;
     436             : }
     437             : 
     438           0 : IMPL_LINK_NOARG(ComboBox, ImplCancelHdl)
     439             : {
     440           0 :     if( IsInDropDown() )
     441           0 :         mpFloatWin->EndPopupMode();
     442             : 
     443           0 :     return 1;
     444             : }
     445             : 
     446           0 : IMPL_LINK( ComboBox, ImplSelectionChangedHdl, void*, n )
     447             : {
     448           0 :     if ( !mpImplLB->IsTrackingSelect() )
     449             :     {
     450           0 :         sal_Int32 nChanged = (sal_Int32)(sal_uLong)n;
     451           0 :         if ( !mpSubEdit->IsReadOnly() && mpImplLB->GetEntryList()->IsEntryPosSelected( nChanged ) )
     452           0 :             mpSubEdit->SetText( mpImplLB->GetEntryList()->GetEntryText( nChanged ) );
     453             :     }
     454           0 :     return 1;
     455             : }
     456             : 
     457           0 : IMPL_LINK_NOARG(ComboBox, ImplDoubleClickHdl)
     458             : {
     459           0 :     DoubleClick();
     460           0 :     return 0;
     461             : }
     462             : 
     463           0 : void ComboBox::ToggleDropDown()
     464             : {
     465           0 :     if( IsDropDownBox() )
     466             :     {
     467           0 :         if( mpFloatWin->IsInPopupMode() )
     468           0 :             mpFloatWin->EndPopupMode();
     469             :         else
     470             :         {
     471           0 :             mpSubEdit->GrabFocus();
     472           0 :             if ( !mpImplLB->GetEntryList()->GetMRUCount() )
     473           0 :                 ImplUpdateFloatSelection();
     474             :             else
     475           0 :                 mpImplLB->SelectEntry( 0 , true );
     476           0 :             ImplCallEventListeners( VCLEVENT_DROPDOWN_PRE_OPEN );
     477           0 :             mpBtn->SetPressed( true );
     478           0 :             SetSelection( Selection( 0, SELECTION_MAX ) );
     479           0 :             mpFloatWin->StartFloat( true );
     480           0 :             ImplCallEventListeners( VCLEVENT_DROPDOWN_OPEN );
     481             :         }
     482             :     }
     483           0 : }
     484             : 
     485           0 : void ComboBox::Select()
     486             : {
     487           0 :     ImplCallEventListenersAndHandler( VCLEVENT_COMBOBOX_SELECT, maSelectHdl, this );
     488           0 : }
     489             : 
     490           0 : void ComboBox::DoubleClick()
     491             : {
     492           0 :     ImplCallEventListenersAndHandler( VCLEVENT_COMBOBOX_DOUBLECLICK, maDoubleClickHdl, this );
     493           0 : }
     494             : 
     495           0 : void ComboBox::EnableAutoSize( bool bAuto )
     496             : {
     497           0 :     mbDDAutoSize = bAuto;
     498           0 :     if ( mpFloatWin )
     499             :     {
     500           0 :         if ( bAuto && !mpFloatWin->GetDropDownLineCount() )
     501             :         {
     502             :             // Adapt to GetListBoxMaximumLineCount here; was on fixed number of five before
     503           0 :             AdaptDropDownLineCountToMaximum();
     504             :         }
     505           0 :         else if ( !bAuto )
     506             :         {
     507           0 :             mpFloatWin->SetDropDownLineCount( 0 );
     508             :         }
     509             :     }
     510           0 : }
     511             : 
     512           0 : void ComboBox::EnableDDAutoWidth( bool b )
     513             : {
     514           0 :     if ( mpFloatWin )
     515           0 :         mpFloatWin->SetAutoWidth( b );
     516           0 : }
     517             : 
     518           0 : void ComboBox::SetDropDownLineCount( sal_uInt16 nLines )
     519             : {
     520           0 :     if ( mpFloatWin )
     521           0 :         mpFloatWin->SetDropDownLineCount( nLines );
     522           0 : }
     523             : 
     524           0 : void ComboBox::AdaptDropDownLineCountToMaximum()
     525             : {
     526             :     // adapt to maximum allowed number
     527           0 :     SetDropDownLineCount(GetSettings().GetStyleSettings().GetListBoxMaximumLineCount());
     528           0 : }
     529             : 
     530           0 : sal_uInt16 ComboBox::GetDropDownLineCount() const
     531             : {
     532           0 :     sal_uInt16 nLines = 0;
     533           0 :     if ( mpFloatWin )
     534           0 :         nLines = mpFloatWin->GetDropDownLineCount();
     535           0 :     return nLines;
     536             : }
     537             : 
     538           0 : void ComboBox::setPosSizePixel( long nX, long nY, long nWidth, long nHeight,
     539             :                                 sal_uInt16 nFlags )
     540             : {
     541           0 :     if( IsDropDownBox() && ( nFlags & WINDOW_POSSIZE_SIZE ) )
     542             :     {
     543           0 :         Size aPrefSz = mpFloatWin->GetPrefSize();
     544           0 :         if ( ( nFlags & WINDOW_POSSIZE_HEIGHT ) && ( nHeight >= 2*mnDDHeight ) )
     545           0 :             aPrefSz.Height() = nHeight-mnDDHeight;
     546           0 :         if ( nFlags & WINDOW_POSSIZE_WIDTH )
     547           0 :             aPrefSz.Width() = nWidth;
     548           0 :         mpFloatWin->SetPrefSize( aPrefSz );
     549             : 
     550           0 :         if ( IsAutoSizeEnabled() && ! (nFlags & WINDOW_POSSIZE_DROPDOWN) )
     551           0 :             nHeight = mnDDHeight;
     552             :     }
     553             : 
     554           0 :     Edit::setPosSizePixel( nX, nY, nWidth, nHeight, nFlags );
     555           0 : }
     556             : 
     557           0 : void ComboBox::Resize()
     558             : {
     559           0 :     Control::Resize();
     560             : 
     561           0 :     Size aOutSz = GetOutputSizePixel();
     562           0 :     if( IsDropDownBox() )
     563             :     {
     564             :         ComboBoxBounds aBounds(calcComboBoxDropDownComponentBounds(aOutSz,
     565           0 :             GetWindow(WINDOW_BORDER)->GetOutputSizePixel()));
     566           0 :         mpSubEdit->SetPosSizePixel(aBounds.aSubEditPos, aBounds.aSubEditSize);
     567           0 :         mpBtn->SetPosSizePixel(aBounds.aButtonPos, aBounds.aButtonSize);
     568             :     }
     569             :     else
     570             :     {
     571           0 :         mpSubEdit->SetSizePixel( Size( aOutSz.Width(), mnDDHeight ) );
     572           0 :         mpImplLB->setPosSizePixel( 0, mnDDHeight, aOutSz.Width(), aOutSz.Height() - mnDDHeight );
     573           0 :         if ( !GetText().isEmpty() )
     574           0 :             ImplUpdateFloatSelection();
     575             :     }
     576             : 
     577             :     // adjust the size of the FloatingWindow even when invisible
     578             :     // as KEY_PGUP/DOWN is being processed...
     579           0 :     if ( mpFloatWin )
     580           0 :         mpFloatWin->SetSizePixel( mpFloatWin->CalcFloatSize() );
     581           0 : }
     582             : 
     583           0 : void ComboBox::FillLayoutData() const
     584             : {
     585           0 :     mpControlData->mpLayoutData = new vcl::ControlLayoutData();
     586           0 :     AppendLayoutData( *mpSubEdit );
     587           0 :     mpSubEdit->SetLayoutDataParent( this );
     588           0 :     Control* pMainWindow = mpImplLB->GetMainWindow();
     589           0 :     if( mpFloatWin )
     590             :     {
     591             :         // dropdown mode
     592           0 :         if( mpFloatWin->IsReallyVisible() )
     593             :         {
     594           0 :             AppendLayoutData( *pMainWindow );
     595           0 :             pMainWindow->SetLayoutDataParent( this );
     596             :         }
     597             :     }
     598             :     else
     599             :     {
     600           0 :         AppendLayoutData( *pMainWindow );
     601           0 :         pMainWindow->SetLayoutDataParent( this );
     602             :     }
     603           0 : }
     604             : 
     605           0 : void ComboBox::StateChanged( StateChangedType nType )
     606             : {
     607           0 :     Edit::StateChanged( nType );
     608             : 
     609           0 :     if ( nType == STATE_CHANGE_READONLY )
     610             :     {
     611           0 :         mpImplLB->SetReadOnly( IsReadOnly() );
     612           0 :         if ( mpBtn )
     613           0 :             mpBtn->Enable( IsEnabled() && !IsReadOnly() );
     614             :     }
     615           0 :     else if ( nType == STATE_CHANGE_ENABLE )
     616             :     {
     617           0 :         mpSubEdit->Enable( IsEnabled() );
     618           0 :         mpImplLB->Enable( IsEnabled() && !IsReadOnly() );
     619           0 :         if ( mpBtn )
     620           0 :             mpBtn->Enable( IsEnabled() && !IsReadOnly() );
     621           0 :         Invalidate();
     622             :     }
     623           0 :     else if( nType == STATE_CHANGE_UPDATEMODE )
     624             :     {
     625           0 :         mpImplLB->SetUpdateMode( IsUpdateMode() );
     626             :     }
     627           0 :     else if ( nType == STATE_CHANGE_ZOOM )
     628             :     {
     629           0 :         mpImplLB->SetZoom( GetZoom() );
     630           0 :         mpSubEdit->SetZoom( GetZoom() );
     631           0 :         ImplCalcEditHeight();
     632           0 :         Resize();
     633             :     }
     634           0 :     else if ( nType == STATE_CHANGE_CONTROLFONT )
     635             :     {
     636           0 :         mpImplLB->SetControlFont( GetControlFont() );
     637           0 :         mpSubEdit->SetControlFont( GetControlFont() );
     638           0 :         ImplCalcEditHeight();
     639           0 :         Resize();
     640             :     }
     641           0 :     else if ( nType == STATE_CHANGE_CONTROLFOREGROUND )
     642             :     {
     643           0 :         mpImplLB->SetControlForeground( GetControlForeground() );
     644           0 :         mpSubEdit->SetControlForeground( GetControlForeground() );
     645             :     }
     646           0 :     else if ( nType == STATE_CHANGE_CONTROLBACKGROUND )
     647             :     {
     648           0 :         mpImplLB->SetControlBackground( GetControlBackground() );
     649           0 :         mpSubEdit->SetControlBackground( GetControlBackground() );
     650             :     }
     651           0 :     else if ( nType == STATE_CHANGE_STYLE )
     652             :     {
     653           0 :         SetStyle( ImplInitStyle( GetStyle() ) );
     654           0 :         mpImplLB->GetMainWindow()->EnableSort( ( GetStyle() & WB_SORT ) ? true : false );
     655             :     }
     656           0 :     else if( nType == STATE_CHANGE_MIRRORING )
     657             :     {
     658           0 :         if( mpBtn )
     659             :         {
     660           0 :             mpBtn->EnableRTL( IsRTLEnabled() );
     661           0 :             ImplInitDropDownButton( mpBtn );
     662             :         }
     663           0 :         mpSubEdit->StateChanged( STATE_CHANGE_MIRRORING );
     664           0 :         mpImplLB->EnableRTL( IsRTLEnabled() );
     665           0 :         Resize();
     666             :     }
     667           0 : }
     668             : 
     669           0 : void ComboBox::DataChanged( const DataChangedEvent& rDCEvt )
     670             : {
     671           0 :     Control::DataChanged( rDCEvt );
     672             : 
     673           0 :     if ( (rDCEvt.GetType() == DATACHANGED_FONTS) ||
     674           0 :          (rDCEvt.GetType() == DATACHANGED_FONTSUBSTITUTION) ||
     675           0 :          ((rDCEvt.GetType() == DATACHANGED_SETTINGS) &&
     676           0 :           (rDCEvt.GetFlags() & SETTINGS_STYLE)) )
     677             :     {
     678           0 :         if ( mpBtn )
     679             :         {
     680           0 :             mpBtn->SetSettings( GetSettings() );
     681           0 :             ImplInitDropDownButton( mpBtn );
     682             :         }
     683           0 :         Resize();
     684           0 :         mpImplLB->Resize(); // not called by ComboBox::Resize() if ImplLB is unchanged
     685             : 
     686           0 :         SetBackground();    // due to a hack in Window::UpdateSettings the background must be reset
     687             :                             // otherwise it will overpaint NWF drawn comboboxes
     688             :     }
     689           0 : }
     690             : 
     691           0 : bool ComboBox::PreNotify( NotifyEvent& rNEvt )
     692             : {
     693             : 
     694           0 :     return Edit::PreNotify( rNEvt );
     695             : }
     696             : 
     697           0 : bool ComboBox::Notify( NotifyEvent& rNEvt )
     698             : {
     699           0 :     bool nDone = false;
     700           0 :     if( ( rNEvt.GetType() == EVENT_KEYINPUT ) && ( rNEvt.GetWindow() == mpSubEdit )
     701           0 :             && !IsReadOnly() )
     702             :     {
     703           0 :         KeyEvent aKeyEvt = *rNEvt.GetKeyEvent();
     704           0 :         sal_uInt16   nKeyCode = aKeyEvt.GetKeyCode().GetCode();
     705           0 :         switch( nKeyCode )
     706             :         {
     707             :             case KEY_UP:
     708             :             case KEY_DOWN:
     709             :             case KEY_PAGEUP:
     710             :             case KEY_PAGEDOWN:
     711             :             {
     712           0 :                 ImplUpdateFloatSelection();
     713           0 :                 if( ( nKeyCode == KEY_DOWN ) && mpFloatWin && !mpFloatWin->IsInPopupMode() && aKeyEvt.GetKeyCode().IsMod2() )
     714             :                 {
     715           0 :                     ImplCallEventListeners( VCLEVENT_DROPDOWN_PRE_OPEN );
     716           0 :                     mpBtn->SetPressed( true );
     717           0 :                     if ( mpImplLB->GetEntryList()->GetMRUCount() )
     718           0 :                         mpImplLB->SelectEntry( 0 , true );
     719           0 :                     SetSelection( Selection( 0, SELECTION_MAX ) );
     720           0 :                     mpFloatWin->StartFloat( false );
     721           0 :                     ImplCallEventListeners( VCLEVENT_DROPDOWN_OPEN );
     722           0 :                     nDone = true;
     723             :                 }
     724           0 :                 else if( ( nKeyCode == KEY_UP ) && mpFloatWin && mpFloatWin->IsInPopupMode() && aKeyEvt.GetKeyCode().IsMod2() )
     725             :                 {
     726           0 :                     mpFloatWin->EndPopupMode();
     727           0 :                     nDone = true;
     728             :                 }
     729             :                 else
     730             :                 {
     731           0 :                     nDone = mpImplLB->ProcessKeyInput( aKeyEvt );
     732             :                 }
     733             :             }
     734           0 :             break;
     735             : 
     736             :             case KEY_RETURN:
     737             :             {
     738           0 :                 if( ( rNEvt.GetWindow() == mpSubEdit ) && IsInDropDown() )
     739             :                 {
     740           0 :                     mpImplLB->ProcessKeyInput( aKeyEvt );
     741           0 :                     nDone = true;
     742             :                 }
     743             :             }
     744           0 :             break;
     745             :         }
     746             :     }
     747           0 :     else if ( (rNEvt.GetType() == EVENT_LOSEFOCUS) && mpFloatWin )
     748             :     {
     749           0 :         if( mpFloatWin->HasChildPathFocus() )
     750           0 :             mpSubEdit->GrabFocus();
     751           0 :         else if ( mpFloatWin->IsInPopupMode() && !HasChildPathFocus( true ) )
     752           0 :             mpFloatWin->EndPopupMode();
     753             :     }
     754           0 :     else if( (rNEvt.GetType() == EVENT_COMMAND) &&
     755           0 :              (rNEvt.GetCommandEvent()->GetCommand() == COMMAND_WHEEL) &&
     756           0 :              (rNEvt.GetWindow() == mpSubEdit) )
     757             :     {
     758           0 :         sal_uInt16 nWheelBehavior( GetSettings().GetMouseSettings().GetWheelBehavior() );
     759           0 :         if  (   ( nWheelBehavior == MOUSE_WHEEL_ALWAYS )
     760           0 :             ||  (   ( nWheelBehavior == MOUSE_WHEEL_FOCUS_ONLY )
     761           0 :                 &&  HasChildPathFocus()
     762             :                 )
     763             :             )
     764             :         {
     765           0 :             nDone = mpImplLB->HandleWheelAsCursorTravel( *rNEvt.GetCommandEvent() );
     766             :         }
     767             :         else
     768             :         {
     769           0 :             nDone = false;  // don't eat this event, let the default handling happen (i.e. scroll the context)
     770             :         }
     771             :     }
     772           0 :     else if( ( rNEvt.GetType() == EVENT_MOUSEBUTTONDOWN ) && ( rNEvt.GetWindow() == mpImplLB->GetMainWindow() ) )
     773             :     {
     774           0 :         mpSubEdit->GrabFocus();
     775             :     }
     776             : 
     777           0 :     return nDone || Edit::Notify( rNEvt );
     778             : }
     779             : 
     780           0 : void ComboBox::SetText( const OUString& rStr )
     781             : {
     782           0 :     ImplCallEventListeners( VCLEVENT_COMBOBOX_SETTEXT );
     783             : 
     784           0 :     Edit::SetText( rStr );
     785           0 :     ImplUpdateFloatSelection();
     786           0 : }
     787             : 
     788           0 : void ComboBox::SetText( const OUString& rStr, const Selection& rNewSelection )
     789             : {
     790           0 :     ImplCallEventListeners( VCLEVENT_COMBOBOX_SETTEXT );
     791             : 
     792           0 :     Edit::SetText( rStr, rNewSelection );
     793           0 :     ImplUpdateFloatSelection();
     794           0 : }
     795             : 
     796           0 : void ComboBox::Modify()
     797             : {
     798           0 :     if ( !mbSyntheticModify )
     799           0 :         ImplUpdateFloatSelection();
     800             : 
     801           0 :     Edit::Modify();
     802           0 : }
     803             : 
     804           0 : void ComboBox::ImplUpdateFloatSelection()
     805             : {
     806             :     // move text in the ListBox into the visible region
     807           0 :     mpImplLB->SetCallSelectionChangedHdl( false );
     808           0 :     if ( !IsMultiSelectionEnabled() )
     809             :     {
     810           0 :         OUString        aSearchStr( mpSubEdit->GetText() );
     811           0 :         sal_Int32       nSelect = LISTBOX_ENTRY_NOTFOUND;
     812           0 :         bool        bSelect = true;
     813             : 
     814           0 :         if ( mpImplLB->GetCurrentPos() != LISTBOX_ENTRY_NOTFOUND )
     815             :         {
     816           0 :             OUString aCurrent = mpImplLB->GetEntryList()->GetEntryText( mpImplLB->GetCurrentPos() );
     817           0 :             if ( aCurrent == aSearchStr )
     818           0 :                 nSelect = mpImplLB->GetCurrentPos();
     819             :         }
     820             : 
     821           0 :         if ( nSelect == LISTBOX_ENTRY_NOTFOUND )
     822           0 :             nSelect = mpImplLB->GetEntryList()->FindEntry( aSearchStr );
     823           0 :         if ( nSelect == LISTBOX_ENTRY_NOTFOUND )
     824             :         {
     825           0 :             nSelect = mpImplLB->GetEntryList()->FindMatchingEntry( aSearchStr );
     826           0 :             bSelect = false;
     827             :         }
     828             : 
     829           0 :         if( nSelect != LISTBOX_ENTRY_NOTFOUND )
     830             :         {
     831           0 :             if ( !mpImplLB->IsVisible( nSelect ) )
     832           0 :                 mpImplLB->ShowProminentEntry( nSelect );
     833           0 :             mpImplLB->SelectEntry( nSelect, bSelect );
     834             :         }
     835             :         else
     836             :         {
     837           0 :             nSelect = mpImplLB->GetEntryList()->GetSelectEntryPos( 0 );
     838           0 :             if( nSelect != LISTBOX_ENTRY_NOTFOUND )
     839           0 :                 mpImplLB->SelectEntry( nSelect, false );
     840           0 :             mpImplLB->ResetCurrentPos();
     841           0 :         }
     842             :     }
     843             :     else
     844             :     {
     845           0 :         ::std::set< sal_Int32 > aSelInText;
     846           0 :         lcl_GetSelectedEntries( aSelInText, mpSubEdit->GetText(), mcMultiSep, mpImplLB->GetEntryList() );
     847           0 :         for ( sal_Int32 n = 0; n < mpImplLB->GetEntryList()->GetEntryCount(); n++ )
     848           0 :             mpImplLB->SelectEntry( n, aSelInText.count( n ) );
     849             :     }
     850           0 :     mpImplLB->SetCallSelectionChangedHdl( true );
     851           0 : }
     852             : 
     853           0 : sal_Int32 ComboBox::InsertEntry(const OUString& rStr, sal_Int32 const nPos)
     854             : {
     855           0 :     if (nPos < 0 || COMBOBOX_MAX_ENTRIES <= mpImplLB->GetEntryList()->GetEntryCount())
     856           0 :         return COMBOBOX_ERROR;
     857             : 
     858             :     sal_Int32 nRealPos;
     859           0 :     if (nPos == COMBOBOX_APPEND)
     860           0 :         nRealPos = nPos;
     861             :     else
     862             :     {
     863           0 :         const sal_Int32 nMRUCount = mpImplLB->GetEntryList()->GetMRUCount();
     864           0 :         if (nPos > COMBOBOX_MAX_ENTRIES - nMRUCount)
     865           0 :             return COMBOBOX_ERROR;
     866           0 :         nRealPos = nPos + nMRUCount;
     867             :     }
     868             : 
     869           0 :     nRealPos = mpImplLB->InsertEntry( nRealPos, rStr );
     870           0 :     nRealPos -= mpImplLB->GetEntryList()->GetMRUCount();
     871           0 :     CallEventListeners( VCLEVENT_COMBOBOX_ITEMADDED, (void*) sal_IntPtr(nRealPos) );
     872           0 :     return nRealPos;
     873             : }
     874             : 
     875           0 : void ComboBox::InsertEntryWithImage(
     876             :         const OUString& rStr, const Image& rImage, sal_Int32 const nPos)
     877             : {
     878           0 :     if (nPos < 0 || COMBOBOX_MAX_ENTRIES <= mpImplLB->GetEntryList()->GetEntryCount())
     879           0 :         return;
     880             : 
     881             :     sal_Int32 nRealPos;
     882           0 :     if (nPos == COMBOBOX_APPEND)
     883           0 :         nRealPos = nPos;
     884             :     else
     885             :     {
     886           0 :         const sal_Int32 nMRUCount = mpImplLB->GetEntryList()->GetMRUCount();
     887           0 :         if (nPos > COMBOBOX_MAX_ENTRIES - nMRUCount)
     888           0 :             return;
     889           0 :         nRealPos = nPos + nMRUCount;
     890             :     }
     891             : 
     892           0 :     nRealPos = mpImplLB->InsertEntry( nRealPos, rStr, rImage );
     893           0 :     nRealPos -= mpImplLB->GetEntryList()->GetMRUCount();
     894           0 :     CallEventListeners( VCLEVENT_COMBOBOX_ITEMADDED, (void*) sal_IntPtr(nRealPos) );
     895             : }
     896             : 
     897           0 : void ComboBox::RemoveEntry( const OUString& rStr )
     898             : {
     899           0 :     RemoveEntryAt(GetEntryPos(rStr));
     900           0 : }
     901             : 
     902           0 : void ComboBox::RemoveEntryAt(sal_Int32 const nPos)
     903             : {
     904           0 :     const sal_Int32 nMRUCount = mpImplLB->GetEntryList()->GetMRUCount();
     905           0 :     if (nPos < 0 || nPos > COMBOBOX_MAX_ENTRIES - nMRUCount)
     906           0 :         return;
     907             : 
     908           0 :     mpImplLB->RemoveEntry( nPos + nMRUCount );
     909           0 :     CallEventListeners( VCLEVENT_COMBOBOX_ITEMREMOVED, (void*) sal_IntPtr(nPos) );
     910             : }
     911             : 
     912           0 : void ComboBox::Clear()
     913             : {
     914           0 :     mpImplLB->Clear();
     915           0 :     CallEventListeners( VCLEVENT_COMBOBOX_ITEMREMOVED, (void*) sal_IntPtr(-1) );
     916           0 : }
     917             : 
     918           0 : Image ComboBox::GetEntryImage( sal_Int32 nPos ) const
     919             : {
     920           0 :     if ( mpImplLB->GetEntryList()->HasEntryImage( nPos ) )
     921           0 :         return mpImplLB->GetEntryList()->GetEntryImage( nPos );
     922           0 :     return Image();
     923             : }
     924             : 
     925           0 : sal_Int32 ComboBox::GetEntryPos( const OUString& rStr ) const
     926             : {
     927           0 :     sal_Int32 nPos = mpImplLB->GetEntryList()->FindEntry( rStr );
     928           0 :     if ( nPos != LISTBOX_ENTRY_NOTFOUND )
     929           0 :         nPos -= mpImplLB->GetEntryList()->GetMRUCount();
     930           0 :     return nPos;
     931             : }
     932             : 
     933           0 : OUString ComboBox::GetEntry( sal_Int32 nPos ) const
     934             : {
     935           0 :     const sal_Int32 nMRUCount = mpImplLB->GetEntryList()->GetMRUCount();
     936           0 :     if (nPos < 0 || nPos > COMBOBOX_MAX_ENTRIES - nMRUCount)
     937           0 :         return OUString();
     938             : 
     939           0 :     return mpImplLB->GetEntryList()->GetEntryText( nPos + nMRUCount );
     940             : }
     941             : 
     942           0 : sal_Int32 ComboBox::GetEntryCount() const
     943             : {
     944           0 :     return mpImplLB->GetEntryList()->GetEntryCount() - mpImplLB->GetEntryList()->GetMRUCount();
     945             : }
     946             : 
     947           0 : bool ComboBox::IsTravelSelect() const
     948             : {
     949           0 :     return mpImplLB->IsTravelSelect();
     950             : }
     951             : 
     952           0 : bool ComboBox::IsInDropDown() const
     953             : {
     954           0 :     return mpFloatWin && mpFloatWin->IsInPopupMode();
     955             : }
     956             : 
     957           0 : void ComboBox::EnableMultiSelection( bool bMulti )
     958             : {
     959           0 :     mpImplLB->EnableMultiSelection( bMulti, false );
     960           0 :     mpImplLB->SetMultiSelectionSimpleMode( true );
     961           0 : }
     962             : 
     963           0 : bool ComboBox::IsMultiSelectionEnabled() const
     964             : {
     965           0 :     return mpImplLB->IsMultiSelectionEnabled();
     966             : }
     967             : 
     968           0 : long ComboBox::CalcWindowSizePixel( sal_uInt16 nLines ) const
     969             : {
     970           0 :     return mpImplLB->GetEntryHeight() * nLines;
     971             : }
     972             : 
     973           0 : Size ComboBox::GetOptimalSize() const
     974             : {
     975           0 :     return CalcMinimumSize();
     976             : }
     977             : 
     978           0 : long ComboBox::getMaxWidthScrollBarAndDownButton() const
     979             : {
     980           0 :     long nButtonDownWidth = 0;
     981             : 
     982           0 :     Window *pBorder = GetWindow( WINDOW_BORDER );
     983           0 :     ImplControlValue aControlValue;
     984           0 :     Point aPoint;
     985           0 :     Rectangle aContent, aBound;
     986             : 
     987             :     // use the full extent of the control
     988           0 :     Rectangle aArea( aPoint, pBorder->GetOutputSizePixel() );
     989             : 
     990           0 :     if ( GetNativeControlRegion(CTRL_COMBOBOX, PART_BUTTON_DOWN,
     991           0 :         aArea, 0, aControlValue, OUString(), aBound, aContent) )
     992             :     {
     993           0 :         nButtonDownWidth = aContent.getWidth();
     994             :     }
     995             : 
     996           0 :     long nScrollBarWidth = GetSettings().GetStyleSettings().GetScrollBarSize();
     997             : 
     998           0 :     return std::max(nScrollBarWidth, nButtonDownWidth);
     999             : }
    1000             : 
    1001           0 : Size ComboBox::CalcMinimumSize() const
    1002             : {
    1003           0 :     Size aSz;
    1004             : 
    1005           0 :     if (!mpImplLB)
    1006           0 :         return aSz;
    1007             : 
    1008           0 :     if (!IsDropDownBox())
    1009             :     {
    1010           0 :         aSz = mpImplLB->CalcSize( mpImplLB->GetEntryList()->GetEntryCount() );
    1011           0 :         aSz.Height() += mnDDHeight;
    1012             :     }
    1013             :     else
    1014             :     {
    1015           0 :         aSz.Height() = Edit::CalcMinimumSizeForText(GetText()).Height();
    1016           0 :         aSz.Width() = mpImplLB->GetMaxEntryWidth();
    1017             :     }
    1018             : 
    1019           0 :     if (m_nMaxWidthChars != -1)
    1020             :     {
    1021           0 :         long nMaxWidth = m_nMaxWidthChars * approximate_char_width();
    1022           0 :         aSz.Width() = std::min(aSz.Width(), nMaxWidth);
    1023             :     }
    1024             : 
    1025           0 :     if (IsDropDownBox())
    1026           0 :         aSz.Width() += getMaxWidthScrollBarAndDownButton();
    1027             : 
    1028             :     ComboBoxBounds aBounds(calcComboBoxDropDownComponentBounds(
    1029           0 :         Size(0xFFFF, 0xFFFF), Size(0xFFFF, 0xFFFF)));
    1030           0 :     aSz.Width() += aBounds.aSubEditPos.X()*2;
    1031             : 
    1032           0 :     aSz.Width() += ImplGetExtraOffset() * 2;
    1033             : 
    1034           0 :     aSz = CalcWindowSize( aSz );
    1035           0 :     return aSz;
    1036             : }
    1037             : 
    1038           0 : Size ComboBox::CalcAdjustedSize( const Size& rPrefSize ) const
    1039             : {
    1040           0 :     Size aSz = rPrefSize;
    1041             :     sal_Int32 nLeft, nTop, nRight, nBottom;
    1042           0 :     ((Window*)this)->GetBorder( nLeft, nTop, nRight, nBottom );
    1043           0 :     aSz.Height() -= nTop+nBottom;
    1044           0 :     if ( !IsDropDownBox() )
    1045             :     {
    1046           0 :         long nEntryHeight = CalcBlockSize( 1, 1 ).Height();
    1047           0 :         long nLines = aSz.Height() / nEntryHeight;
    1048           0 :         if ( nLines < 1 )
    1049           0 :             nLines = 1;
    1050           0 :         aSz.Height() = nLines * nEntryHeight;
    1051           0 :         aSz.Height() += mnDDHeight;
    1052             :     }
    1053             :     else
    1054             :     {
    1055           0 :         aSz.Height() = mnDDHeight;
    1056             :     }
    1057           0 :     aSz.Height() += nTop+nBottom;
    1058             : 
    1059           0 :     aSz = CalcWindowSize( aSz );
    1060           0 :     return aSz;
    1061             : }
    1062             : 
    1063           0 : Size ComboBox::CalcBlockSize( sal_uInt16 nColumns, sal_uInt16 nLines ) const
    1064             : {
    1065             :     // show ScrollBars where appropriate
    1066           0 :     Size aMinSz = CalcMinimumSize();
    1067           0 :     Size aSz;
    1068             : 
    1069             :     // height
    1070           0 :     if ( nLines )
    1071             :     {
    1072           0 :         if ( !IsDropDownBox() )
    1073           0 :             aSz.Height() = mpImplLB->CalcSize( nLines ).Height() + mnDDHeight;
    1074             :         else
    1075           0 :             aSz.Height() = mnDDHeight;
    1076             :     }
    1077             :     else
    1078           0 :         aSz.Height() = aMinSz.Height();
    1079             : 
    1080             :     // width
    1081           0 :     if ( nColumns )
    1082           0 :         aSz.Width() = nColumns * approximate_char_width();
    1083             :     else
    1084           0 :         aSz.Width() = aMinSz.Width();
    1085             : 
    1086           0 :     if ( IsDropDownBox() )
    1087           0 :         aSz.Width() += getMaxWidthScrollBarAndDownButton();
    1088             : 
    1089           0 :     if ( !IsDropDownBox() )
    1090             :     {
    1091           0 :         if ( aSz.Width() < aMinSz.Width() )
    1092           0 :             aSz.Height() += GetSettings().GetStyleSettings().GetScrollBarSize();
    1093           0 :         if ( aSz.Height() < aMinSz.Height() )
    1094           0 :             aSz.Width() += GetSettings().GetStyleSettings().GetScrollBarSize();
    1095             :     }
    1096             : 
    1097           0 :     aSz.Width() += ImplGetExtraOffset() * 2;
    1098             : 
    1099           0 :     aSz = CalcWindowSize( aSz );
    1100           0 :     return aSz;
    1101             : }
    1102             : 
    1103           0 : void ComboBox::GetMaxVisColumnsAndLines( sal_uInt16& rnCols, sal_uInt16& rnLines ) const
    1104             : {
    1105           0 :     long nCharWidth = GetTextWidth(OUString(static_cast<sal_Unicode>('x')));
    1106           0 :     if ( !IsDropDownBox() )
    1107             :     {
    1108           0 :         Size aOutSz = mpImplLB->GetMainWindow()->GetOutputSizePixel();
    1109           0 :         rnCols = (sal_uInt16)(aOutSz.Width()/nCharWidth);
    1110           0 :         rnLines = (sal_uInt16)(aOutSz.Height()/mpImplLB->GetEntryHeight());
    1111             :     }
    1112             :     else
    1113             :     {
    1114           0 :         Size aOutSz = mpSubEdit->GetOutputSizePixel();
    1115           0 :         rnCols = (sal_uInt16)(aOutSz.Width()/nCharWidth);
    1116           0 :         rnLines = 1;
    1117             :     }
    1118           0 : }
    1119             : 
    1120           0 : void ComboBox::Draw( OutputDevice* pDev, const Point& rPos, const Size& rSize, sal_uLong nFlags )
    1121             : {
    1122           0 :     mpImplLB->GetMainWindow()->ImplInitSettings( true, true, true );
    1123             : 
    1124           0 :     Point aPos = pDev->LogicToPixel( rPos );
    1125           0 :     Size aSize = pDev->LogicToPixel( rSize );
    1126           0 :     Font aFont = mpImplLB->GetMainWindow()->GetDrawPixelFont( pDev );
    1127           0 :     OutDevType eOutDevType = pDev->GetOutDevType();
    1128             : 
    1129           0 :     pDev->Push();
    1130           0 :     pDev->SetMapMode();
    1131           0 :     pDev->SetFont( aFont );
    1132           0 :     pDev->SetTextFillColor();
    1133             : 
    1134             :     // Border/Background
    1135           0 :     pDev->SetLineColor();
    1136           0 :     pDev->SetFillColor();
    1137           0 :     bool bBorder = !(nFlags & WINDOW_DRAW_NOBORDER ) && (GetStyle() & WB_BORDER);
    1138           0 :     bool bBackground = !(nFlags & WINDOW_DRAW_NOBACKGROUND) && IsControlBackground();
    1139           0 :     if ( bBorder || bBackground )
    1140             :     {
    1141           0 :         Rectangle aRect( aPos, aSize );
    1142             :         // aRect.Top() += nEditHeight;
    1143           0 :         if ( bBorder )
    1144             :         {
    1145           0 :             ImplDrawFrame( pDev, aRect );
    1146             :         }
    1147           0 :         if ( bBackground )
    1148             :         {
    1149           0 :             pDev->SetFillColor( GetControlBackground() );
    1150           0 :             pDev->DrawRect( aRect );
    1151             :         }
    1152             :     }
    1153             : 
    1154             :     // contents
    1155           0 :     if ( !IsDropDownBox() )
    1156             :     {
    1157           0 :         long        nOnePixel = GetDrawPixel( pDev, 1 );
    1158           0 :         long        nTextHeight = pDev->GetTextHeight();
    1159           0 :         long        nEditHeight = nTextHeight + 6*nOnePixel;
    1160           0 :         sal_uInt16      nTextStyle = TEXT_DRAW_VCENTER;
    1161             : 
    1162             :         // First, draw the edit part
    1163           0 :         mpSubEdit->Draw( pDev, aPos, Size( aSize.Width(), nEditHeight ), nFlags );
    1164             : 
    1165             :         // Second, draw the listbox
    1166           0 :         if ( GetStyle() & WB_CENTER )
    1167           0 :             nTextStyle |= TEXT_DRAW_CENTER;
    1168           0 :         else if ( GetStyle() & WB_RIGHT )
    1169           0 :             nTextStyle |= TEXT_DRAW_RIGHT;
    1170             :         else
    1171           0 :             nTextStyle |= TEXT_DRAW_LEFT;
    1172             : 
    1173           0 :         if ( ( nFlags & WINDOW_DRAW_MONO ) || ( eOutDevType == OUTDEV_PRINTER ) )
    1174             :         {
    1175           0 :             pDev->SetTextColor( Color( COL_BLACK ) );
    1176             :         }
    1177             :         else
    1178             :         {
    1179           0 :             if ( !(nFlags & WINDOW_DRAW_NODISABLE ) && !IsEnabled() )
    1180             :             {
    1181           0 :                 const StyleSettings& rStyleSettings = GetSettings().GetStyleSettings();
    1182           0 :                 pDev->SetTextColor( rStyleSettings.GetDisableColor() );
    1183             :             }
    1184             :             else
    1185             :             {
    1186           0 :                 pDev->SetTextColor( GetTextColor() );
    1187             :             }
    1188             :         }
    1189             : 
    1190           0 :         Rectangle aClip( aPos, aSize );
    1191           0 :         pDev->IntersectClipRegion( aClip );
    1192           0 :         sal_uInt16 nLines = (sal_uInt16) ( (aSize.Height()-nEditHeight) / nTextHeight );
    1193           0 :         if ( !nLines )
    1194           0 :             nLines = 1;
    1195           0 :         sal_uInt16 nTEntry = IsReallyVisible() ? mpImplLB->GetTopEntry() : 0;
    1196             : 
    1197           0 :         Rectangle aTextRect( aPos, aSize );
    1198             : 
    1199           0 :         aTextRect.Left() += 3*nOnePixel;
    1200           0 :         aTextRect.Right() -= 3*nOnePixel;
    1201           0 :         aTextRect.Top() += nEditHeight + nOnePixel;
    1202           0 :         aTextRect.Bottom() = aTextRect.Top() + nTextHeight;
    1203             : 
    1204             :         // the drawing starts here
    1205           0 :         for ( sal_uInt16 n = 0; n < nLines; n++ )
    1206             :         {
    1207           0 :             pDev->DrawText( aTextRect, mpImplLB->GetEntryList()->GetEntryText( n+nTEntry ), nTextStyle );
    1208           0 :             aTextRect.Top() += nTextHeight;
    1209           0 :             aTextRect.Bottom() += nTextHeight;
    1210             :         }
    1211             :     }
    1212             : 
    1213           0 :     pDev->Pop();
    1214             : 
    1215             :     // Call Edit::Draw after restoring the MapMode...
    1216           0 :     if ( IsDropDownBox() )
    1217             :     {
    1218           0 :         mpSubEdit->Draw( pDev, rPos, rSize, nFlags );
    1219             :         // DD-Button ?
    1220           0 :     }
    1221             : 
    1222           0 : }
    1223             : 
    1224           0 : IMPL_LINK( ComboBox, ImplUserDrawHdl, UserDrawEvent*, pEvent )
    1225             : {
    1226           0 :     UserDraw( *pEvent );
    1227           0 :     return 1;
    1228             : }
    1229             : 
    1230           0 : void ComboBox::UserDraw( const UserDrawEvent& )
    1231             : {
    1232           0 : }
    1233             : 
    1234           0 : void ComboBox::SetUserItemSize( const Size& rSz )
    1235             : {
    1236           0 :     mpImplLB->GetMainWindow()->SetUserItemSize( rSz );
    1237           0 : }
    1238             : 
    1239           0 : void ComboBox::EnableUserDraw( bool bUserDraw )
    1240             : {
    1241           0 :     mpImplLB->GetMainWindow()->EnableUserDraw( bUserDraw );
    1242           0 : }
    1243             : 
    1244           0 : void ComboBox::DrawEntry( const UserDrawEvent& rEvt, bool bDrawImage, bool bDrawText, bool bDrawTextAtImagePos )
    1245             : {
    1246             :     DBG_ASSERT( rEvt.GetDevice() == mpImplLB->GetMainWindow(), "DrawEntry?!" );
    1247           0 :     mpImplLB->GetMainWindow()->DrawEntry( rEvt.GetItemId(), bDrawImage, bDrawText, bDrawTextAtImagePos );
    1248           0 : }
    1249             : 
    1250           0 : void ComboBox::SetSeparatorPos( sal_Int32 n )
    1251             : {
    1252           0 :     mpImplLB->SetSeparatorPos( n );
    1253           0 : }
    1254             : 
    1255           0 : void ComboBox::SetMRUEntries( const OUString& rEntries, sal_Unicode cSep )
    1256             : {
    1257           0 :     mpImplLB->SetMRUEntries( rEntries, cSep );
    1258           0 : }
    1259             : 
    1260           0 : OUString ComboBox::GetMRUEntries( sal_Unicode cSep ) const
    1261             : {
    1262           0 :     return mpImplLB->GetMRUEntries( cSep );
    1263             : }
    1264             : 
    1265           0 : void ComboBox::SetMaxMRUCount( sal_Int32 n )
    1266             : {
    1267           0 :     mpImplLB->SetMaxMRUCount( n );
    1268           0 : }
    1269             : 
    1270           0 : sal_Int32 ComboBox::GetMaxMRUCount() const
    1271             : {
    1272           0 :     return mpImplLB->GetMaxMRUCount();
    1273             : }
    1274             : 
    1275           0 : sal_uInt16 ComboBox::GetDisplayLineCount() const
    1276             : {
    1277           0 :     return mpImplLB->GetDisplayLineCount();
    1278             : }
    1279             : 
    1280           0 : void ComboBox::SetEntryData( sal_Int32 nPos, void* pNewData )
    1281             : {
    1282           0 :     mpImplLB->SetEntryData( nPos + mpImplLB->GetEntryList()->GetMRUCount(), pNewData );
    1283           0 : }
    1284             : 
    1285           0 : void* ComboBox::GetEntryData( sal_Int32 nPos ) const
    1286             : {
    1287           0 :     return mpImplLB->GetEntryList()->GetEntryData( nPos + mpImplLB->GetEntryList()->GetMRUCount() );
    1288             : }
    1289             : 
    1290           0 : sal_Int32 ComboBox::GetTopEntry() const
    1291             : {
    1292           0 :     sal_Int32 nPos = GetEntryCount() ? mpImplLB->GetTopEntry() : LISTBOX_ENTRY_NOTFOUND;
    1293           0 :     if ( nPos < mpImplLB->GetEntryList()->GetMRUCount() )
    1294           0 :         nPos = 0;
    1295           0 :     return nPos;
    1296             : }
    1297             : 
    1298           0 : void ComboBox::SetProminentEntryType( ProminentEntry eType )
    1299             : {
    1300           0 :     mpImplLB->SetProminentEntryType( eType );
    1301           0 : }
    1302             : 
    1303           0 : Rectangle ComboBox::GetDropDownPosSizePixel() const
    1304             : {
    1305           0 :     return mpFloatWin ? mpFloatWin->GetWindowExtentsRelative( const_cast<ComboBox*>(this) ) : Rectangle();
    1306             : }
    1307             : 
    1308           0 : const Wallpaper& ComboBox::GetDisplayBackground() const
    1309             : {
    1310           0 :     if( ! mpSubEdit->IsBackground() )
    1311           0 :         return Control::GetDisplayBackground();
    1312             : 
    1313           0 :     const Wallpaper& rBack = mpSubEdit->GetBackground();
    1314           0 :     if( ! rBack.IsBitmap() &&
    1315           0 :         ! rBack.IsGradient() &&
    1316           0 :         rBack.GetColor().GetColor() == COL_TRANSPARENT
    1317             :         )
    1318           0 :         return Control::GetDisplayBackground();
    1319           0 :     return rBack;
    1320             : }
    1321             : 
    1322           0 : sal_Int32 ComboBox::GetSelectEntryCount() const
    1323             : {
    1324           0 :     return mpImplLB->GetEntryList()->GetSelectEntryCount();
    1325             : }
    1326             : 
    1327           0 : sal_Int32 ComboBox::GetSelectEntryPos( sal_Int32 nIndex ) const
    1328             : {
    1329           0 :     sal_Int32 nPos = mpImplLB->GetEntryList()->GetSelectEntryPos( nIndex );
    1330           0 :     if ( nPos != LISTBOX_ENTRY_NOTFOUND )
    1331             :     {
    1332           0 :         if ( nPos < mpImplLB->GetEntryList()->GetMRUCount() )
    1333           0 :             nPos = mpImplLB->GetEntryList()->FindEntry( mpImplLB->GetEntryList()->GetEntryText( nPos ) );
    1334           0 :         nPos = sal::static_int_cast<sal_Int32>(nPos - mpImplLB->GetEntryList()->GetMRUCount());
    1335             :     }
    1336           0 :     return nPos;
    1337             : }
    1338             : 
    1339           0 : bool ComboBox::IsEntryPosSelected( sal_Int32 nPos ) const
    1340             : {
    1341           0 :     return mpImplLB->GetEntryList()->IsEntryPosSelected( nPos + mpImplLB->GetEntryList()->GetMRUCount() );
    1342             : }
    1343             : 
    1344           0 : void ComboBox::SelectEntryPos( sal_Int32 nPos, bool bSelect)
    1345             : {
    1346           0 :     if ( nPos < mpImplLB->GetEntryList()->GetEntryCount() )
    1347           0 :         mpImplLB->SelectEntry( nPos + mpImplLB->GetEntryList()->GetMRUCount(), bSelect );
    1348           0 : }
    1349             : 
    1350           0 : void ComboBox::SetNoSelection()
    1351             : {
    1352           0 :     mpImplLB->SetNoSelection();
    1353           0 :     mpSubEdit->SetText( OUString() );
    1354           0 : }
    1355             : 
    1356           0 : Rectangle ComboBox::GetBoundingRectangle( sal_Int32 nItem ) const
    1357             : {
    1358           0 :     Rectangle aRect = mpImplLB->GetMainWindow()->GetBoundingRectangle( nItem );
    1359           0 :     Rectangle aOffset = mpImplLB->GetMainWindow()->GetWindowExtentsRelative( (Window*)this );
    1360           0 :     aRect.Move( aOffset.TopLeft().X(), aOffset.TopLeft().Y() );
    1361           0 :     return aRect;
    1362             : }
    1363             : 
    1364           0 : void ComboBox::SetBorderStyle( sal_uInt16 nBorderStyle )
    1365             : {
    1366           0 :     Window::SetBorderStyle( nBorderStyle );
    1367           0 :     if ( !IsDropDownBox() )
    1368             :     {
    1369           0 :         mpSubEdit->SetBorderStyle( nBorderStyle );
    1370           0 :         mpImplLB->SetBorderStyle( nBorderStyle );
    1371             :     }
    1372           0 : }
    1373             : 
    1374           0 : long ComboBox::GetIndexForPoint( const Point& rPoint, sal_Int32& rPos ) const
    1375             : {
    1376           0 :     if( !HasLayoutData() )
    1377           0 :         FillLayoutData();
    1378             : 
    1379             :     // check whether rPoint fits at all
    1380           0 :     long nIndex = Control::GetIndexForPoint( rPoint );
    1381           0 :     if( nIndex != -1 )
    1382             :     {
    1383             :         // point must be either in main list window
    1384             :         // or in impl window (dropdown case)
    1385           0 :         ImplListBoxWindow* pMain = mpImplLB->GetMainWindow();
    1386             : 
    1387             :         // convert coordinates to ImplListBoxWindow pixel coordinate space
    1388           0 :         Point aConvPoint = LogicToPixel( rPoint );
    1389           0 :         aConvPoint = OutputToAbsoluteScreenPixel( aConvPoint );
    1390           0 :         aConvPoint = pMain->AbsoluteScreenToOutputPixel( aConvPoint );
    1391           0 :         aConvPoint = pMain->PixelToLogic( aConvPoint );
    1392             : 
    1393             :         // try to find entry
    1394           0 :         sal_Int32 nEntry = pMain->GetEntryPosForPoint( aConvPoint );
    1395           0 :         if( nEntry == LISTBOX_ENTRY_NOTFOUND )
    1396           0 :             nIndex = -1;
    1397             :         else
    1398           0 :             rPos = nEntry;
    1399             :     }
    1400             : 
    1401             :     // get line relative index
    1402           0 :     if( nIndex != -1 )
    1403           0 :         nIndex = ToRelativeLineIndex( nIndex );
    1404             : 
    1405           0 :     return nIndex;
    1406             : }
    1407             : 
    1408           0 : ComboBox::ComboBoxBounds ComboBox::calcComboBoxDropDownComponentBounds(const Size &rOutSz,
    1409             :     const Size &rBorderOutSz) const
    1410             : {
    1411           0 :     ComboBoxBounds aBounds;
    1412             : 
    1413           0 :     long    nTop = 0;
    1414           0 :     long    nBottom = rOutSz.Height();
    1415             : 
    1416           0 :     Window *pBorder = GetWindow( WINDOW_BORDER );
    1417           0 :     ImplControlValue aControlValue;
    1418           0 :     Point aPoint;
    1419           0 :     Rectangle aContent, aBound;
    1420             : 
    1421             :     // use the full extent of the control
    1422           0 :     Rectangle aArea( aPoint, rBorderOutSz );
    1423             : 
    1424           0 :     if ( GetNativeControlRegion(CTRL_COMBOBOX, PART_BUTTON_DOWN,
    1425           0 :             aArea, 0, aControlValue, OUString(), aBound, aContent) )
    1426             :     {
    1427             :         // convert back from border space to local coordinates
    1428           0 :         aPoint = pBorder->ScreenToOutputPixel( OutputToScreenPixel( aPoint ) );
    1429           0 :         aContent.Move(-aPoint.X(), -aPoint.Y());
    1430             : 
    1431           0 :         aBounds.aButtonPos = Point(aContent.Left(), nTop);
    1432           0 :         aBounds.aButtonSize = Size(aContent.getWidth(), (nBottom-nTop));
    1433             : 
    1434             :         // adjust the size of the edit field
    1435           0 :         if ( GetNativeControlRegion(CTRL_COMBOBOX, PART_SUB_EDIT,
    1436           0 :                     aArea, 0, aControlValue, OUString(), aBound, aContent) )
    1437             :         {
    1438             :             // convert back from border space to local coordinates
    1439           0 :             aContent.Move(-aPoint.X(), -aPoint.Y());
    1440             : 
    1441             :             // use the themes drop down size
    1442           0 :             aBounds.aSubEditPos = aContent.TopLeft();
    1443           0 :             aBounds.aSubEditSize = aContent.GetSize();
    1444             :         }
    1445             :         else
    1446             :         {
    1447             :             // use the themes drop down size for the button
    1448           0 :             aBounds.aSubEditSize = Size(rOutSz.Width() - aContent.getWidth(), rOutSz.Height());
    1449             :         }
    1450             :     }
    1451             :     else
    1452             :     {
    1453           0 :         long nSBWidth = GetSettings().GetStyleSettings().GetScrollBarSize();
    1454           0 :         nSBWidth = CalcZoom( nSBWidth );
    1455           0 :         aBounds.aSubEditSize = Size(rOutSz.Width() - nSBWidth, rOutSz.Height());
    1456           0 :         aBounds.aButtonPos = Point(rOutSz.Width() - nSBWidth, nTop);
    1457           0 :         aBounds.aButtonSize = Size(nSBWidth, (nBottom-nTop));
    1458             :     }
    1459           0 :     return aBounds;
    1460             : }
    1461             : 
    1462           0 : void ComboBox::setMaxWidthChars(sal_Int32 nWidth)
    1463             : {
    1464           0 :     if (nWidth != m_nMaxWidthChars)
    1465             :     {
    1466           0 :         m_nMaxWidthChars = nWidth;
    1467           0 :         queue_resize();
    1468             :     }
    1469           0 : }
    1470             : 
    1471           0 : bool ComboBox::set_property(const OString &rKey, const OString &rValue)
    1472             : {
    1473           0 :     if (rKey == "max-width-chars")
    1474           0 :         setMaxWidthChars(rValue.toInt32());
    1475             :     else
    1476           0 :         return Control::set_property(rKey, rValue);
    1477           0 :     return true;
    1478             : }
    1479             : 
    1480             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10