LCOV - code coverage report
Current view: top level - libreoffice/sd/source/ui/dlg - dlgfield.cxx (source / functions) Hit Total Coverage
Test: libreoffice_filtered.info Lines: 0 159 0.0 %
Date: 2012-12-27 Functions: 0 7 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             : #ifdef SD_DLLIMPLEMENTATION
      22             : #undef SD_DLLIMPLEMENTATION
      23             : #endif
      24             : 
      25             : 
      26             : 
      27             : #include <editeng/editeng.hxx>
      28             : #include <editeng/eeitem.hxx>
      29             : #include <editeng/flditem.hxx>
      30             : #include <svl/zforlist.hxx>
      31             : #include <sfx2/objsh.hxx>
      32             : #include <sfx2/docfile.hxx>
      33             : #include <svl/itemset.hxx>
      34             : #include <editeng/langitem.hxx>
      35             : #include <unotools/useroptions.hxx>
      36             : 
      37             : #include "strings.hrc"
      38             : #include "dlgfield.hrc"
      39             : #include "sdattr.hxx"
      40             : #include "sdresid.hxx"
      41             : #include "sdmod.hxx"
      42             : #include "dlgfield.hxx"
      43             : #include "drawdoc.hxx"
      44             : #include "DrawDocShell.hxx"
      45             : 
      46             : /*************************************************************************
      47             : |*
      48             : |* Dialog zum Bearbeiten von Feldbefehlen
      49             : |*
      50             : \************************************************************************/
      51             : 
      52           0 : SdModifyFieldDlg::SdModifyFieldDlg( Window* pWindow, const SvxFieldData* pInField, const SfxItemSet& rSet ) :
      53             :     ModalDialog ( pWindow, SdResId( DLG_FIELD_MODIFY ) ),
      54             :     aGrpType    ( this, SdResId( GRP_TYPE ) ),
      55             :     aRbtFix     ( this, SdResId( RBT_FIX ) ),
      56             :     aRbtVar     ( this, SdResId( RBT_VAR ) ),
      57             :     maFtLanguage( this, SdResId( FT_LANGUAGE ) ),
      58             :     maLbLanguage( this, SdResId( LB_LANGUAGE ) ),
      59             :     aFtFormat   ( this, SdResId( FT_FORMAT ) ),
      60             :     aLbFormat   ( this, SdResId( LB_FORMAT ) ),
      61             :     aBtnOK      ( this, SdResId( BTN_OK ) ),
      62             :     aBtnCancel  ( this, SdResId( BTN_CANCEL ) ),
      63             :     aBtnHelp    ( this, SdResId( BTN_HELP ) ),
      64             :     maInputSet  ( rSet ),
      65           0 :     pField      ( pInField )
      66             : {
      67           0 :     FreeResource();
      68             : 
      69           0 :     maLbLanguage.SetLanguageList( LANG_LIST_ALL|LANG_LIST_ONLY_KNOWN, false );
      70           0 :     maLbLanguage.SetSelectHdl( LINK( this, SdModifyFieldDlg, LanguageChangeHdl ) );
      71           0 :     FillControls();
      72           0 : }
      73             : 
      74             : /*************************************************************************
      75             : |*
      76             : |* Gibt das neue Feld zurueck, gehoert dem Caller.
      77             : |* Liefert NULL, wenn sich nichts geaendert hat.
      78             : |*
      79             : \************************************************************************/
      80             : 
      81           0 : SvxFieldData* SdModifyFieldDlg::GetField()
      82             : {
      83           0 :     SvxFieldData* pNewField = NULL;
      84             : 
      85           0 :     if( aRbtFix.IsChecked() != aRbtFix.GetSavedValue() ||
      86           0 :         aRbtVar.IsChecked() != aRbtVar.GetSavedValue() ||
      87           0 :         aLbFormat.GetSelectEntryPos() != aLbFormat.GetSavedValue() )
      88             :     {
      89           0 :         if( pField->ISA( SvxDateField ) )
      90             :         {
      91           0 :             const SvxDateField* pDateField = (const SvxDateField*) pField;
      92             :             SvxDateType   eType;
      93             :             SvxDateFormat eFormat;
      94             : 
      95           0 :             if( aRbtFix.IsChecked() )
      96           0 :                 eType = SVXDATETYPE_FIX;
      97             :             else
      98           0 :                 eType = SVXDATETYPE_VAR;
      99             : 
     100           0 :             eFormat = (SvxDateFormat) ( aLbFormat.GetSelectEntryPos() + 2 );
     101             : 
     102           0 :             pNewField = new SvxDateField( *pDateField );
     103           0 :             ( (SvxDateField*) pNewField )->SetType( eType );
     104           0 :             ( (SvxDateField*) pNewField )->SetFormat( eFormat );
     105             :         }
     106           0 :         else if( pField->ISA( SvxExtTimeField ) )
     107             :         {
     108           0 :             const SvxExtTimeField* pTimeField = (const SvxExtTimeField*) pField;
     109             :             SvxTimeType   eType;
     110             :             SvxTimeFormat eFormat;
     111             : 
     112           0 :             if( aRbtFix.IsChecked() )
     113           0 :                 eType = SVXTIMETYPE_FIX;
     114             :             else
     115           0 :                 eType = SVXTIMETYPE_VAR;
     116             : 
     117           0 :             eFormat = (SvxTimeFormat) ( aLbFormat.GetSelectEntryPos() + 2 );
     118             : 
     119           0 :             pNewField = new SvxExtTimeField( *pTimeField );
     120           0 :             ( (SvxExtTimeField*) pNewField )->SetType( eType );
     121           0 :             ( (SvxExtTimeField*) pNewField )->SetFormat( eFormat );
     122             :         }
     123           0 :         else if( pField->ISA( SvxExtFileField ) )
     124             :         {
     125           0 :             const SvxExtFileField* pFileField = (const SvxExtFileField*) pField;
     126             :             SvxFileType   eType;
     127             :             SvxFileFormat eFormat;
     128             : 
     129           0 :             if( aRbtFix.IsChecked() )
     130           0 :                 eType = SVXFILETYPE_FIX;
     131             :             else
     132           0 :                 eType = SVXFILETYPE_VAR;
     133             : 
     134           0 :             eFormat = (SvxFileFormat) ( aLbFormat.GetSelectEntryPos() );
     135             : 
     136           0 :             ::sd::DrawDocShell* pDocSh = PTR_CAST( ::sd::DrawDocShell,
     137             :                                                SfxObjectShell::Current() );
     138             : 
     139           0 :             if( pDocSh )
     140             :             {
     141           0 :                 SvxExtFileField aFileField( *pFileField );
     142             : 
     143           0 :                 String aName;
     144           0 :                 if( pDocSh->HasName() )
     145           0 :                     aName = pDocSh->GetMedium()->GetName();
     146             : 
     147             :                 // Get current filename, not the one stored in the old field
     148           0 :                 pNewField = new SvxExtFileField( aName );
     149           0 :                 ( (SvxExtFileField*) pNewField )->SetType( eType );
     150           0 :                 ( (SvxExtFileField*) pNewField )->SetFormat( eFormat );
     151             :             }
     152             :         }
     153           0 :         else if( pField->ISA( SvxAuthorField ) )
     154             :         {
     155             :             SvxAuthorType   eType;
     156             :             SvxAuthorFormat eFormat;
     157             : 
     158           0 :             if( aRbtFix.IsChecked() )
     159           0 :                 eType = SVXAUTHORTYPE_FIX;
     160             :             else
     161           0 :                 eType = SVXAUTHORTYPE_VAR;
     162             : 
     163           0 :             eFormat = (SvxAuthorFormat) ( aLbFormat.GetSelectEntryPos() );
     164             : 
     165             :             // Get current state of address, not the old one
     166           0 :             SvtUserOptions aUserOptions;
     167           0 :             pNewField = new SvxAuthorField( aUserOptions.GetFirstName(), aUserOptions.GetLastName(), aUserOptions.GetID() );
     168           0 :             ( (SvxAuthorField*) pNewField )->SetType( eType );
     169           0 :             ( (SvxAuthorField*) pNewField )->SetFormat( eFormat );
     170             :         }
     171             :     }
     172             : 
     173           0 :     return( pNewField );
     174             : }
     175             : 
     176           0 : void SdModifyFieldDlg::FillFormatList()
     177             : {
     178           0 :     LanguageType eLangType = maLbLanguage.GetSelectLanguage();
     179             : 
     180           0 :     aLbFormat.Clear();
     181             : 
     182           0 :     if( pField->ISA( SvxDateField ) )
     183             :     {
     184           0 :         const SvxDateField* pDateField = (const SvxDateField*) pField;
     185           0 :         SvxDateField aDateField( *pDateField );
     186             : 
     187             :         //SVXDATEFORMAT_APPDEFAULT,     // Wird nicht benutzt
     188             :         //SVXDATEFORMAT_SYSTEM,         // Wird nicht benutzt
     189           0 :         aLbFormat.InsertEntry( String( SdResId( STR_STANDARD_SMALL ) ) );
     190           0 :         aLbFormat.InsertEntry( String( SdResId( STR_STANDARD_BIG ) ) );
     191             : 
     192           0 :         SvNumberFormatter* pNumberFormatter = SD_MOD()->GetNumberFormatter();
     193           0 :         aDateField.SetFormat( SVXDATEFORMAT_A );    // 13.02.96
     194           0 :         aLbFormat.InsertEntry( aDateField.GetFormatted( *pNumberFormatter, eLangType ) );
     195           0 :         aDateField.SetFormat( SVXDATEFORMAT_B );    // 13.02.1996
     196           0 :         aLbFormat.InsertEntry( aDateField.GetFormatted( *pNumberFormatter, eLangType ) );
     197           0 :         aDateField.SetFormat( SVXDATEFORMAT_C );    // 13.Feb 1996
     198           0 :         aLbFormat.InsertEntry( aDateField.GetFormatted( *pNumberFormatter, eLangType ) );
     199           0 :         aDateField.SetFormat( SVXDATEFORMAT_D );    // 13.Februar 1996
     200           0 :         aLbFormat.InsertEntry( aDateField.GetFormatted( *pNumberFormatter, eLangType ) );
     201           0 :         aDateField.SetFormat( SVXDATEFORMAT_E );    // Die, 13.Februar 1996
     202           0 :         aLbFormat.InsertEntry( aDateField.GetFormatted( *pNumberFormatter, eLangType ) );
     203           0 :         aDateField.SetFormat( SVXDATEFORMAT_F );    // Dienstag, 13.Februar 1996
     204           0 :         aLbFormat.InsertEntry( aDateField.GetFormatted( *pNumberFormatter, eLangType ) );
     205             : 
     206           0 :         aLbFormat.SelectEntryPos( (sal_uInt16) ( pDateField->GetFormat() - 2 ) );
     207             :     }
     208           0 :     else if( pField->ISA( SvxExtTimeField ) )
     209             :     {
     210           0 :         const SvxExtTimeField* pTimeField = (const SvxExtTimeField*) pField;
     211           0 :         SvxExtTimeField aTimeField( *pTimeField );
     212             : 
     213             :         //SVXTIMEFORMAT_APPDEFAULT,     // Wird nicht benutzt
     214             :         //SVXTIMEFORMAT_SYSTEM,         // Wird nicht benutzt
     215           0 :         aLbFormat.InsertEntry( String( SdResId( STR_STANDARD_NORMAL ) ) );
     216             : 
     217           0 :         SvNumberFormatter* pNumberFormatter = SD_MOD()->GetNumberFormatter();
     218           0 :         aTimeField.SetFormat( SVXTIMEFORMAT_24_HM );    // 13:49
     219           0 :         aLbFormat.InsertEntry( aTimeField.GetFormatted( *pNumberFormatter, eLangType ) );
     220           0 :         aTimeField.SetFormat( SVXTIMEFORMAT_24_HMS );   // 13:49:38
     221           0 :         aLbFormat.InsertEntry( aTimeField.GetFormatted( *pNumberFormatter, eLangType ) );
     222           0 :         aTimeField.SetFormat( SVXTIMEFORMAT_24_HMSH );  // 13:49:38.78
     223           0 :         aLbFormat.InsertEntry( aTimeField.GetFormatted( *pNumberFormatter, eLangType ) );
     224           0 :         aTimeField.SetFormat( SVXTIMEFORMAT_12_HM );    // 01:49
     225           0 :         aLbFormat.InsertEntry( aTimeField.GetFormatted( *pNumberFormatter, eLangType ) );
     226           0 :         aTimeField.SetFormat( SVXTIMEFORMAT_12_HMS );   // 01:49:38
     227           0 :         aLbFormat.InsertEntry( aTimeField.GetFormatted( *pNumberFormatter, eLangType ) );
     228           0 :         aTimeField.SetFormat( SVXTIMEFORMAT_12_HMSH );  // 01:49:38.78
     229           0 :         aLbFormat.InsertEntry( aTimeField.GetFormatted( *pNumberFormatter, eLangType ) );
     230             :         //SVXTIMEFORMAT_AM_HM,  // 01:49 PM
     231             :         //SVXTIMEFORMAT_AM_HMS, // 01:49:38 PM
     232             :         //SVXTIMEFORMAT_AM_HMSH // 01:49:38.78 PM
     233             : 
     234           0 :         aLbFormat.SelectEntryPos( (sal_uInt16) ( pTimeField->GetFormat() - 2 ) );
     235             :     }
     236           0 :     else if( pField->ISA( SvxExtFileField ) )
     237             :     {
     238           0 :         const SvxExtFileField* pFileField = (const SvxExtFileField*) pField;
     239           0 :         SvxExtFileField aFileField( *pFileField );
     240             : 
     241           0 :         aLbFormat.InsertEntry( String( SdResId( STR_FILEFORMAT_NAME_EXT ) ) );
     242           0 :         aLbFormat.InsertEntry( String( SdResId( STR_FILEFORMAT_FULLPATH ) ) );
     243           0 :         aLbFormat.InsertEntry( String( SdResId( STR_FILEFORMAT_PATH ) ) );
     244           0 :         aLbFormat.InsertEntry( String( SdResId( STR_FILEFORMAT_NAME ) ) );
     245             : 
     246           0 :         aLbFormat.SelectEntryPos( (sal_uInt16) ( pFileField->GetFormat() ) );
     247             :     }
     248           0 :     else if( pField->ISA( SvxAuthorField ) )
     249             :     {
     250           0 :         const SvxAuthorField* pAuthorField = (const SvxAuthorField*) pField;
     251           0 :         SvxAuthorField aAuthorField( *pAuthorField );
     252             : 
     253           0 :         for( sal_uInt16 i = 0; i < 4; i++ )
     254             :         {
     255           0 :             aAuthorField.SetFormat( (SvxAuthorFormat) i );
     256           0 :             aLbFormat.InsertEntry( aAuthorField.GetFormatted() );
     257             :         }
     258             : 
     259           0 :         aLbFormat.SelectEntryPos( (sal_uInt16) ( pAuthorField->GetFormat() ) );
     260             : 
     261             :     }
     262             : 
     263             : 
     264           0 : }
     265             : 
     266           0 : void SdModifyFieldDlg::FillControls()
     267             : {
     268           0 :     aLbFormat.Clear();
     269             : 
     270           0 :     if( pField->ISA( SvxDateField ) )
     271             :     {
     272           0 :         const SvxDateField* pDateField = (const SvxDateField*) pField;
     273           0 :         SvxDateField aDateField( *pDateField );
     274             : 
     275           0 :         if( pDateField->GetType() == SVXDATETYPE_FIX )
     276           0 :             aRbtFix.Check();
     277             :         else
     278           0 :             aRbtVar.Check();
     279             :     }
     280           0 :     else if( pField->ISA( SvxExtTimeField ) )
     281             :     {
     282           0 :         const SvxExtTimeField* pTimeField = (const SvxExtTimeField*) pField;
     283           0 :         SvxExtTimeField aTimeField( *pTimeField );
     284             : 
     285           0 :         if( pTimeField->GetType() == SVXTIMETYPE_FIX )
     286           0 :             aRbtFix.Check();
     287             :         else
     288           0 :             aRbtVar.Check();
     289             :     }
     290           0 :     else if( pField->ISA( SvxExtFileField ) )
     291             :     {
     292           0 :         const SvxExtFileField* pFileField = (const SvxExtFileField*) pField;
     293           0 :         SvxExtFileField aFileField( *pFileField );
     294             : 
     295           0 :         if( pFileField->GetType() == SVXFILETYPE_FIX )
     296           0 :             aRbtFix.Check();
     297             :         else
     298           0 :             aRbtVar.Check();
     299             :     }
     300           0 :     else if( pField->ISA( SvxAuthorField ) )
     301             :     {
     302           0 :         const SvxAuthorField* pAuthorField = (const SvxAuthorField*) pField;
     303           0 :         SvxAuthorField aAuthorField( *pAuthorField );
     304             : 
     305           0 :         if( pAuthorField->GetType() == SVXAUTHORTYPE_FIX )
     306           0 :             aRbtFix.Check();
     307             :         else
     308           0 :             aRbtVar.Check();
     309             :     }
     310           0 :     aRbtFix.SaveValue();
     311           0 :     aRbtVar.SaveValue();
     312             : 
     313             :     const SfxPoolItem* pItem;
     314           0 :     if( SFX_ITEM_SET == maInputSet.GetItemState(EE_CHAR_LANGUAGE, sal_True, &pItem ) )
     315           0 :         maLbLanguage.SelectLanguage( static_cast<const SvxLanguageItem*>(pItem)->GetLanguage() );
     316             : 
     317           0 :     maLbLanguage.SaveValue();
     318             : 
     319           0 :     FillFormatList();
     320           0 :     aLbFormat.SaveValue();
     321           0 : }
     322             : 
     323             : 
     324           0 : IMPL_LINK_NOARG(SdModifyFieldDlg, LanguageChangeHdl)
     325             : {
     326           0 :     FillFormatList();
     327             : 
     328           0 :     return 0L;
     329             : }
     330             : 
     331           0 : SfxItemSet SdModifyFieldDlg::GetItemSet()
     332             : {
     333           0 :     SfxItemSet aOutput( *maInputSet.GetPool(), EE_CHAR_LANGUAGE, EE_CHAR_LANGUAGE_CTL );
     334             : 
     335           0 :     if( maLbLanguage.GetSelectEntryPos() != maLbLanguage.GetSavedValue() )
     336             :     {
     337           0 :         LanguageType eLangType = maLbLanguage.GetSelectLanguage();
     338           0 :         SvxLanguageItem aItem( eLangType, EE_CHAR_LANGUAGE );
     339           0 :         aOutput.Put( aItem );
     340             : 
     341           0 :         SvxLanguageItem aItemCJK( eLangType, EE_CHAR_LANGUAGE_CJK );
     342           0 :         aOutput.Put( aItemCJK );
     343             : 
     344           0 :         SvxLanguageItem aItemCTL( eLangType, EE_CHAR_LANGUAGE_CTL );
     345           0 :         aOutput.Put( aItemCTL );
     346             :     }
     347             : 
     348           0 :     return aOutput;
     349             : }
     350             : 
     351             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10