LCOV - code coverage report
Current view: top level - usr/local/src/libreoffice/basctl/source/inc - baside3.hxx (source / functions) Hit Total Coverage
Test: libreoffice_filtered.info Lines: 0 3 0.0 %
Date: 2013-07-09 Functions: 0 4 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             : #ifndef BASCTL_BASIDE3_HXX
      21             : #define BASCTL_BASIDE3_HXX
      22             : 
      23             : #include "../basicide/layout.hxx"
      24             : #include "bastypes.hxx"
      25             : #include "propbrw.hxx"
      26             : 
      27             : #include <svl/undo.hxx>
      28             : #include <vcl/dialog.hxx>
      29             : #include <vcl/button.hxx>
      30             : #include <vcl/lstbox.hxx>
      31             : #include <vcl/fixed.hxx>
      32             : 
      33             : #include <com/sun/star/script/XLibraryContainer.hpp>
      34             : 
      35             : #include <boost/scoped_ptr.hpp>
      36             : 
      37             : class Printer;
      38             : class StarBASIC;
      39             : class SfxItemSet;
      40             : class SfxUndoManager;
      41             : 
      42             : namespace basctl
      43             : {
      44             : 
      45             : class DlgEditor;
      46             : class DlgEdModel;
      47             : class DlgEdPage;
      48             : class DlgEdView;
      49             : 
      50             : class DialogWindowLayout;
      51             : class ObjectCatalog;
      52             : 
      53             : class DialogWindow: public BaseWindow
      54             : {
      55             : private:
      56             :     DialogWindowLayout& rLayout;
      57             :     boost::scoped_ptr<DlgEditor> pEditor; // never nullptr
      58             :     boost::scoped_ptr<SfxUndoManager> pUndoMgr; // never nullptr
      59             :     Link                aOldNotifyUndoActionHdl;
      60             :     OUString            aCurPath;
      61             : 
      62             : protected:
      63             :     virtual void        Paint( const Rectangle& );
      64             :     virtual void        Resize();
      65             : 
      66             :     virtual void        MouseButtonDown( const MouseEvent& rMEvt );
      67             :     virtual void        MouseButtonUp( const MouseEvent& rMEvt );
      68             :     virtual void        MouseMove( const MouseEvent& rMEvt );
      69             :     virtual void        KeyInput( const KeyEvent& rKEvt );
      70             :     virtual void        Command( const CommandEvent& rCEvt );
      71             :     virtual void        LoseFocus();
      72             : 
      73             :     DECL_LINK( NotifyUndoActionHdl, SfxUndoAction * );
      74             :     virtual void        DoInit();
      75             :     virtual void        DoScroll( ScrollBar* pCurScrollBar );
      76             :     virtual void        DataChanged( const DataChangedEvent& rDCEvt );
      77             :     void                InitSettings(bool bFont, bool bForeground, bool bBackground);
      78             : 
      79             : public:
      80             :                         TYPEINFO();
      81             :     DialogWindow (DialogWindowLayout* pParent, ScriptDocument const& rDocument, OUString aLibName, OUString aName, com::sun::star::uno::Reference<com::sun::star::container::XNameContainer> const& xDialogModel);
      82             :                         DialogWindow( DialogWindow* pCurView ); // never implemented
      83             :                         ~DialogWindow();
      84             : 
      85             :     virtual void        ExecuteCommand( SfxRequest& rReq );
      86             :     virtual void        GetState( SfxItemSet& );
      87           0 :     DlgEditor&          GetEditor() const   { return *pEditor; }
      88             :     ::com::sun::star::uno::Reference< ::com::sun::star::container::XNameContainer > GetDialog() const;
      89             :     DlgEdModel&         GetModel() const;
      90             :     DlgEdPage&          GetPage() const;
      91             :     DlgEdView&          GetView() const;
      92             :     bool                RenameDialog( const OUString& rNewName );
      93             :     void                DisableBrowser();
      94             :     void                UpdateBrowser();
      95             :     bool                SaveDialog();
      96             :     bool                ImportDialog();
      97             : 
      98             :     virtual OUString             GetTitle();
      99             :     virtual EntryDescriptor      CreateEntryDescriptor();
     100             :     virtual void        SetReadOnly (bool bReadOnly);
     101             :     virtual bool        IsReadOnly();
     102             : 
     103             :     virtual void        StoreData();
     104             :     virtual bool        IsModified();
     105             :     virtual bool        IsPasteAllowed();
     106             : 
     107             :     virtual svl::IUndoManager* GetUndoManager();
     108             :     // return number of pages to be printed
     109             :     virtual sal_Int32 countPages( Printer* pPrinter );
     110             :     // print page
     111             :     virtual void        printPage (sal_Int32 nPage, Printer*);
     112             : 
     113             :     virtual void        Activating ();
     114             :     virtual void        Deactivating ();
     115             : 
     116             :     virtual ::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessible > CreateAccessible();
     117             : 
     118             :     virtual char const* GetHid () const;
     119             :     virtual ItemType GetType () const;
     120             : };
     121             : 
     122             : //
     123             : // DialogWindowLayout
     124             : //
     125           0 : class DialogWindowLayout : public Layout
     126             : {
     127             : public:
     128             :     DialogWindowLayout (Window* pParent, ObjectCatalog&);
     129             : public:
     130             :     void ShowPropertyBrowser ();
     131             :     void UpdatePropertyBrowser ();
     132             :     void DisablePropertyBrowser ();
     133             :     void RemovePropertyBrowser ();
     134             : public:
     135             :     // Layout:
     136             :     virtual void Activating (BaseWindow&);
     137             :     virtual void Deactivating ();
     138             :     virtual void ExecuteGlobal (SfxRequest&);
     139             :     virtual void GetState (SfxItemSet&, unsigned nWhich);
     140           0 :     virtual void UpdateDebug (bool){};
     141             : protected:
     142             :     // Layout:
     143             :     virtual void OnFirstSize (long nWidth, long nHeight);
     144             : 
     145             : private:
     146             :     // child window
     147             :     DialogWindow* pChild;
     148             :     // dockable windows:
     149             :     // object catalog (owned by Shell)
     150             :     ObjectCatalog& rObjectCatalog;
     151             :     // property browser (created by this, deleted by toolkit)
     152             :     PropBrw* pPropertyBrowser;
     153             : 
     154             : private:
     155             :     void AddPropertyBrowser ();
     156             : private:
     157             :     friend class DialogWindow;
     158             : };
     159             : 
     160             : 
     161             : } // namespace basctl
     162             : 
     163             : #endif // BASCTL_BASIDE3_HXX
     164             : 
     165             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10