Files
libreoffice/sw/source/ui/dbui/dbui.cxx

140 lines
4.6 KiB
C++
Raw Normal View History

/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2000-09-18 16:15:01 +00:00
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
2000-09-18 16:15:01 +00:00
*
* Copyright 2000, 2010 Oracle and/or its affiliates.
2000-09-18 16:15:01 +00:00
*
* OpenOffice.org - a multi-platform office productivity suite
2000-09-18 16:15:01 +00:00
*
* This file is part of OpenOffice.org.
2000-09-18 16:15:01 +00:00
*
* OpenOffice.org is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License version 3
* only, as published by the Free Software Foundation.
2000-09-18 16:15:01 +00:00
*
* OpenOffice.org 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 version 3 for more details
* (a copy is included in the LICENSE file that accompanied this code).
2000-09-18 16:15:01 +00:00
*
* You should have received a copy of the GNU Lesser General Public License
* version 3 along with OpenOffice.org. If not, see
* <http://www.openoffice.org/license.html>
* for a copy of the LGPLv3 License.
2000-09-18 16:15:01 +00:00
*
************************************************************************/
2000-09-18 16:15:01 +00:00
#include "wrtsh.hxx"
#include "dbui.hrc"
#include "dbui.hxx"
2008-10-01 06:46:01 +00:00
PrintMonitor::PrintMonitor( Window *pParent, PrintMonitorType eType )
2000-09-18 16:15:01 +00:00
: ModelessDialog( pParent, SW_RES(DLG_PRINTMONITOR) ),
aDocName (this, SW_RES( FT_DOCNAME )),
2008-10-01 06:46:01 +00:00
aPrinting (this, SW_RES(
eType == MONITOR_TYPE_MAIL ?
FT_SENDING : eType == MONITOR_TYPE_SAVE ? FT_SAVING : FT_PRINTING )),
2000-09-18 16:15:01 +00:00
aPrinter (this, SW_RES( FT_PRINTER )),
aPrintInfo (this, SW_RES( FT_PRINTINFO )),
aCancel (this, SW_RES( PB_CANCELPRNMON ))
{
2008-10-01 06:46:01 +00:00
switch (eType)
2000-09-18 16:15:01 +00:00
{
2008-10-01 06:46:01 +00:00
case MONITOR_TYPE_SAVE: SetText(SW_RES(STR_SAVEMON)); break;
case MONITOR_TYPE_MAIL: SetText(SW_RES(STR_EMAILMON)); break;
case MONITOR_TYPE_PRINT: break;
2000-09-18 16:15:01 +00:00
}
FreeResource();
}
2008-10-01 06:46:01 +00:00
static void lcl_ResizeControl( Window* pWin, long nDiff )
2008-10-01 06:46:01 +00:00
{
Size aSize( pWin->GetSizePixel() );
aSize.Width() += nDiff;
pWin->SetSizePixel( aSize );
}
static void lcl_RePosControl( Window* pWin, long nDiff )
2008-10-01 06:46:01 +00:00
{
Point aPos( pWin->GetPosPixel() );
aPos.X() += nDiff;
pWin->SetPosPixel( aPos );
}
void PrintMonitor::ResizeControls()
{
Size aDlgSize( GetSizePixel() );
Size aPrinterSize( aPrinter.GetSizePixel() );
long nPrinterTextWidth = aPrinter.GetTextWidth( aPrinter.GetText() );
if( nPrinterTextWidth > aPrinterSize.Width() )
{
//increase control and dialog width if printer text is too long
//do not increase dialog width more than three times
long nDiff = nPrinterTextWidth - aPrinterSize.Width();
if( nDiff > 2 * aDlgSize.Width() )
{
aPrinter.SetStyle( WB_RIGHT | aPrinter.GetStyle() );
nDiff = 2 * aDlgSize.Width();
}
aDlgSize.Width() += nDiff;
SetSizePixel(aDlgSize);
lcl_ResizeControl( &aPrinter, nDiff );
2000-09-18 16:15:01 +00:00
2008-10-01 06:46:01 +00:00
nDiff /= 2;
lcl_RePosControl( &aDocName, nDiff );
lcl_RePosControl( &aPrinting, nDiff );
lcl_RePosControl( &aPrintInfo, nDiff );
lcl_RePosControl( &aCancel, nDiff );
}
}
2010-10-20 15:36:15 +01:00
// Progress Indicator for Creation of personalized Mail Merge documents:
CreateMonitor::CreateMonitor( Window *pParent )
: ModelessDialog( pParent, SW_RES(DLG_MM_CREATIONMONITOR) ),
m_aStatus (this, SW_RES( FT_STATUS )),
m_aProgress (this, SW_RES( FT_PROGRESS )),
m_aCreateDocuments (this, SW_RES( FT_CREATEDOCUMENTS )),
m_aCounting (this, SW_RES( FT_COUNTING )),
m_aCancelButton (this, SW_RES( PB_CANCELPRNMON )),
m_sCountingPattern(),
m_sVariable_Total( rtl::OUString("%Y") ),
m_sVariable_Position( rtl::OUString("%X") ),
m_nTotalCount(0),
m_nCurrentPosition(0)
{
FreeResource();
m_sCountingPattern = m_aCounting.GetText();
m_aCounting.SetText(rtl::OUString("..."));
}
void CreateMonitor::UpdateCountingText()
{
String sText(m_sCountingPattern);
sText.SearchAndReplaceAll( m_sVariable_Total, String::CreateFromInt32( m_nTotalCount ) );
sText.SearchAndReplaceAll( m_sVariable_Position, String::CreateFromInt32( m_nCurrentPosition ) );
m_aCounting.SetText(sText);
}
void CreateMonitor::SetTotalCount( sal_Int32 nTotal )
{
m_nTotalCount = nTotal;
UpdateCountingText();
}
void CreateMonitor::SetCurrentPosition( sal_Int32 nCurrent )
{
m_nCurrentPosition = nCurrent;
UpdateCountingText();
}
void CreateMonitor::SetCancelHdl( const Link& rLink )
{
m_aCancelButton.SetClickHdl( rLink );
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */