LCOV - code coverage report
Current view: top level - libreoffice/vcl/source/window - btndlg.cxx (source / functions) Hit Total Coverage
Test: libreoffice_filtered.info Lines: 0 199 0.0 %
Date: 2012-12-27 Functions: 0 22 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             : 
      21             : #include <tools/rc.h>
      22             : 
      23             : #include <svdata.hxx>
      24             : 
      25             : #include <vcl/button.hxx>
      26             : #include <vcl/btndlg.hxx>
      27             : 
      28             : typedef boost::ptr_vector<ImplBtnDlgItem>::iterator btn_iterator;
      29             : typedef boost::ptr_vector<ImplBtnDlgItem>::const_iterator btn_const_iterator;
      30             : 
      31             : struct ImplBtnDlgItem
      32             : {
      33             :     sal_uInt16              mnId;
      34             :     bool                mbOwnButton;
      35             :     bool                mbDummyAlign;
      36             :     long                mnSepSize;
      37             :     PushButton*         mpPushButton;
      38             : };
      39             : 
      40           0 : void ButtonDialog::ImplInitButtonDialogData()
      41             : {
      42           0 :     mnButtonSize            = 0;
      43           0 :     mnCurButtonId           = 0;
      44           0 :     mnFocusButtonId         = BUTTONDIALOG_BUTTON_NOTFOUND;
      45           0 :     mbFormat                = sal_True;
      46           0 : }
      47             : 
      48           0 : ButtonDialog::ButtonDialog( WindowType nType ) :
      49           0 :     Dialog( nType )
      50             : {
      51           0 :     ImplInitButtonDialogData();
      52           0 : }
      53             : 
      54           0 : ButtonDialog::ButtonDialog( Window* pParent, WinBits nStyle ) :
      55           0 :     Dialog( WINDOW_BUTTONDIALOG )
      56             : {
      57           0 :     ImplInitButtonDialogData();
      58           0 :     ImplInit( pParent, nStyle );
      59           0 : }
      60             : 
      61           0 : ButtonDialog::~ButtonDialog()
      62             : {
      63           0 :     for ( btn_iterator it = maItemList.begin(); it != maItemList.end(); ++it)
      64             :     {
      65           0 :         if ( it->mpPushButton && it->mbOwnButton )
      66           0 :             delete it->mpPushButton;
      67             :     }
      68           0 : }
      69             : 
      70           0 : PushButton* ButtonDialog::ImplCreatePushButton( sal_uInt16 nBtnFlags )
      71             : {
      72             :     PushButton* pBtn;
      73           0 :     WinBits     nStyle = 0;
      74             : 
      75           0 :     if ( nBtnFlags & BUTTONDIALOG_DEFBUTTON )
      76           0 :         nStyle |= WB_DEFBUTTON;
      77           0 :     if ( nBtnFlags & BUTTONDIALOG_CANCELBUTTON )
      78           0 :         pBtn = new CancelButton( this, nStyle );
      79           0 :     else if ( nBtnFlags & BUTTONDIALOG_OKBUTTON )
      80           0 :         pBtn = new OKButton( this, nStyle );
      81           0 :     else if ( nBtnFlags & BUTTONDIALOG_HELPBUTTON )
      82           0 :         pBtn = new HelpButton( this, nStyle );
      83             :     else
      84           0 :         pBtn = new PushButton( this, nStyle );
      85             : 
      86           0 :     if ( !(nBtnFlags & BUTTONDIALOG_HELPBUTTON) )
      87           0 :         pBtn->SetClickHdl( LINK( this, ButtonDialog, ImplClickHdl ) );
      88             : 
      89           0 :     return pBtn;
      90             : }
      91             : 
      92           0 : ImplBtnDlgItem* ButtonDialog::ImplGetItem( sal_uInt16 nId ) const
      93             : {
      94           0 :     for ( btn_const_iterator it = maItemList.begin(); it != maItemList.end(); ++it)
      95             :     {
      96           0 :         if (it->mnId == nId)
      97           0 :             return const_cast<ImplBtnDlgItem*>(&(*it));
      98             :     }
      99             : 
     100           0 :     return NULL;
     101             : }
     102             : 
     103           0 : long ButtonDialog::ImplGetButtonSize()
     104             : {
     105           0 :     if ( !mbFormat )
     106           0 :         return mnButtonSize;
     107             : 
     108             :     // Calculate ButtonSize
     109           0 :     long nLastSepSize = 0;
     110           0 :     long nSepSize = 0;
     111           0 :     maCtrlSize = Size( IMPL_MINSIZE_BUTTON_WIDTH, IMPL_MINSIZE_BUTTON_HEIGHT );
     112             : 
     113           0 :     for ( btn_iterator it = maItemList.begin(); it != maItemList.end(); ++it)
     114             :     {
     115           0 :         nSepSize += nLastSepSize;
     116             : 
     117           0 :         long nTxtWidth = it->mpPushButton->GetCtrlTextWidth(it->mpPushButton->GetText());
     118           0 :         nTxtWidth += IMPL_EXTRA_BUTTON_WIDTH;
     119             : 
     120           0 :         if ( nTxtWidth > maCtrlSize.Width() )
     121           0 :             maCtrlSize.Width() = nTxtWidth;
     122             : 
     123           0 :         long nTxtHeight = it->mpPushButton->GetTextHeight();
     124           0 :         nTxtHeight += IMPL_EXTRA_BUTTON_HEIGHT;
     125             : 
     126           0 :         if ( nTxtHeight > maCtrlSize.Height() )
     127           0 :             maCtrlSize.Height() = nTxtHeight;
     128             : 
     129           0 :         nSepSize += it->mnSepSize;
     130             : 
     131           0 :         if ( GetStyle() & WB_HORZ )
     132           0 :             nLastSepSize = IMPL_SEP_BUTTON_X;
     133             :         else
     134           0 :             nLastSepSize = IMPL_SEP_BUTTON_Y;
     135             :     }
     136             : 
     137           0 :     long nButtonCount = maItemList.size();
     138             : 
     139           0 :     if ( GetStyle() & WB_HORZ )
     140           0 :         mnButtonSize  = nSepSize + (nButtonCount*maCtrlSize.Width());
     141             :     else
     142           0 :         mnButtonSize = nSepSize + (nButtonCount*maCtrlSize.Height());
     143             : 
     144           0 :     return mnButtonSize;
     145             : }
     146             : 
     147           0 : void ButtonDialog::ImplPosControls()
     148             : {
     149           0 :     if ( !mbFormat )
     150           0 :         return;
     151             : 
     152             :     // Create PushButtons and determine Sizes
     153           0 :     ImplGetButtonSize();
     154             : 
     155             :     // determine dialog size
     156           0 :     Size            aDlgSize = maPageSize;
     157             :     long            nX;
     158             :     long            nY;
     159           0 :     if ( GetStyle() & WB_HORZ )
     160             :     {
     161           0 :         if ( mnButtonSize+(IMPL_DIALOG_OFFSET*2) > aDlgSize.Width() )
     162           0 :             aDlgSize.Width() = mnButtonSize+(IMPL_DIALOG_OFFSET*2);
     163           0 :         if ( GetStyle() & WB_LEFT )
     164           0 :             nX = IMPL_DIALOG_OFFSET;
     165           0 :         else if ( GetStyle() & WB_RIGHT )
     166           0 :             nX = aDlgSize.Width()-mnButtonSize-IMPL_DIALOG_OFFSET;
     167             :         else
     168           0 :             nX = (aDlgSize.Width()-mnButtonSize)/2;
     169             : 
     170           0 :         aDlgSize.Height() += IMPL_DIALOG_OFFSET+maCtrlSize.Height();
     171           0 :         nY = aDlgSize.Height()-maCtrlSize.Height()-IMPL_DIALOG_OFFSET;
     172             :     }
     173             :     else
     174             :     {
     175           0 :         if ( mnButtonSize+(IMPL_DIALOG_OFFSET*2) > aDlgSize.Height() )
     176           0 :             aDlgSize.Height() = mnButtonSize+(IMPL_DIALOG_OFFSET*2);
     177           0 :         if ( GetStyle() & WB_BOTTOM )
     178           0 :             nY = aDlgSize.Height()-mnButtonSize-IMPL_DIALOG_OFFSET;
     179           0 :         else if ( GetStyle() & WB_VCENTER )
     180           0 :             nY = (aDlgSize.Height()-mnButtonSize)/2;
     181             :         else
     182           0 :             nY = IMPL_DIALOG_OFFSET;
     183             : 
     184           0 :         aDlgSize.Width() += IMPL_DIALOG_OFFSET+maCtrlSize.Width();
     185           0 :         nX = aDlgSize.Width()-maCtrlSize.Width()-IMPL_DIALOG_OFFSET;
     186             :     }
     187             : 
     188             :     // Arrange PushButtons
     189           0 :     for ( btn_iterator it = maItemList.begin(); it != maItemList.end(); ++it)
     190             :     {
     191           0 :         if ( GetStyle() & WB_HORZ )
     192           0 :             nX += it->mnSepSize;
     193             :         else
     194           0 :             nY += it->mnSepSize;
     195             : 
     196           0 :         it->mpPushButton->SetPosSizePixel( Point( nX, nY ), maCtrlSize );
     197           0 :         it->mpPushButton->Show();
     198             : 
     199           0 :         if ( GetStyle() & WB_HORZ )
     200           0 :             nX += maCtrlSize.Width()+IMPL_SEP_BUTTON_X;
     201             :         else
     202           0 :             nY += maCtrlSize.Height()+IMPL_SEP_BUTTON_Y;
     203             :     }
     204             : 
     205           0 :     SetOutputSizePixel( aDlgSize );
     206             : 
     207           0 :     mbFormat = sal_False;
     208             : }
     209             : 
     210           0 : IMPL_LINK( ButtonDialog, ImplClickHdl, PushButton*, pBtn )
     211             : {
     212           0 :     for ( btn_iterator it = maItemList.begin(); it != maItemList.end(); ++it)
     213             :     {
     214           0 :         if ( it->mpPushButton == pBtn )
     215             :         {
     216           0 :             mnCurButtonId = it->mnId;
     217           0 :             Click();
     218           0 :             break;
     219             :         }
     220             :     }
     221             : 
     222           0 :     return 0;
     223             : }
     224             : 
     225           0 : void ButtonDialog::Resize()
     226             : {
     227           0 : }
     228             : 
     229           0 : void ButtonDialog::StateChanged( StateChangedType nType )
     230             : {
     231           0 :     if ( nType == STATE_CHANGE_INITSHOW )
     232             :     {
     233           0 :         ImplPosControls();
     234             : 
     235             :         // Set focus on default button.
     236           0 :         if ( mnFocusButtonId != BUTTONDIALOG_BUTTON_NOTFOUND )
     237             :         {
     238           0 :             for ( btn_iterator it = maItemList.begin(); it != maItemList.end(); ++it)
     239             :             {
     240           0 :                 if (it->mnId == mnFocusButtonId )
     241             :                 {
     242           0 :                     if (it->mpPushButton->IsVisible())
     243           0 :                         it->mpPushButton->GrabFocus();
     244             : 
     245           0 :                     break;
     246             :                 }
     247             :             }
     248             :         }
     249             :     }
     250             : 
     251           0 :     Dialog::StateChanged( nType );
     252           0 : }
     253             : 
     254           0 : void ButtonDialog::Click()
     255             : {
     256           0 :     if ( !maClickHdl )
     257             :     {
     258           0 :         if ( IsInExecute() )
     259           0 :             EndDialog( GetCurButtonId() );
     260             :     }
     261             :     else
     262           0 :         maClickHdl.Call( this );
     263           0 : }
     264             : 
     265           0 : void ButtonDialog::AddButton( const XubString& rText, sal_uInt16 nId,
     266             :                               sal_uInt16 nBtnFlags, long nSepPixel )
     267             : {
     268             :     // PageItem anlegen
     269           0 :     ImplBtnDlgItem* pItem   = new ImplBtnDlgItem;
     270           0 :     pItem->mnId             = nId;
     271           0 :     pItem->mbOwnButton      = sal_True;
     272           0 :     pItem->mnSepSize        = nSepPixel;
     273           0 :     pItem->mpPushButton     = ImplCreatePushButton( nBtnFlags );
     274             : 
     275           0 :     if ( rText.Len() )
     276           0 :         pItem->mpPushButton->SetText( rText );
     277             : 
     278           0 :     maItemList.push_back(pItem);
     279             : 
     280           0 :     if ( nBtnFlags & BUTTONDIALOG_FOCUSBUTTON )
     281           0 :         mnFocusButtonId = nId;
     282             : 
     283           0 :     mbFormat = sal_True;
     284           0 : }
     285             : 
     286           0 : void ButtonDialog::AddButton( StandardButtonType eType, sal_uInt16 nId,
     287             :                               sal_uInt16 nBtnFlags, long nSepPixel )
     288             : {
     289             :     // PageItem anlegen
     290           0 :     ImplBtnDlgItem* pItem   = new ImplBtnDlgItem;
     291           0 :     pItem->mnId             = nId;
     292           0 :     pItem->mbOwnButton      = sal_True;
     293           0 :     pItem->mnSepSize        = nSepPixel;
     294             : 
     295           0 :     if ( eType == BUTTON_OK )
     296           0 :         nBtnFlags |= BUTTONDIALOG_OKBUTTON;
     297           0 :     else if ( eType == BUTTON_HELP )
     298           0 :         nBtnFlags |= BUTTONDIALOG_HELPBUTTON;
     299           0 :     else if ( (eType == BUTTON_CANCEL) || (eType == BUTTON_CLOSE) )
     300           0 :         nBtnFlags |= BUTTONDIALOG_CANCELBUTTON;
     301           0 :     pItem->mpPushButton = ImplCreatePushButton( nBtnFlags );
     302             : 
     303             :     // Standard-Buttons have the right text already
     304           0 :     if ( !((eType == BUTTON_OK)     && (pItem->mpPushButton->GetType() == WINDOW_OKBUTTON)) ||
     305           0 :          !((eType == BUTTON_CANCEL) && (pItem->mpPushButton->GetType() == WINDOW_CANCELBUTTON)) ||
     306           0 :          !((eType == BUTTON_HELP)   && (pItem->mpPushButton->GetType() == WINDOW_HELPBUTTON)) )
     307             :     {
     308           0 :         pItem->mpPushButton->SetText( Button::GetStandardText( eType ) );
     309           0 :         pItem->mpPushButton->SetHelpText( Button::GetStandardHelpText( eType ) );
     310             :     }
     311             : 
     312           0 :     if ( nBtnFlags & BUTTONDIALOG_FOCUSBUTTON )
     313           0 :         mnFocusButtonId = nId;
     314             : 
     315           0 :     maItemList.push_back(pItem);
     316             : 
     317           0 :     mbFormat = sal_True;
     318           0 : }
     319             : 
     320           0 : void ButtonDialog::RemoveButton( sal_uInt16 nId )
     321             : {
     322           0 :     btn_iterator it;
     323           0 :     for (it = maItemList.begin(); it != maItemList.end(); ++it)
     324             :     {
     325           0 :         if (it->mnId == nId)
     326             :         {
     327           0 :             it->mpPushButton->Hide();
     328             : 
     329           0 :             if (it->mbOwnButton )
     330           0 :                 delete it->mpPushButton;
     331             : 
     332           0 :             maItemList.erase(it);
     333           0 :             break;
     334             :         }
     335             :     }
     336             : 
     337           0 :     if (it == maItemList.end())
     338             :         SAL_WARN( "vcl.window", "ButtonDialog::RemoveButton(): ButtonId invalid" );
     339           0 : }
     340             : 
     341           0 : void ButtonDialog::Clear()
     342             : {
     343           0 :     for (btn_iterator it = maItemList.begin(); it != maItemList.end(); ++it)
     344             :     {
     345           0 :         it->mpPushButton->Hide();
     346             : 
     347           0 :         if (it->mbOwnButton )
     348           0 :             delete it->mpPushButton;
     349             :     }
     350             : 
     351           0 :     maItemList.clear();
     352           0 :     mbFormat = sal_True;
     353           0 : }
     354             : 
     355           0 : sal_uInt16 ButtonDialog::GetButtonId( sal_uInt16 nButton ) const
     356             : {
     357           0 :     if ( nButton < maItemList.size() )
     358           0 :         return maItemList[nButton].mnId;
     359             :     else
     360           0 :         return BUTTONDIALOG_BUTTON_NOTFOUND;
     361             : }
     362             : 
     363           0 : PushButton* ButtonDialog::GetPushButton( sal_uInt16 nId ) const
     364             : {
     365           0 :     ImplBtnDlgItem* pItem = ImplGetItem( nId );
     366             : 
     367           0 :     if ( pItem )
     368           0 :         return pItem->mpPushButton;
     369             :     else
     370           0 :         return NULL;
     371             : }
     372             : 
     373           0 : void ButtonDialog::SetButtonText( sal_uInt16 nId, const XubString& rText )
     374             : {
     375           0 :     ImplBtnDlgItem* pItem = ImplGetItem( nId );
     376             : 
     377           0 :     if ( pItem )
     378             :     {
     379           0 :         pItem->mpPushButton->SetText( rText );
     380           0 :         mbFormat = sal_True;
     381             :     }
     382           0 : }
     383             : 
     384           0 : void ButtonDialog::SetButtonHelpText( sal_uInt16 nId, const XubString& rText )
     385             : {
     386           0 :     ImplBtnDlgItem* pItem = ImplGetItem( nId );
     387             : 
     388           0 :     if ( pItem )
     389           0 :         pItem->mpPushButton->SetHelpText( rText );
     390           0 : }
     391             : 
     392             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10