Files
libreoffice/sw/source/ui/envelp/syncbtn.cxx

125 lines
3.9 KiB
C++
Raw Normal View History

2000-09-18 16:15:01 +00:00
/*************************************************************************
*
* OpenOffice.org - a multi-platform office productivity suite
2000-09-18 16:15:01 +00:00
*
* $RCSfile: syncbtn.cxx,v $
2000-09-18 16:15:01 +00:00
*
* $Revision: 1.6 $
2000-09-18 16:15:01 +00:00
*
* last change: $Author: kz $ $Date: 2007-05-10 16:17:24 $
2000-09-18 16:15:01 +00:00
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
2000-09-18 16:15:01 +00:00
*
*
* GNU Lesser General Public License Version 2.1
* =============================================
* Copyright 2005 by Sun Microsystems, Inc.
* 901 San Antonio Road, Palo Alto, CA 94303, USA
2000-09-18 16:15:01 +00:00
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License version 2.1, as published by the Free Software Foundation.
2000-09-18 16:15:01 +00:00
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
2000-09-18 16:15:01 +00:00
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston,
* MA 02111-1307 USA
2000-09-18 16:15:01 +00:00
*
************************************************************************/
// MARKER(update_precomp.py): autogen include statement, do not remove
#include "precompiled_sw.hxx"
2000-09-18 16:15:01 +00:00
#ifndef _SFXVIEWFRM_HXX //autogen
#include <sfx2/viewfrm.hxx>
#endif
#ifndef _SFXDISPATCH_HXX //autogen
#include <sfx2/dispatch.hxx>
#endif
#include "cmdid.h"
#include "swmodule.hxx"
#include "view.hxx"
#include "edtwin.hxx"
#include "label.hrc"
#define _SYNCDLG
#include "syncbtn.hxx"
#include "swtypes.hxx"
SFX_IMPL_FLOATINGWINDOW( SwSyncChildWin, FN_SYNC_LABELS )
/*------------------------------------------------------------------------
Beschreibung:
------------------------------------------------------------------------*/
SwSyncChildWin::SwSyncChildWin( Window* pParent,
USHORT nId,
SfxBindings* pBindings,
SfxChildWinInfo* pInfo ) :
SfxChildWindow( pParent, nId )
{
pWindow = new SwSyncBtnDlg( pBindings, this, pParent);
if (!pInfo->aSize.Width() || !pInfo->aSize.Height())
{
SwView* pActiveView = ::GetActiveView();
if(pActiveView)
{
const SwEditWin &rEditWin = pActiveView->GetEditWin();
pWindow->SetPosPixel(rEditWin.OutputToScreenPixel(Point(0, 0)));
}
else
pWindow->SetPosPixel(pParent->OutputToScreenPixel(Point(0, 0)));
2000-09-18 16:15:01 +00:00
pInfo->aPos = pWindow->GetPosPixel();
pInfo->aSize = pWindow->GetSizePixel();
}
((SwSyncBtnDlg *)pWindow)->Initialize(pInfo);
pWindow->Show();
}
/*------------------------------------------------------------------------
Beschreibung:
------------------------------------------------------------------------*/
SwSyncBtnDlg::SwSyncBtnDlg( SfxBindings* pBindings,
SfxChildWindow* pChild,
Window *pParent) :
SfxFloatingWindow(pBindings, pChild, pParent, SW_RES(DLG_SYNC_BTN)),
aSyncBtn (this, SW_RES(BTN_SYNC ))
{
FreeResource();
aSyncBtn.SetClickHdl(LINK(this, SwSyncBtnDlg, BtnHdl));
}
/*------------------------------------------------------------------------
Beschreibung:
------------------------------------------------------------------------*/
__EXPORT SwSyncBtnDlg::~SwSyncBtnDlg()
{
}
/*--------------------------------------------------------------------
Beschreibung:
--------------------------------------------------------------------*/
IMPL_LINK( SwSyncBtnDlg, BtnHdl, PushButton *, pBtn )
{
SfxViewFrame::Current()->GetDispatcher()->Execute(FN_UPDATE_ALL_LINKS, SFX_CALLMODE_ASYNCHRON);
return 0;
}