LCOV - code coverage report
Current view: top level - libreoffice/sw/source/ui/envelp - swuilabimp.hxx (source / functions) Hit Total Coverage
Test: libreoffice_filtered.info Lines: 0 3 0.0 %
Date: 2012-12-27 Functions: 0 3 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             : #ifndef _SWUILABIMP_HXX
      20             : #define _SWUILABIMP_HXX
      21             : #include "labimp.hxx"
      22             : 
      23             : class SwLabPage : public SfxTabPage
      24             : {
      25             :     SwNewDBMgr*   pNewDBMgr;
      26             :     String        sActDBName;
      27             :     SwLabItem     aItem;
      28             : 
      29             :     FixedLine     aWritingFL;
      30             :     FixedText     aWritingText;
      31             :     CheckBox      aAddrBox;
      32             :     MultiLineEdit aWritingEdit;
      33             :     FixedText     aDatabaseFT;
      34             :     ListBox       aDatabaseLB;
      35             :     FixedText     aTableFT;
      36             :     ListBox       aTableLB;
      37             :     ImageButton   aInsertBT;
      38             :     FixedText     aDBFieldFT;
      39             :     ListBox       aDBFieldLB;
      40             : //  PushButton    aDatabaseButton;
      41             : 
      42             :     FixedLine     aFormatFL;
      43             :     RadioButton   aContButton;
      44             :     RadioButton   aSheetButton;
      45             :     FixedText     aMakeText;
      46             :     ListBox       aMakeBox;
      47             :     FixedText     aTypeText;
      48             :     ListBox       aTypeBox;
      49             :     ListBox       aHiddenSortTypeBox;
      50             :     FixedInfo     aFormatInfo;
      51             : 
      52             :     sal_Bool        m_bLabel;
      53             : 
      54             :      SwLabPage(Window* pParent, const SfxItemSet& rSet);
      55             :     ~SwLabPage();
      56             : 
      57             :     DECL_LINK(AddrHdl, void *);
      58             :     DECL_LINK( DatabaseHdl, ListBox *pListBox );
      59             : //    DECL_LINK( DatabaseButtonHdl, Button * );
      60             :     DECL_LINK(FieldHdl, void *);
      61             :     DECL_LINK(PageHdl, void *);
      62             :     DECL_LINK(MakeHdl, void *);
      63             :     DECL_LINK(TypeHdl, void *);
      64             : 
      65             :     void DisplayFormat  ();
      66             :     SwLabRec* GetSelectedEntryPos();
      67             : 
      68             :     using TabPage::ActivatePage;
      69             :     using TabPage::DeactivatePage;
      70             : 
      71             : public:
      72             : 
      73             :     static SfxTabPage* Create(Window* pParent, const SfxItemSet& rSet);
      74             : 
      75             :     virtual void ActivatePage(const SfxItemSet& rSet);
      76             :     virtual int  DeactivatePage(SfxItemSet* pSet = 0);
      77             :             void FillItem(SwLabItem& rItem);
      78             :     virtual sal_Bool FillItemSet(SfxItemSet& rSet);
      79             :     virtual void Reset(const SfxItemSet& rSet);
      80             : 
      81           0 :     SwLabDlg* GetParentSwLabDlg() {return (SwLabDlg*) GetParentDialog();}
      82             : 
      83             :     void    SetToBusinessCard();
      84             : 
      85             :     void InitDatabaseBox();
      86           0 :     inline void SetNewDBMgr(SwNewDBMgr* pDBMgr) { pNewDBMgr = pDBMgr; }
      87           0 :     inline SwNewDBMgr* GetNewDBMgr() const { return pNewDBMgr; }
      88             : };
      89             : 
      90             : class SwOneExampleFrame;
      91             : class SwVisitingCardPage : public SfxTabPage
      92             : {
      93             :     FixedLine       aContentFL;
      94             :     SvTreeListBox   aAutoTextLB;
      95             :     FixedText       aAutoTextGroupFT;
      96             :     ListBox         aAutoTextGroupLB;
      97             : 
      98             :     Window          aExampleWIN;
      99             : 
     100             :     String          sVisCardGroup;
     101             :     String          sTempURL;
     102             : 
     103             :     SwLabItem       aLabItem;
     104             : 
     105             :     SwOneExampleFrame*  pExampleFrame;
     106             :     ::com::sun::star::uno::Reference< ::com::sun::star::container::XNameAccess >    _xAutoText;
     107             : 
     108             : 
     109             :     DECL_LINK( AutoTextSelectHdl, void* );
     110             :     DECL_LINK( FrameControlInitializedHdl, void* );
     111             : 
     112             :     void            InitFrameControl();
     113             :     void            UpdateFields();
     114             : 
     115             :     void            ClearUserData();
     116             : 
     117             :     using SfxTabPage::SetUserData;
     118             :     void            SetUserData( sal_uInt32 nCnt,
     119             :                                     const rtl::OUString* pNames,
     120             :                                     const rtl::OUString* pValues );
     121             : 
     122             :     SwVisitingCardPage(Window* pParent, const SfxItemSet& rSet);
     123             :     ~SwVisitingCardPage();
     124             : 
     125             :     using TabPage::ActivatePage;
     126             :     using TabPage::DeactivatePage;
     127             : 
     128             : public:
     129             : 
     130             :     static SfxTabPage* Create(Window* pParent, const SfxItemSet& rSet);
     131             : 
     132             :     virtual void ActivatePage(const SfxItemSet& rSet);
     133             :     virtual int  DeactivatePage(SfxItemSet* pSet = 0);
     134             :     virtual sal_Bool FillItemSet(SfxItemSet& rSet);
     135             :     virtual void Reset(const SfxItemSet& rSet);
     136             : };
     137             : 
     138             : class SwPrivateDataPage : public SfxTabPage
     139             : {
     140             :     FixedLine       aDataFL;
     141             : 
     142             :     FixedText       aNameFT;
     143             :     Edit            aFirstNameED;
     144             :     Edit            aNameED;
     145             :     Edit            aShortCutED;
     146             : 
     147             :     FixedText       aName2FT;
     148             :     Edit            aFirstName2ED;
     149             :     Edit            aName2ED;
     150             :     Edit            aShortCut2ED;
     151             : 
     152             :     FixedText       aStreetFT;
     153             :     Edit            aStreetED;
     154             :     FixedText       aZipCityFT;
     155             :     Edit            aZipED;
     156             :     Edit            aCityED;
     157             :     FixedText       aCountryStateFT;
     158             :     Edit            aCountryED;
     159             :     Edit            aStateED;
     160             :     FixedText       aTitleProfessionFT;
     161             :     Edit            aTitleED;
     162             :     Edit            aProfessionED;
     163             :     FixedText       aPhoneFT;
     164             :     Edit            aPhoneED;
     165             :     Edit            aMobilePhoneED;
     166             :     FixedText       aFaxFT;
     167             :     Edit            aFaxED;
     168             :     FixedText       aWWWMailFT;
     169             :     Edit            aHomePageED;
     170             :     Edit            aMailED;
     171             : 
     172             :     SwPrivateDataPage(Window* pParent, const SfxItemSet& rSet);
     173             :     ~SwPrivateDataPage();
     174             : 
     175             :     using TabPage::ActivatePage;
     176             :     using TabPage::DeactivatePage;
     177             : 
     178             : public:
     179             : 
     180             :     static SfxTabPage* Create(Window* pParent, const SfxItemSet& rSet);
     181             : 
     182             :     virtual void ActivatePage(const SfxItemSet& rSet);
     183             :     virtual int  DeactivatePage(SfxItemSet* pSet = 0);
     184             :     virtual sal_Bool FillItemSet(SfxItemSet& rSet);
     185             :     virtual void Reset(const SfxItemSet& rSet);
     186             : };
     187             : 
     188             : class SwBusinessDataPage : public SfxTabPage
     189             : {
     190             :     FixedLine       aDataFL;
     191             :     FixedText       aCompanyFT;
     192             :     Edit            aCompanyED;
     193             :     FixedText       aCompanyExtFT;
     194             :     Edit            aCompanyExtED;
     195             :     FixedText       aSloganFT;
     196             :     Edit            aSloganED;
     197             : 
     198             :     FixedText       aStreetFT;
     199             :     Edit            aStreetED;
     200             :     FixedText       aZipCityFT;
     201             :     Edit            aZipED;
     202             :     Edit            aCityED;
     203             :     FixedText       aCountryStateFT;
     204             :     Edit            aCountryED;
     205             :     Edit            aStateED;
     206             : 
     207             :     FixedText       aPositionFT;
     208             :     Edit            aPositionED;
     209             : 
     210             :     FixedText       aPhoneFT;
     211             :     Edit            aPhoneED;
     212             :     Edit            aMobilePhoneED;
     213             :     FixedText       aFaxFT;
     214             :     Edit            aFaxED;
     215             : 
     216             :     FixedText       aWWWMailFT;
     217             :     Edit            aHomePageED;
     218             :     Edit            aMailED;
     219             : 
     220             :     SwBusinessDataPage(Window* pParent, const SfxItemSet& rSet);
     221             :     ~SwBusinessDataPage();
     222             : 
     223             :     using TabPage::ActivatePage;
     224             :     using TabPage::DeactivatePage;
     225             : 
     226             : public:
     227             : 
     228             :     static SfxTabPage* Create(Window* pParent, const SfxItemSet& rSet);
     229             : 
     230             :     virtual void ActivatePage(const SfxItemSet& rSet);
     231             :     virtual int  DeactivatePage(SfxItemSet* pSet = 0);
     232             :     virtual sal_Bool FillItemSet(SfxItemSet& rSet);
     233             :     virtual void Reset(const SfxItemSet& rSet);
     234             : };
     235             : 
     236             : #endif
     237             : 
     238             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10