LCOV - code coverage report
Current view: top level - libreoffice/cui/source/inc - hltpbase.hxx (source / functions) Hit Total Coverage
Test: libreoffice_filtered.info Lines: 0 8 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             : #ifndef _SVX_TABBASE_HYPERLINK_HXX
      20             : #define _SVX_TABBASE_HYPERLINK_HXX
      21             : 
      22             : #include <sfx2/app.hxx>
      23             : #include <sfx2/tabdlg.hxx>
      24             : #include <vcl/group.hxx>
      25             : #include <vcl/button.hxx>
      26             : #include <vcl/fixed.hxx>
      27             : #include <vcl/combobox.hxx>
      28             : #include <vcl/edit.hxx>
      29             : #include <vcl/lstbox.hxx>
      30             : #include <svl/stritem.hxx>
      31             : #include <svl/eitem.hxx>
      32             : #include <svtools/transfer.hxx>
      33             : #include <sfx2/dispatch.hxx>
      34             : #include <vcl/msgbox.hxx>
      35             : #include <sfx2/fcontnr.hxx>
      36             : #include <svtools/inettbc.hxx>
      37             : #include <vcl/timer.hxx>
      38             : 
      39             : #include <dialmgr.hxx>
      40             : #include <sfx2/docfile.hxx>
      41             : #include <cuires.hrc>
      42             : #include <com/sun/star/frame/XFrame.hpp>
      43             : #include "helpid.hrc"
      44             : #include <svx/hlnkitem.hxx>
      45             : 
      46             : #include "hlmarkwn.hxx"
      47             : #include "iconcdlg.hxx"
      48             : 
      49             : /// ComboBox-Control, wich is filled with all current framenames
      50             : class SvxFramesComboBox : public ComboBox
      51             : {
      52             : public:
      53             :     SvxFramesComboBox (Window* pParent, const ResId& rResId, SfxDispatcher* pDispatch);
      54             :     ~SvxFramesComboBox ();
      55             : };
      56             : 
      57             : /// ComboBox-Control for URL's with History and Autocompletion
      58           0 : class SvxHyperURLBox : public SvtURLBox, public DropTargetHelper
      59             : {
      60             : protected:
      61             :     virtual sal_Int8    AcceptDrop( const AcceptDropEvent& rEvt );
      62             :     virtual sal_Int8    ExecuteDrop( const ExecuteDropEvent& rEvt );
      63             : 
      64             :     virtual long        Notify( NotifyEvent& rNEvt );
      65             :     virtual void        Select();
      66             :     virtual void        Modify();
      67             :     virtual long        PreNotify( NotifyEvent& rNEvt );
      68             : 
      69             : public:
      70             :     SvxHyperURLBox( Window* pParent, INetProtocol eSmart = INET_PROT_FILE );
      71             : 
      72             : };
      73             : 
      74             : /// Tabpage : Basisclass
      75             : class SvxHyperlinkTabPageBase : public IconChoicePage
      76             : {
      77             : private:
      78             :     FixedLine           *mpGrpMore;
      79             :     FixedText           *mpFtFrame;
      80             :     SvxFramesComboBox   *mpCbbFrame;
      81             :     FixedText           *mpFtForm;
      82             :     ListBox             *mpLbForm;
      83             :     FixedText           *mpFtIndication;
      84             :     Edit                *mpEdIndication;
      85             :     FixedText           *mpFtText;
      86             :     Edit                *mpEdText;
      87             :     ImageButton         *mpBtScript;
      88             : 
      89             :     sal_Bool            mbIsCloseDisabled;
      90             : 
      91             :     ::com::sun::star::uno::Reference< ::com::sun::star::frame::XFrame >
      92             :                         mxDocumentFrame;
      93             : 
      94             : protected:
      95             :     Window*             mpDialog;
      96             : 
      97             :     sal_Bool                mbStdControlsInit;
      98             : 
      99             :     String              maStrInitURL;
     100             : 
     101             :     Timer               maTimer;
     102             : 
     103             :     SvxHlinkDlgMarkWnd* mpMarkWnd;
     104             : 
     105             :     void InitStdControls ();
     106             :     virtual void FillStandardDlgFields ( SvxHyperlinkItem* pHyperlinkItem );
     107             :     virtual void FillDlgFields         ( String& aStrURL ) = 0;
     108             :     virtual void GetCurentItemData     ( String& aStrURL, String& aStrName,
     109             :                                          String& aStrIntName, String& aStrFrame,
     110             :                                          SvxLinkInsertMode& eMode ) = 0;
     111             :     virtual String CreateUiNameFromURL( const String& aStrURL );
     112             : 
     113             :     void         GetDataFromCommonFields( String& aStrName,
     114             :                                           String& aStrIntName, String& aStrFrame,
     115             :                                           SvxLinkInsertMode& eMode );
     116             : 
     117             :     DECL_LINK (ClickScriptHdl_Impl, void * ); ///< Button : Script
     118             : 
     119             :     String              aEmptyStr;
     120             : 
     121             :     static String   GetSchemeFromURL( String aStrURL );
     122             : 
     123           0 :     inline void     DisableClose( sal_Bool _bDisable ) { mbIsCloseDisabled = _bDisable; }
     124             : 
     125             : public:
     126             :     SvxHyperlinkTabPageBase (
     127             :         Window *pParent,
     128             :         const ResId &rResId,
     129             :         const SfxItemSet& rItemSet
     130             :     );
     131             :     virtual ~SvxHyperlinkTabPageBase ();
     132             : 
     133           0 :     void    SetDocumentFrame(
     134             :         const ::com::sun::star::uno::Reference< ::com::sun::star::frame::XFrame >& rxDocumentFrame )
     135             :     {
     136           0 :         mxDocumentFrame = rxDocumentFrame;
     137           0 :     }
     138             : 
     139             :     virtual sal_Bool AskApply ();
     140             :     virtual void DoApply ();
     141             :     virtual void SetOnlineMode( sal_Bool bEnable );
     142             :     virtual void SetInitFocus();
     143             :     virtual void SetMarkStr ( String& aStrMark );
     144             :     virtual void Reset( const SfxItemSet& );
     145             :     virtual sal_Bool FillItemSet( SfxItemSet& );
     146             :     virtual void ActivatePage( const SfxItemSet& rItemSet );
     147             :     virtual int  DeactivatePage( SfxItemSet* pSet = 0 );
     148             : 
     149           0 :     sal_Bool IsMarkWndVisible ()      { return ((Window*)mpMarkWnd)->IsVisible(); }
     150           0 :     Size GetSizeExtraWnd ()       { return ( mpMarkWnd->GetSizePixel() ); }
     151             :     sal_Bool MoveToExtraWnd ( Point aNewPos, sal_Bool bDisConnectDlg = sal_False );
     152             : 
     153             :     virtual void        ActivatePage();
     154             :     virtual void        DeactivatePage();
     155             :     virtual sal_Bool    QueryClose();
     156             : 
     157             : protected:
     158             :     virtual sal_Bool ShouldOpenMarkWnd();
     159             :     virtual void SetMarkWndShouldOpen(sal_Bool bOpen);
     160             : 
     161             :     void ShowMarkWnd ();
     162           0 :     void HideMarkWnd ()           { ( ( Window* ) mpMarkWnd )->Hide(); }
     163             :     void InvalidateMarkWnd ()     { ( ( Window* ) mpMarkWnd )->Invalidate(); }
     164             : 
     165             :     SfxDispatcher* GetDispatcher() const;
     166             : 
     167             :     sal_uInt16             GetMacroEvents();
     168             :     SvxMacroTableDtor* GetMacroTable();
     169             : 
     170             :     sal_Bool IsHTMLDoc() const;
     171             : };
     172             : 
     173             : #endif // _SVX_TABBASE_HYPERLINK_HXX
     174             : 
     175             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10