Version 6.1.0.2, tag libreoffice-6.1.0.2
[LibreOffice.git] / sw / source / uibase / envelp / syncbtn.cxx
blob2ebcc26a255cf2c0c663f60a6f8fdbcaca514783
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
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/.
9 * This file incorporates work covered by the following license notice:
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 .
20 #include <sfx2/viewfrm.hxx>
21 #include <sfx2/dispatch.hxx>
23 #include <cmdid.h>
24 #include <swmodule.hxx>
25 #include <view.hxx>
26 #include <edtwin.hxx>
28 #include <syncbtn.hxx>
29 #include <swtypes.hxx>
31 SFX_IMPL_FLOATINGWINDOW( SwSyncChildWin, FN_SYNC_LABELS )
33 SwSyncChildWin::SwSyncChildWin( vcl::Window* _pParent,
34 sal_uInt16 nId,
35 SfxBindings* pBindings,
36 SfxChildWinInfo* pInfo ) :
37 SfxChildWindow( _pParent, nId )
39 SetWindow(VclPtr<SwSyncBtnDlg>::Create( pBindings, this, _pParent));
41 if (!pInfo->aSize.Width() || !pInfo->aSize.Height())
43 SwView* pActiveView = ::GetActiveView();
44 if(pActiveView)
46 const SwEditWin &rEditWin = pActiveView->GetEditWin();
47 GetWindow()->SetPosPixel(rEditWin.OutputToScreenPixel(Point(0, 0)));
49 else
50 GetWindow()->SetPosPixel(_pParent->OutputToScreenPixel(Point(0, 0)));
51 pInfo->aPos = GetWindow()->GetPosPixel();
52 pInfo->aSize = GetWindow()->GetSizePixel();
55 static_cast<SwSyncBtnDlg *>(GetWindow())->Initialize(pInfo);
57 GetWindow()->Show();
60 SwSyncBtnDlg::SwSyncBtnDlg( SfxBindings* _pBindings,
61 SfxChildWindow* pChild,
62 vcl::Window *pParent)
63 : SfxFloatingWindow(_pBindings, pChild, pParent, "FloatingSync", "modules/swriter/ui/floatingsync.ui")
65 get(m_pSyncBtn, "sync");
66 m_pSyncBtn->SetClickHdl(LINK(this, SwSyncBtnDlg, BtnHdl));
67 Show();
70 SwSyncBtnDlg::~SwSyncBtnDlg()
72 disposeOnce();
75 void SwSyncBtnDlg::dispose()
77 m_pSyncBtn.clear();
78 SfxFloatingWindow::dispose();
81 IMPL_STATIC_LINK_NOARG(SwSyncBtnDlg, BtnHdl, Button*, void)
83 SfxViewFrame::Current()->GetDispatcher()->Execute(FN_UPDATE_ALL_LINKS, SfxCallMode::ASYNCHRON);
86 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */