LCOV - code coverage report
Current view: top level - formula/source/ui/dlg - structpg.cxx (source / functions) Hit Total Coverage
Test: commit c8344322a7af75b84dd3ca8f78b05543a976dfd5 Lines: 1 92 1.1 %
Date: 2015-06-13 12:38:46 Functions: 2 20 10.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 <svl/zforlist.hxx>
      21             : #include <svl/stritem.hxx>
      22             : #include <vcl/builderfactory.hxx>
      23             : #include "svtools/treelistentry.hxx"
      24             : 
      25             : #include "structpg.hxx"
      26             : #include "formdlgs.hrc"
      27             : #include "formula/formdata.hxx"
      28             : #include "formula/formula.hxx"
      29             : #include "ModuleHelper.hxx"
      30             : #include "formula/IFunctionDescription.hxx"
      31             : #include "ForResId.hrc"
      32             : 
      33             : 
      34             : namespace formula
      35             : {
      36           0 : StructListBox::StructListBox(vcl::Window* pParent, WinBits nBits ):
      37           0 :     SvTreeListBox(pParent, nBits)
      38             : {
      39           0 :     bActiveFlag=false;
      40             : 
      41           0 :     vcl::Font aFont( GetFont() );
      42           0 :     Size aSize = aFont.GetSize();
      43           0 :     aSize.Height() -= 2;
      44           0 :     aFont.SetSize( aSize );
      45           0 :     SetFont( aFont );
      46           0 : }
      47             : 
      48           0 : SvTreeListEntry* StructListBox::InsertStaticEntry(
      49             :         const OUString& rText,
      50             :         const Image& rEntryImg,
      51             :         SvTreeListEntry* pParent, sal_uLong nPos, IFormulaToken* pToken )
      52             : {
      53           0 :     SvTreeListEntry* pEntry = InsertEntry( rText, rEntryImg, rEntryImg, pParent, false, nPos, pToken );
      54           0 :     return pEntry;
      55             : }
      56             : 
      57           0 : void StructListBox::SetActiveFlag(bool bFlag)
      58             : {
      59           0 :     bActiveFlag=bFlag;
      60           0 : }
      61             : 
      62             : 
      63           0 : void StructListBox::MouseButtonDown( const MouseEvent& rMEvt )
      64             : {
      65           0 :     bActiveFlag=true;
      66           0 :     SvTreeListBox::MouseButtonDown(rMEvt);
      67           0 : }
      68             : 
      69           0 : void StructListBox::GetFocus()
      70             : {
      71           0 :     bActiveFlag=true;
      72           0 :     SvTreeListBox::GetFocus();
      73           0 : }
      74             : 
      75           0 : void StructListBox::LoseFocus()
      76             : {
      77           0 :     bActiveFlag=false;
      78           0 :     SvTreeListBox::LoseFocus();
      79           0 : }
      80             : 
      81           0 : VCL_BUILDER_FACTORY_ARGS(StructListBox, WB_BORDER)
      82             : 
      83           0 : StructPage::StructPage(vcl::Window* pParent):
      84             :     TabPage(pParent, "StructPage", "formula/ui/structpage.ui"),
      85             :     maImgEnd        ( ModuleRes( BMP_STR_END ) ),
      86             :     maImgError      ( ModuleRes( BMP_STR_ERROR ) ),
      87           0 :     pSelectedToken  ( NULL )
      88             : {
      89           0 :     get(m_pTlbStruct, "struct");
      90           0 :     Size aSize(LogicToPixel(Size(86, 162), MAP_APPFONT));
      91           0 :     m_pTlbStruct->set_height_request(aSize.Height());
      92           0 :     m_pTlbStruct->set_width_request(aSize.Width());
      93           0 :     m_pTlbStruct->SetStyle(m_pTlbStruct->GetStyle()|WB_HASLINES|WB_CLIPCHILDREN|
      94           0 :                         WB_HASBUTTONS|WB_HSCROLL|WB_NOINITIALSELECTION);
      95             : 
      96           0 :     m_pTlbStruct->SetNodeDefaultImages();
      97           0 :     m_pTlbStruct->SetDefaultExpandedEntryBmp(  Image( ModuleRes( BMP_STR_OPEN  ) ) );
      98           0 :     m_pTlbStruct->SetDefaultCollapsedEntryBmp( Image( ModuleRes( BMP_STR_CLOSE ) ) );
      99             : 
     100             : 
     101           0 :     m_pTlbStruct->SetSelectHdl(LINK( this, StructPage, SelectHdl ) );
     102           0 : }
     103             : 
     104           0 : StructPage::~StructPage()
     105             : {
     106           0 :     disposeOnce();
     107           0 : }
     108             : 
     109           0 : void StructPage::dispose()
     110             : {
     111           0 :     m_pTlbStruct.clear();
     112           0 :     TabPage::dispose();
     113           0 : }
     114             : 
     115           0 : void StructPage::ClearStruct()
     116             : {
     117           0 :     m_pTlbStruct->SetActiveFlag(false);
     118           0 :     m_pTlbStruct->Clear();
     119           0 : }
     120             : 
     121           0 : SvTreeListEntry* StructPage::InsertEntry( const OUString& rText, SvTreeListEntry* pParent,
     122             :                                        sal_uInt16 nFlag,sal_uLong nPos,IFormulaToken* pIFormulaToken)
     123             : {
     124           0 :     m_pTlbStruct->SetActiveFlag( false );
     125             : 
     126           0 :     SvTreeListEntry* pEntry = NULL;
     127           0 :     switch( nFlag )
     128             :     {
     129             :         case STRUCT_FOLDER:
     130           0 :             pEntry = m_pTlbStruct->InsertEntry( rText, pParent, false, nPos, pIFormulaToken );
     131           0 :         break;
     132             :         case STRUCT_END:
     133           0 :             pEntry = m_pTlbStruct->InsertStaticEntry( rText, maImgEnd, pParent, nPos, pIFormulaToken );
     134           0 :         break;
     135             :         case STRUCT_ERROR:
     136           0 :             pEntry = m_pTlbStruct->InsertStaticEntry( rText, maImgError, pParent, nPos, pIFormulaToken );
     137           0 :         break;
     138             :     }
     139             : 
     140           0 :     if( pEntry && pParent )
     141           0 :         m_pTlbStruct->Expand( pParent );
     142           0 :     return pEntry;
     143             : }
     144             : 
     145           0 : OUString StructPage::GetEntryText(SvTreeListEntry* pEntry) const
     146             : {
     147           0 :     OUString aString;
     148           0 :     if(pEntry!=NULL)
     149           0 :         aString = m_pTlbStruct->GetEntryText(pEntry);
     150           0 :     return  aString;
     151             : }
     152             : 
     153           0 : SvTreeListEntry* StructPage::GetParent(SvTreeListEntry* pEntry) const
     154             : {
     155           0 :     return m_pTlbStruct->GetParent(pEntry);
     156             : }
     157           0 : IFormulaToken* StructPage::GetFunctionEntry(SvTreeListEntry* pEntry)
     158             : {
     159           0 :     if(pEntry!=NULL)
     160             :     {
     161           0 :         IFormulaToken * pToken=static_cast<IFormulaToken *>(pEntry->GetUserData());
     162           0 :         if(pToken!=NULL)
     163             :         {
     164           0 :             if ( !(pToken->isFunction() || pToken->getArgumentCount() > 1 ) )
     165             :             {
     166           0 :                 return GetFunctionEntry(m_pTlbStruct->GetParent(pEntry));
     167             :             }
     168             :             else
     169             :             {
     170           0 :                 return pToken;
     171             :             }
     172             :         }
     173             :     }
     174           0 :     return NULL;
     175             : }
     176             : 
     177           0 : IMPL_LINK( StructPage, SelectHdl, SvTreeListBox*, pTlb )
     178             : {
     179           0 :     if(m_pTlbStruct->GetActiveFlag())
     180             :     {
     181           0 :         if(pTlb==m_pTlbStruct)
     182             :         {
     183           0 :             SvTreeListEntry*    pCurEntry=m_pTlbStruct->GetCurEntry();
     184           0 :             if(pCurEntry!=NULL)
     185             :             {
     186           0 :                 pSelectedToken=static_cast<IFormulaToken *>(pCurEntry->GetUserData());
     187           0 :                 if(pSelectedToken!=NULL)
     188             :                 {
     189           0 :                     if ( !(pSelectedToken->isFunction() || pSelectedToken->getArgumentCount() > 1) )
     190             :                     {
     191           0 :                         pSelectedToken = GetFunctionEntry(pCurEntry);
     192             :                     }
     193             :                 }
     194             :             }
     195             :         }
     196             : 
     197           0 :         aSelLink.Call(this);
     198             :     }
     199           0 :     return 0;
     200             : }
     201             : 
     202         183 : } // formula
     203             : 
     204             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.11