summaryrefslogtreecommitdiff
path: root/sfx2/inc/sfx2
diff options
context:
space:
mode:
authorMichael Stahl <mstahl@redhat.com>2013-03-24 00:13:20 +0100
committerMichael Stahl <mstahl@redhat.com>2013-03-25 16:29:08 +0100
commitdbba84906d394187b105b9b899ec10065d2d1fc8 (patch)
treefe1621c2b2acb2d773eb6b38cfa1567a3c8b3661 /sfx2/inc/sfx2
parentd2605c0b1026aba39085913c69da1f9974430e20 (diff)
remove that silly SfxInternetPage already
LibreOffice is not a web browser. This reloading stuff apparently never even worked for editable documents anyway, see i#50881. Change-Id: I720fbb72fd93232ad3e6fdfc65a05748bdf78108
Diffstat (limited to 'sfx2/inc/sfx2')
-rw-r--r--sfx2/inc/sfx2/dinfdlg.hxx64
1 files changed, 0 insertions, 64 deletions
diff --git a/sfx2/inc/sfx2/dinfdlg.hxx b/sfx2/inc/sfx2/dinfdlg.hxx
index b90b548e27ef..4743952d334e 100644
--- a/sfx2/inc/sfx2/dinfdlg.hxx
+++ b/sfx2/inc/sfx2/dinfdlg.hxx
@@ -235,70 +235,6 @@ public:
static SfxTabPage* Create( Window* pParent, const SfxItemSet& );
};
-// class SfxInternetPage -------------------------------------------------
-
-namespace sfx2
-{
- class FileDialogHelper;
-}
-
-class SfxInternetPage : public SfxTabPage
-{
-private:
- VclContainer* m_pContainer;
-
- RadioButton* m_pRBNoAutoUpdate;
- RadioButton* m_pRBReloadUpdate;
- RadioButton* m_pRBForwardUpdate;
-
- FixedText* m_pFTEvery;
- NumericField* m_pNFReload;
- FixedText* m_pFTReloadSeconds;
-
- FixedText* m_pFTAfter;
- NumericField* m_pNFAfter;
- FixedText* m_pFTAfterSeconds;
- FixedText* m_pFTURL;
- Edit* m_pEDForwardURL;
- PushButton* m_pPBBrowseURL;
- FixedText* m_pFTFrame;
- ComboBox* m_pCBFrame;
-
- String aForwardErrorMessg;
- String aBaseURL;
- SfxDocumentInfoItem* pInfoItem;
- sfx2::FileDialogHelper* pFileDlg;
-
- enum STATE { S_Init, S_NoUpdate, S_Reload, S_Forward };
- // S_Init is only valid as initial value
- STATE eState;
-
- void ChangeState( STATE eNewState ); // S_Init is not a valid value here
- // also checks corresponding radiobutton
- void EnableNoUpdate( sal_Bool bEnable );
- void EnableReload( sal_Bool bEnable );
- void EnableForward( sal_Bool bEnable );
-
- DECL_LINK( ClickHdlNoUpdate, Control* );
- DECL_LINK( ClickHdlReload, Control* );
- DECL_LINK( ClickHdlForward, Control* );
- DECL_LINK(ClickHdlBrowseURL, void *);
- DECL_LINK(DialogClosedHdl, void *);
-
- using TabPage::DeactivatePage;
-
-protected:
- SfxInternetPage( Window* pParent, const SfxItemSet& );
- ~SfxInternetPage();
-
- virtual sal_Bool FillItemSet( SfxItemSet& );
- virtual void Reset( const SfxItemSet& );
- virtual int DeactivatePage( SfxItemSet* pSet = 0 );
-
-public:
- static SfxTabPage* Create( Window* pParent, const SfxItemSet& );
-};
-
// class SfxDocumentInfoDialog -------------------------------------------
class SFX2_DLLPUBLIC SfxDocumentInfoDialog : public SfxTabDialog