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

           Branch data     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 _SVX_TABWIN_HXX
      20                 :            : #define _SVX_TABWIN_HXX
      21                 :            : 
      22                 :            : #include <svtools/svtreebx.hxx>
      23                 :            : #include <vcl/floatwin.hxx>
      24                 :            : #include <sfx2/basedlgs.hxx>
      25                 :            : #include <sfx2/childwin.hxx>
      26                 :            : #include <sfx2/ctrlitem.hxx>
      27                 :            : #include <com/sun/star/form/XForm.hpp>
      28                 :            : 
      29                 :            : #include <comphelper/propmultiplex.hxx>
      30                 :            : #include <svtools/transfer.hxx>
      31                 :            : #include "svx/dbtoolsclient.hxx"
      32                 :            : 
      33                 :            : //==================================================================
      34                 :            : class FmFieldWin;
      35                 :            : class SAL_DLLPRIVATE FmFieldWinListBox
      36                 :            :                     :public SvTreeListBox
      37                 :            : {
      38                 :            :     FmFieldWin* pTabWin;
      39                 :            : 
      40                 :            : protected:
      41                 :            : //  virtual void Command( const CommandEvent& rEvt );
      42                 :            : 
      43                 :            : public:
      44                 :            :     FmFieldWinListBox( FmFieldWin* pParent );
      45                 :            :     virtual ~FmFieldWinListBox();
      46                 :            : 
      47                 :            :     sal_Int8 AcceptDrop( const AcceptDropEvent& rEvt );
      48                 :            :     sal_Int8 ExecuteDrop( const ExecuteDropEvent& rEvt );
      49                 :            : 
      50                 :            : protected:
      51                 :            :     // DragSourceHelper
      52                 :            :     virtual void StartDrag( sal_Int8 nAction, const Point& rPosPixel );
      53                 :            : 
      54                 :            :     // SvLBox
      55                 :            :     virtual sal_Bool DoubleClickHdl();
      56                 :            : 
      57                 :            :     using SvLBox::ExecuteDrop;
      58                 :            : };
      59                 :            : 
      60                 :            : //========================================================================
      61                 :            : class FmFormShell;
      62                 :            : class SAL_DLLPRIVATE FmFieldWinData
      63                 :            : {
      64                 :            : public:
      65                 :            :     FmFieldWinData();
      66                 :            :     ~FmFieldWinData();
      67                 :            : };
      68                 :            : 
      69                 :            : //========================================================================
      70                 :            : class SAL_DLLPRIVATE FmFieldWin :public SfxFloatingWindow
      71                 :            :                     ,public SfxControllerItem
      72                 :            :                     ,public ::comphelper::OPropertyChangeListener
      73                 :            :                     ,public ::svxform::OStaticDataAccessTools
      74                 :            : {
      75                 :            :     ::osl::Mutex        m_aMutex;
      76                 :            :     FmFieldWinListBox* pListBox;
      77                 :            :     FmFieldWinData*    pData;
      78                 :            :     ::svxform::SharedConnection
      79                 :            :                        m_aConnection;
      80                 :            :     ::rtl::OUString    m_aDatabaseName,
      81                 :            :                        m_aObjectName;
      82                 :            :     sal_Int32          m_nObjectType;
      83                 :            : 
      84                 :            :     ::comphelper::OPropertyChangeMultiplexer*   m_pChangeListener;
      85                 :            : 
      86                 :            : public:
      87                 :            :     FmFieldWin(SfxBindings *pBindings,
      88                 :            :                SfxChildWindow *pMgr, Window* pParent);
      89                 :            : 
      90                 :            :     virtual ~FmFieldWin();
      91                 :            :     virtual void Resize();
      92                 :            :     virtual sal_Bool Close();
      93                 :            :     virtual void GetFocus();
      94                 :            :     virtual long PreNotify( NotifyEvent& _rNEvt );
      95                 :            :     virtual void StateChanged(sal_uInt16 nSID, SfxItemState eState,
      96                 :            :                               const SfxPoolItem* pState);
      97                 :            : 
      98                 :            :     FmFieldWinData* GetData()  const {return pData;}
      99                 :            : 
     100                 :            :     void UpdateContent(FmFormShell*);
     101                 :            :     void UpdateContent(const ::com::sun::star::uno::Reference< ::com::sun::star::form::XForm > &);
     102                 :            :     void FillInfo( SfxChildWinInfo& rInfo ) const;
     103                 :            : 
     104                 :          0 :     const ::rtl::OUString&      GetDatabaseName() const { return m_aDatabaseName; }
     105                 :          0 :     ::svxform::SharedConnection GetConnection() const { return m_aConnection; }
     106                 :          0 :     const ::rtl::OUString&      GetObjectName() const { return m_aObjectName; }
     107                 :          0 :     sal_Int32                   GetObjectType() const { return m_nObjectType; }
     108                 :            : 
     109                 :            :     sal_Bool    createSelectionControls( );
     110                 :            : 
     111                 :            : protected:
     112                 :            :     // FmXChangeListener
     113                 :            :     virtual void _propertyChanged(const ::com::sun::star::beans::PropertyChangeEvent& evt) throw( ::com::sun::star::uno::RuntimeException );
     114                 :            : 
     115                 :            : protected:
     116                 :          0 :     inline          SfxBindings&    GetBindings()       { return SfxControllerItem::GetBindings(); }
     117                 :            :     inline  const   SfxBindings&    GetBindings() const { return SfxControllerItem::GetBindings(); }
     118                 :            : 
     119                 :            :     using SfxFloatingWindow::StateChanged;
     120                 :            : };
     121                 :            : 
     122                 :            : //========================================================================
     123         [ #  # ]:          0 : class SAL_DLLPRIVATE FmFieldWinMgr : public SfxChildWindow
     124                 :            : {
     125                 :            : public:
     126                 :            :     FmFieldWinMgr(Window *pParent, sal_uInt16 nId,
     127                 :            :         SfxBindings *pBindings, SfxChildWinInfo *pInfo);
     128                 :            :     SFX_DECL_CHILDWINDOW(FmFieldWinMgr);
     129                 :            : };
     130                 :            : 
     131                 :            : 
     132                 :            : #endif
     133                 :            : 
     134                 :            : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10