LCOV - code coverage report
Current view: top level - cui/source/inc - srchxtra.hxx (source / functions) Hit Total Coverage
Test: libreoffice_filtered.info Lines: 0 6 0.0 %
Date: 2012-08-25 Functions: 0 8 0.0 %
Legend: Lines: hit not hit | Branches: + taken - not taken # not executed Branches: 0 36 0.0 %

           Branch data     Line data    Source code
       1                 :            : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
       2                 :            : /*************************************************************************
       3                 :            :  *
       4                 :            :  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
       5                 :            :  *
       6                 :            :  * Copyright 2000, 2010 Oracle and/or its affiliates.
       7                 :            :  *
       8                 :            :  * OpenOffice.org - a multi-platform office productivity suite
       9                 :            :  *
      10                 :            :  * This file is part of OpenOffice.org.
      11                 :            :  *
      12                 :            :  * OpenOffice.org is free software: you can redistribute it and/or modify
      13                 :            :  * it under the terms of the GNU Lesser General Public License version 3
      14                 :            :  * only, as published by the Free Software Foundation.
      15                 :            :  *
      16                 :            :  * OpenOffice.org is distributed in the hope that it will be useful,
      17                 :            :  * but WITHOUT ANY WARRANTY; without even the implied warranty of
      18                 :            :  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
      19                 :            :  * GNU Lesser General Public License version 3 for more details
      20                 :            :  * (a copy is included in the LICENSE file that accompanied this code).
      21                 :            :  *
      22                 :            :  * You should have received a copy of the GNU Lesser General Public License
      23                 :            :  * version 3 along with OpenOffice.org.  If not, see
      24                 :            :  * <http://www.openoffice.org/license.html>
      25                 :            :  * for a copy of the LGPLv3 License.
      26                 :            :  *
      27                 :            :  ************************************************************************/
      28                 :            : #ifndef _SVX_SRCHXTRA_HXX
      29                 :            : #define _SVX_SRCHXTRA_HXX
      30                 :            : 
      31                 :            : #include <vcl/field.hxx>
      32                 :            : #include <svtools/ctrltool.hxx>
      33                 :            : #include <sfx2/tabdlg.hxx>
      34                 :            : 
      35                 :            : #include <svx/checklbx.hxx>
      36                 :            : #include <svx/srchdlg.hxx>
      37                 :            : 
      38                 :            : // class SvxSearchFormatDialog -------------------------------------------
      39                 :            : 
      40                 :            : class SvxSearchFormatDialog : public SfxTabDialog
      41                 :            : {
      42                 :            : public:
      43                 :            :     SvxSearchFormatDialog( Window* pParent, const SfxItemSet& rSet );
      44                 :            :     ~SvxSearchFormatDialog();
      45                 :            : 
      46                 :            : protected:
      47                 :            :     virtual void    PageCreated( sal_uInt16 nId, SfxTabPage &rPage );
      48                 :            : 
      49                 :            : private:
      50                 :            :     FontList*       pFontList;
      51                 :            : };
      52                 :            : 
      53                 :            : // class SvxSearchFormatDialog -------------------------------------------
      54                 :            : 
      55 [ #  # ][ #  # ]:          0 : class SvxSearchAttributeDialog : public ModalDialog
         [ #  # ][ #  # ]
         [ #  # ][ #  # ]
      56                 :            : {
      57                 :            : public:
      58                 :            :     SvxSearchAttributeDialog( Window* pParent, SearchAttrItemList& rLst,
      59                 :            :                               const sal_uInt16* pWhRanges );
      60                 :            : 
      61                 :            : private:
      62                 :            :     FixedText           aAttrFL;
      63                 :            :     SvxCheckListBox     aAttrLB;
      64                 :            : 
      65                 :            :     OKButton            aOKBtn;
      66                 :            :     CancelButton        aEscBtn;
      67                 :            :     HelpButton          aHelpBtn;
      68                 :            : 
      69                 :            :     SearchAttrItemList& rList;
      70                 :            : 
      71                 :            :     DECL_LINK(OKHdl, void *);
      72                 :            : };
      73                 :            : 
      74                 :            : // class SvxSearchSimilarityDialog ---------------------------------------
      75                 :            : 
      76 [ #  # ][ #  # ]:          0 : class SvxSearchSimilarityDialog : public ModalDialog
         [ #  # ][ #  # ]
         [ #  # ][ #  # ]
         [ #  # ][ #  # ]
         [ #  # ][ #  # ]
         [ #  # ][ #  # ]
      77                 :            : {
      78                 :            : private:
      79                 :            :     FixedLine           aFixedLine;
      80                 :            :     FixedText           aOtherTxt;
      81                 :            :     NumericField        aOtherFld;
      82                 :            :     FixedText           aLongerTxt;
      83                 :            :     NumericField        aLongerFld;
      84                 :            :     FixedText           aShorterTxt;
      85                 :            :     NumericField        aShorterFld;
      86                 :            :     CheckBox            aRelaxBox;
      87                 :            : 
      88                 :            :     OKButton            aOKBtn;
      89                 :            :     CancelButton        aEscBtn;
      90                 :            :     HelpButton          aHelpBtn;
      91                 :            : 
      92                 :            : public:
      93                 :            :     SvxSearchSimilarityDialog(  Window* pParent,
      94                 :            :                                 sal_Bool bRelax,
      95                 :            :                                 sal_uInt16 nOther,
      96                 :            :                                 sal_uInt16 nShorter,
      97                 :            :                                 sal_uInt16 nLonger );
      98                 :            : 
      99                 :          0 :     sal_uInt16  GetOther()      { return (sal_uInt16)aOtherFld.GetValue(); }
     100                 :          0 :     sal_uInt16  GetShorter()    { return (sal_uInt16)aShorterFld.GetValue(); }
     101                 :          0 :     sal_uInt16  GetLonger()     { return (sal_uInt16)aLongerFld.GetValue(); }
     102                 :          0 :     sal_Bool    IsRelaxed()     { return aRelaxBox.IsChecked(); }
     103                 :            : };
     104                 :            : 
     105                 :            : 
     106                 :            : #endif
     107                 :            : 
     108                 :            : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10