2008-03-05 16:23:15 +00:00
|
|
|
/*************************************************************************
|
|
|
|
*
|
2008-04-11 07:53:57 +00:00
|
|
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
2008-03-05 16:23:15 +00:00
|
|
|
*
|
2008-04-11 07:53:57 +00:00
|
|
|
* Copyright 2008 by Sun Microsystems, Inc.
|
2008-03-05 16:23:15 +00:00
|
|
|
*
|
2008-04-11 07:53:57 +00:00
|
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
2008-03-05 16:23:15 +00:00
|
|
|
*
|
2008-04-11 07:53:57 +00:00
|
|
|
* $RCSfile: backingwindow.cxx,v $
|
2008-08-01 08:02:44 +00:00
|
|
|
* $Revision: 1.12 $
|
2008-03-05 16:23:15 +00:00
|
|
|
*
|
2008-04-11 07:53:57 +00:00
|
|
|
* This file is part of OpenOffice.org.
|
2008-03-05 16:23:15 +00:00
|
|
|
*
|
2008-04-11 07:53:57 +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.
|
2008-03-05 16:23:15 +00:00
|
|
|
*
|
2008-04-11 07:53:57 +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).
|
2008-03-05 16:23:15 +00:00
|
|
|
*
|
2008-04-11 07:53:57 +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.
|
2008-03-05 16:23:15 +00:00
|
|
|
*
|
|
|
|
************************************************************************/
|
|
|
|
|
|
|
|
// autogen include statement, do not remove
|
|
|
|
#include "precompiled_framework.hxx"
|
|
|
|
|
|
|
|
#include "backingwindow.hxx"
|
|
|
|
#include "framework.hrc"
|
|
|
|
#include "classes/fwkresid.hxx"
|
|
|
|
|
|
|
|
#include "vcl/metric.hxx"
|
2008-04-03 16:11:36 +00:00
|
|
|
#include "vcl/mnemonic.hxx"
|
|
|
|
#include "vcl/menu.hxx"
|
2008-05-30 06:37:16 +00:00
|
|
|
#include "vcl/svapp.hxx"
|
2008-03-05 16:23:15 +00:00
|
|
|
|
|
|
|
#include "tools/urlobj.hxx"
|
|
|
|
|
|
|
|
#include "svtools/dynamicmenuoptions.hxx"
|
|
|
|
#include "svtools/imagemgr.hxx"
|
|
|
|
#include "svtools/svtools.hrc"
|
|
|
|
|
|
|
|
#include "comphelper/processfactory.hxx"
|
|
|
|
#include "comphelper/sequenceashashmap.hxx"
|
|
|
|
|
|
|
|
#include "rtl/strbuf.hxx"
|
|
|
|
#include "rtl/ustrbuf.hxx"
|
|
|
|
|
|
|
|
#include "com/sun/star/lang/XMultiServiceFactory.hpp"
|
|
|
|
#include "com/sun/star/container/XNameAccess.hpp"
|
|
|
|
#include "com/sun/star/system/XSystemShellExecute.hpp"
|
|
|
|
#include "com/sun/star/system/SystemShellExecuteFlags.hpp"
|
2008-08-01 08:02:44 +00:00
|
|
|
#include "com/sun/star/task/XJobExecutor.hpp"
|
2008-03-05 16:23:15 +00:00
|
|
|
|
|
|
|
|
|
|
|
using namespace ::com::sun::star::beans;
|
|
|
|
using namespace ::com::sun::star::frame;
|
|
|
|
using namespace ::com::sun::star::uno;
|
|
|
|
using namespace ::com::sun::star;
|
|
|
|
using namespace framework;
|
|
|
|
|
|
|
|
#define WRITER_URL "private:factory/swriter"
|
|
|
|
#define CALC_URL "private:factory/scalc"
|
|
|
|
#define IMPRESS_WIZARD_URL "private:factory/simpress?slot=6686"
|
|
|
|
#define DRAW_URL "private:factory/sdraw"
|
|
|
|
#define BASE_URL "private:factory/sdatabase?Interactive"
|
2008-07-11 06:17:22 +00:00
|
|
|
#define MATH_URL "private:factory/smath"
|
2008-03-05 16:23:15 +00:00
|
|
|
#define TEMPLATE_URL "slot:5500"
|
2008-04-03 16:11:36 +00:00
|
|
|
#define OPEN_URL ".uno:Open"
|
2008-03-05 16:23:15 +00:00
|
|
|
|
|
|
|
DecoToolBox::DecoToolBox( Window* pParent, WinBits nStyle ) :
|
|
|
|
ToolBox( pParent, nStyle )
|
|
|
|
{
|
2008-03-12 09:09:47 +00:00
|
|
|
SetBackground();
|
|
|
|
SetPaintTransparent( TRUE );
|
2008-03-05 16:23:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void DecoToolBox::DataChanged( const DataChangedEvent& rDCEvt )
|
|
|
|
{
|
|
|
|
Window::DataChanged( rDCEvt );
|
|
|
|
|
|
|
|
if ( rDCEvt.GetFlags() & SETTINGS_STYLE )
|
|
|
|
{
|
|
|
|
calcMinSize();
|
|
|
|
SetBackground();
|
2008-03-12 09:09:47 +00:00
|
|
|
SetPaintTransparent( TRUE );
|
2008-03-05 16:23:15 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void DecoToolBox::calcMinSize()
|
|
|
|
{
|
|
|
|
ToolBox aTbx( GetParent() );
|
|
|
|
USHORT nItems = GetItemCount();
|
|
|
|
for( USHORT i = 0; i < nItems; i++ )
|
|
|
|
{
|
|
|
|
USHORT nId = GetItemId( i );
|
|
|
|
aTbx.InsertItem( nId, GetItemImage( nId ) );
|
|
|
|
}
|
|
|
|
aTbx.SetOutStyle( TOOLBOX_STYLE_FLAT );
|
|
|
|
maMinSize = aTbx.CalcWindowSizePixel();
|
|
|
|
}
|
|
|
|
|
|
|
|
Size DecoToolBox::getMinSize()
|
|
|
|
{
|
|
|
|
return maMinSize;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
BackingWindow::BackingWindow( Window* i_pParent ) :
|
|
|
|
Window( i_pParent, FwkResId( DLG_BACKING ) ),
|
|
|
|
maWelcome( this, WB_LEFT ),
|
|
|
|
maProduct( this, WB_LEFT ),
|
2008-03-12 09:09:47 +00:00
|
|
|
maCreateText( this, WB_LEFT ),
|
2008-03-05 16:23:15 +00:00
|
|
|
maWriterText( this, WB_WORDBREAK | WB_VCENTER ),
|
|
|
|
maWriterButton( this, WB_CENTER | WB_BEVELBUTTON ),
|
|
|
|
maCalcText( this, WB_WORDBREAK | WB_VCENTER ),
|
|
|
|
maCalcButton( this, WB_CENTER | WB_BEVELBUTTON ),
|
|
|
|
maImpressText( this, WB_WORDBREAK | WB_VCENTER ),
|
|
|
|
maImpressButton( this, WB_CENTER | WB_BEVELBUTTON ),
|
|
|
|
maDrawText( this, WB_WORDBREAK | WB_VCENTER ),
|
|
|
|
maDrawButton( this, WB_CENTER | WB_BEVELBUTTON ),
|
|
|
|
maDBText( this, WB_WORDBREAK | WB_VCENTER ),
|
|
|
|
maDBButton( this, WB_CENTER | WB_BEVELBUTTON ),
|
2008-07-11 06:17:22 +00:00
|
|
|
maMathText( this, WB_WORDBREAK | WB_VCENTER ),
|
|
|
|
maMathButton( this, WB_CENTER | WB_BEVELBUTTON ),
|
2008-03-05 16:23:15 +00:00
|
|
|
maTemplateText( this, WB_WORDBREAK | WB_VCENTER ),
|
|
|
|
maTemplateButton( this, WB_CENTER | WB_BEVELBUTTON ),
|
2008-04-03 16:11:36 +00:00
|
|
|
maOpenText( this, WB_WORDBREAK | WB_VCENTER ),
|
|
|
|
maOpenButton( this, WB_CENTER | WB_BEVELBUTTON ),
|
2008-03-05 16:23:15 +00:00
|
|
|
maToolbox( this, WB_DIALOGCONTROL ),
|
|
|
|
maWelcomeString( FwkResId( STR_BACKING_WELCOME ) ),
|
|
|
|
maProductString( FwkResId( STR_BACKING_WELCOMEPRODUCT ) ),
|
|
|
|
maCreateString( FwkResId( STR_BACKING_CREATE ) ),
|
|
|
|
maOpenString( FwkResId( STR_BACKING_FILE ) ),
|
|
|
|
maTemplateString( FwkResId( STR_BACKING_TEMPLATE ) ),
|
2008-04-03 16:11:36 +00:00
|
|
|
maButtonImageSize( 10, 10 ),
|
|
|
|
mbInitControls( false ),
|
|
|
|
mpAccExec( NULL )
|
2008-03-05 16:23:15 +00:00
|
|
|
{
|
|
|
|
mnColumnWidth[0] = mnColumnWidth[1] = 0;
|
|
|
|
|
|
|
|
// get icon images from vcl resource and set them on the appropriate buttons
|
|
|
|
loadImage( FwkResId( BMP_BACKING_WRITER ), maWriterButton );
|
|
|
|
loadImage( FwkResId( BMP_BACKING_CALC ), maCalcButton );
|
|
|
|
loadImage( FwkResId( BMP_BACKING_IMPRESS ), maImpressButton );
|
|
|
|
loadImage( FwkResId( BMP_BACKING_DRAW ), maDrawButton );
|
|
|
|
loadImage( FwkResId( BMP_BACKING_DATABASE ), maDBButton );
|
2008-07-11 06:17:22 +00:00
|
|
|
loadImage( FwkResId( BMP_BACKING_FORMULA ), maMathButton );
|
2008-03-05 16:23:15 +00:00
|
|
|
loadImage( FwkResId( BMP_BACKING_OPENFILE ), maOpenButton );
|
|
|
|
loadImage( FwkResId( BMP_BACKING_OPENTEMPLATE ), maTemplateButton );
|
|
|
|
|
|
|
|
BitmapEx aExtImage( FwkResId( BMP_BACKING_EXT ) );
|
|
|
|
String aExtHelpText( FwkResId( STR_BACKING_EXTHELP ) );
|
|
|
|
BitmapEx aRegImage( FwkResId( BMP_BACKING_REG ) );
|
|
|
|
String aRegHelpText( FwkResId( STR_BACKING_REGHELP ) );
|
|
|
|
BitmapEx aInfoImage( FwkResId( BMP_BACKING_INFO ) );
|
|
|
|
String aInfoHelpText( FwkResId( STR_BACKING_INFOHELP ) );
|
2008-06-03 13:45:57 +00:00
|
|
|
BitmapEx aTplRepImage( FwkResId( BMP_BACKING_TPLREP ) );
|
|
|
|
String aTplRepHelpText( FwkResId( STR_BACKING_TPLREP ) );
|
2008-03-05 16:23:15 +00:00
|
|
|
|
|
|
|
// clean up resource stack
|
|
|
|
FreeResource();
|
|
|
|
|
|
|
|
SetStyle( GetStyle() | WB_DIALOGCONTROL );
|
|
|
|
|
|
|
|
// add some breathing space for the images
|
|
|
|
maButtonImageSize.Width() += 12;
|
|
|
|
maButtonImageSize.Height() += 12;
|
|
|
|
|
2008-06-25 13:41:59 +00:00
|
|
|
// force tab cycling in toolbox
|
|
|
|
maToolbox.SetStyle( maToolbox.GetStyle() | WB_FORCETABCYCLE );
|
|
|
|
|
2008-04-03 16:11:36 +00:00
|
|
|
// insert toolbox items
|
2008-06-03 13:45:57 +00:00
|
|
|
maToolbox.InsertItem( nItemId_TplRep, Image( aTplRepImage ) );
|
|
|
|
maToolbox.SetItemText( nItemId_TplRep, aTplRepHelpText );
|
|
|
|
maToolbox.SetQuickHelpText( nItemId_TplRep, aTplRepHelpText );
|
|
|
|
maToolbox.SetItemCommand( nItemId_TplRep, String( RTL_CONSTASCII_USTRINGPARAM( ".HelpId:StartCenter:TemplateRepository" ) ) );
|
|
|
|
maToolbox.ShowItem( nItemId_TplRep );
|
|
|
|
|
2008-04-03 16:11:36 +00:00
|
|
|
maToolbox.InsertItem( nItemId_Extensions, Image( aExtImage ) );
|
|
|
|
maToolbox.SetQuickHelpText( nItemId_Extensions, aExtHelpText );
|
2008-05-14 08:42:49 +00:00
|
|
|
maToolbox.SetItemText( nItemId_Extensions, aExtHelpText );
|
2008-04-03 16:11:36 +00:00
|
|
|
maToolbox.SetItemCommand( nItemId_Extensions, String( RTL_CONSTASCII_USTRINGPARAM( ".HelpId:StartCenter:Extensions" ) ) );
|
|
|
|
maToolbox.ShowItem( nItemId_Extensions );
|
|
|
|
|
|
|
|
maToolbox.InsertItem( nItemId_Reg, Image( aRegImage ) );
|
|
|
|
maToolbox.SetQuickHelpText( nItemId_Reg, aRegHelpText );
|
2008-05-14 08:42:49 +00:00
|
|
|
maToolbox.SetItemText( nItemId_Reg, aRegHelpText );
|
2008-04-03 16:11:36 +00:00
|
|
|
maToolbox.SetItemCommand( nItemId_Reg, String( RTL_CONSTASCII_USTRINGPARAM( ".HelpId:StartCenter:Register" ) ) );
|
|
|
|
maToolbox.ShowItem( nItemId_Reg );
|
|
|
|
|
|
|
|
maToolbox.InsertItem( nItemId_Info, Image( aInfoImage ) );
|
2008-05-14 08:42:49 +00:00
|
|
|
maToolbox.SetItemText( nItemId_Info, aInfoHelpText );
|
2008-04-03 16:11:36 +00:00
|
|
|
maToolbox.SetQuickHelpText( nItemId_Info, aInfoHelpText );
|
|
|
|
maToolbox.SetItemCommand( nItemId_Info, String( RTL_CONSTASCII_USTRINGPARAM( ".HelpId:StartCenter:Info" ) ) );
|
|
|
|
maToolbox.ShowItem( nItemId_Info );
|
|
|
|
|
|
|
|
// get dispatch provider
|
2008-03-05 16:23:15 +00:00
|
|
|
mxDesktop = Reference<XDesktop>( comphelper::getProcessServiceFactory()->createInstance(
|
|
|
|
rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("com.sun.star.frame.Desktop")) ),
|
|
|
|
UNO_QUERY );
|
|
|
|
if( mxDesktop.is() )
|
|
|
|
mxDesktopDispatchProvider = Reference< XDispatchProvider >( mxDesktop, UNO_QUERY );
|
|
|
|
|
2008-04-03 16:11:36 +00:00
|
|
|
maWriterButton.SetSmartHelpId( SmartId( String( RTL_CONSTASCII_USTRINGPARAM( ".HelpId:StartCenter:WriterButton" ) ) ) );
|
|
|
|
maCalcButton.SetSmartHelpId( SmartId( String( RTL_CONSTASCII_USTRINGPARAM( ".HelpId:StartCenter:CalcButton" ) ) ) );
|
|
|
|
maImpressButton.SetSmartHelpId( SmartId( String( RTL_CONSTASCII_USTRINGPARAM( ".HelpId:StartCenter:ImpressButton" ) ) ) );
|
|
|
|
maDrawButton.SetSmartHelpId( SmartId( String( RTL_CONSTASCII_USTRINGPARAM( ".HelpId:StartCenter:DrawButton" ) ) ) );
|
|
|
|
maDBButton.SetSmartHelpId( SmartId( String( RTL_CONSTASCII_USTRINGPARAM( ".HelpId:StartCenter:DBButton" ) ) ) );
|
2008-07-11 06:17:22 +00:00
|
|
|
maMathButton.SetSmartHelpId( SmartId( String( RTL_CONSTASCII_USTRINGPARAM( ".HelpId:StartCenter:MathButton" ) ) ) );
|
2008-04-03 16:11:36 +00:00
|
|
|
maTemplateButton.SetSmartHelpId( SmartId( String( RTL_CONSTASCII_USTRINGPARAM( ".HelpId:StartCenter:TemplateButton" ) ) ) );
|
|
|
|
maOpenButton.SetSmartHelpId( SmartId( String( RTL_CONSTASCII_USTRINGPARAM( ".HelpId:StartCenter:OpenButton" ) ) ) );
|
|
|
|
maToolbox.SetSmartHelpId( SmartId( String( RTL_CONSTASCII_USTRINGPARAM( ".HelpId:StartCenter:Toolbox" ) ) ) );
|
2008-04-17 06:55:36 +00:00
|
|
|
|
|
|
|
// init background
|
|
|
|
initBackground();
|
2008-04-03 16:11:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
BackingWindow::~BackingWindow()
|
|
|
|
{
|
|
|
|
delete mpAccExec;
|
|
|
|
}
|
|
|
|
|
2008-04-17 06:55:36 +00:00
|
|
|
class ImageContainerRes : public Resource
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
ImageContainerRes( const ResId& i_rId ) : Resource( i_rId ) {}
|
|
|
|
~ImageContainerRes() { FreeResource(); }
|
|
|
|
};
|
|
|
|
|
|
|
|
void BackingWindow::DataChanged( const DataChangedEvent& rDCEvt )
|
|
|
|
{
|
|
|
|
Window::DataChanged( rDCEvt );
|
|
|
|
|
|
|
|
if ( rDCEvt.GetFlags() & SETTINGS_STYLE )
|
|
|
|
{
|
|
|
|
initBackground();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void BackingWindow::initBackground()
|
|
|
|
{
|
2008-06-25 13:41:59 +00:00
|
|
|
SetBackground( GetSettings().GetStyleSettings().GetWorkspaceGradient() );
|
|
|
|
|
2008-04-17 06:55:36 +00:00
|
|
|
bool bDark = GetSettings().GetStyleSettings().GetWindowColor().IsDark();
|
|
|
|
maWelcomeTextColor = maLabelTextColor = bDark ? Color( COL_WHITE ) : Color( 0x26, 0x35, 0x42 );
|
|
|
|
Color aTextBGColor( bDark ? COL_BLACK : COL_WHITE );
|
|
|
|
|
|
|
|
// select image set
|
|
|
|
ImageContainerRes aRes( FwkResId( bDark ? RES_BACKING_IMAGES_HC : RES_BACKING_IMAGES ) );
|
|
|
|
|
|
|
|
// scale middle segment
|
|
|
|
Size aMiddleSize;
|
|
|
|
if( !! maBackgroundMiddle )
|
|
|
|
aMiddleSize = maBackgroundMiddle.GetSizePixel();
|
|
|
|
// load middle segment
|
|
|
|
maBackgroundMiddle = BitmapEx( FwkResId( BMP_BACKING_BACKGROUND_MIDDLE ) );
|
|
|
|
// and scale it to previous size
|
|
|
|
if( aMiddleSize.Width() && aMiddleSize.Height() )
|
|
|
|
maBackgroundMiddle.Scale( aMiddleSize );
|
|
|
|
|
|
|
|
if( GetSettings().GetLayoutRTL() )
|
|
|
|
{
|
|
|
|
// replace images by RTL versions
|
|
|
|
maBackgroundLeft = BitmapEx( FwkResId( BMP_BACKING_BACKGROUND_RTL_RIGHT ) );
|
|
|
|
maBackgroundRight = BitmapEx( FwkResId( BMP_BACKING_BACKGROUND_RTL_LEFT) );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
maBackgroundLeft = BitmapEx( FwkResId( BMP_BACKING_BACKGROUND_LEFT ) );
|
|
|
|
maBackgroundRight = BitmapEx( FwkResId( BMP_BACKING_BACKGROUND_RIGHT ) );
|
|
|
|
}
|
|
|
|
|
|
|
|
maWelcome.SetControlForeground( maWelcomeTextColor );
|
|
|
|
maWelcome.SetControlBackground( aTextBGColor );
|
|
|
|
maProduct.SetControlForeground( maWelcomeTextColor );
|
|
|
|
maProduct.SetControlBackground( aTextBGColor );
|
|
|
|
maCreateText.SetControlForeground( maLabelTextColor );
|
|
|
|
maCreateText.SetControlBackground( aTextBGColor );
|
|
|
|
maWriterText.SetControlForeground( maLabelTextColor );
|
|
|
|
maWriterText.SetControlBackground( aTextBGColor );
|
|
|
|
maCalcText.SetControlForeground( maLabelTextColor );
|
|
|
|
maCalcText.SetControlBackground( aTextBGColor );
|
|
|
|
maImpressText.SetControlForeground( maLabelTextColor );
|
|
|
|
maImpressText.SetControlBackground( aTextBGColor );
|
|
|
|
maDrawText.SetControlForeground( maLabelTextColor );
|
|
|
|
maDrawText.SetControlBackground( aTextBGColor );
|
|
|
|
maDBText.SetControlForeground( maLabelTextColor );
|
|
|
|
maDBText.SetControlBackground( aTextBGColor );
|
2008-07-11 06:17:22 +00:00
|
|
|
maMathText.SetControlForeground( maLabelTextColor );
|
|
|
|
maMathText.SetControlBackground( aTextBGColor );
|
2008-04-17 06:55:36 +00:00
|
|
|
maTemplateText.SetControlForeground( maLabelTextColor );
|
|
|
|
maTemplateText.SetControlBackground( aTextBGColor );
|
|
|
|
maOpenText.SetControlForeground( maLabelTextColor );
|
|
|
|
maOpenText.SetControlBackground( aTextBGColor );
|
|
|
|
}
|
|
|
|
|
2008-04-03 16:11:36 +00:00
|
|
|
void BackingWindow::initControls()
|
|
|
|
{
|
|
|
|
if( mbInitControls )
|
|
|
|
return;
|
|
|
|
|
|
|
|
mbInitControls = true;
|
|
|
|
|
2008-03-05 16:23:15 +00:00
|
|
|
// calculate dialog size
|
|
|
|
// begin with background bitmap
|
|
|
|
maControlRect = Rectangle( Point(), maBackgroundLeft.GetSizePixel() );
|
|
|
|
maControlRect.Left() += nShadowLeft;
|
|
|
|
maControlRect.Right() -= nShadowRight;
|
|
|
|
maControlRect.Top() += nShadowTop;
|
|
|
|
maControlRect.Bottom() -= nShadowBottom;
|
|
|
|
|
|
|
|
long nYPos = 0;
|
|
|
|
// set bigger welcome string
|
|
|
|
maWelcome.SetText( maWelcomeString );
|
|
|
|
maTextFont = GetSettings().GetStyleSettings().GetLabelFont();
|
|
|
|
maTextFont.SetSize( Size( 0, 18 ) );
|
|
|
|
maTextFont.SetWeight( WEIGHT_BOLD );
|
|
|
|
maWelcome.SetFont( maTextFont );
|
|
|
|
// get metric to get correct width factor and adjust
|
|
|
|
long nW = (maWelcome.GetFontMetric().GetWidth()*95)/100;
|
|
|
|
maTextFont.SetSize( Size( nW, 18 ) );
|
|
|
|
|
|
|
|
maWelcome.SetFont( maTextFont );
|
|
|
|
maWelcome.SetControlFont( maTextFont );
|
|
|
|
maWelcomeSize = Size( maWelcome.GetTextWidth( maWelcomeString ), maWelcome.GetTextHeight() );
|
|
|
|
maWelcomeSize.Width() = (maWelcomeSize.Width() * 20)/19;
|
|
|
|
|
|
|
|
nYPos += (maWelcomeSize.Height()*3)/2;
|
|
|
|
|
|
|
|
if( maControlRect.GetWidth() < nBtnPos + maWelcomeSize.Width() + 20 )
|
|
|
|
maControlRect.Right() = maControlRect.Left() + maWelcomeSize.Width() + nBtnPos + 20;
|
|
|
|
|
|
|
|
maWelcome.Show();
|
|
|
|
|
|
|
|
nYPos += maWelcomeSize.Height();
|
|
|
|
|
|
|
|
// set product string
|
|
|
|
maTextFont.SetSize( Size( 0, 30 ) );
|
|
|
|
maProduct.SetFont( maTextFont );
|
|
|
|
|
|
|
|
// get metric to get correct width factor and adjust
|
|
|
|
nW = (maProduct.GetFontMetric().GetWidth()*95)/100;
|
|
|
|
maTextFont.SetSize( Size( nW, 28 ) );
|
|
|
|
|
2008-04-03 16:11:36 +00:00
|
|
|
maProduct.SetFont( maTextFont );
|
2008-03-05 16:23:15 +00:00
|
|
|
maProduct.SetControlFont( maTextFont );
|
|
|
|
maProduct.SetText( maProductString );
|
|
|
|
maProductSize = Size( maProduct.GetTextWidth( maProductString ), maProduct.GetTextHeight() );
|
|
|
|
maProductSize.Width() = (maProductSize.Width() * 20)/19;
|
|
|
|
|
|
|
|
if( maControlRect.GetWidth() < maProductSize.Width() + nBtnPos + 10 )
|
|
|
|
maControlRect.Right() = maControlRect.Left() + maProductSize.Width() + nBtnPos + 10;
|
|
|
|
|
|
|
|
maProduct.Show();
|
|
|
|
|
2008-03-12 09:09:47 +00:00
|
|
|
nYPos += (maProductSize.Height()*3)/2;
|
2008-03-05 16:23:15 +00:00
|
|
|
|
|
|
|
// set a slighly larger font than normal labels on the texts
|
|
|
|
maTextFont.SetSize( Size( 0, 11 ) );
|
|
|
|
maTextFont.SetWeight( WEIGHT_NORMAL );
|
|
|
|
|
2008-03-12 09:09:47 +00:00
|
|
|
maCreateText.SetText( maCreateString );
|
|
|
|
maCreateText.SetFont( maTextFont );
|
|
|
|
maCreateText.SetControlFont( maTextFont );
|
|
|
|
maCreateSize = Size( maCreateText.GetTextWidth( maCreateString ), maCreateText.GetTextHeight() );
|
|
|
|
maCreateText.Show();
|
|
|
|
|
|
|
|
nYPos += (maCreateSize.Height()*3)/2;
|
|
|
|
|
2008-03-05 16:23:15 +00:00
|
|
|
// collect the URLs of the entries in the File/New menu
|
|
|
|
SvtModuleOptions aModuleOptions;
|
|
|
|
std::set< rtl::OUString > aFileNewAppsAvailable;
|
|
|
|
SvtDynamicMenuOptions aOpt;
|
|
|
|
Sequence < Sequence < PropertyValue > > aNewMenu = aOpt.GetMenu( E_NEWMENU );
|
|
|
|
const rtl::OUString sURLKey( RTL_CONSTASCII_USTRINGPARAM( "URL" ) );
|
|
|
|
|
|
|
|
const Sequence< PropertyValue >* pNewMenu = aNewMenu.getConstArray();
|
|
|
|
const Sequence< PropertyValue >* pNewMenuEnd = aNewMenu.getConstArray() + aNewMenu.getLength();
|
|
|
|
for ( ; pNewMenu != pNewMenuEnd; ++pNewMenu )
|
|
|
|
{
|
|
|
|
comphelper::SequenceAsHashMap aEntryItems( *pNewMenu );
|
|
|
|
rtl::OUString sURL( aEntryItems.getUnpackedValueOrDefault( sURLKey, rtl::OUString() ) );
|
|
|
|
if ( sURL.getLength() )
|
|
|
|
aFileNewAppsAvailable.insert( sURL );
|
|
|
|
}
|
|
|
|
|
2008-04-03 16:11:36 +00:00
|
|
|
// create mnemonics on the fly, preregister the mnemonics of the menu
|
|
|
|
MnemonicGenerator aMnemns;
|
|
|
|
maTemplateString = MnemonicGenerator::EraseAllMnemonicChars( maTemplateString );
|
|
|
|
maOpenString = MnemonicGenerator::EraseAllMnemonicChars( maOpenString );
|
|
|
|
|
|
|
|
SystemWindow* pSysWin = GetSystemWindow();
|
|
|
|
if( pSysWin )
|
|
|
|
{
|
|
|
|
MenuBar* pMBar = pSysWin->GetMenuBar();
|
|
|
|
if( pMBar )
|
|
|
|
{
|
|
|
|
for( USHORT i = 0; i < pMBar->GetItemCount(); i++ )
|
|
|
|
{
|
|
|
|
USHORT nItemId = pMBar->GetItemId( i );
|
|
|
|
String aItemText( pMBar->GetItemText( nItemId ) );
|
|
|
|
if( aItemText.Len() )
|
|
|
|
aMnemns.RegisterMnemonic( aItemText );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// layout the buttons
|
2008-03-05 16:23:15 +00:00
|
|
|
layoutButtonAndText( WRITER_URL, 0, aFileNewAppsAvailable,
|
|
|
|
aModuleOptions, SvtModuleOptions::E_SWRITER,
|
2008-04-03 16:11:36 +00:00
|
|
|
maWriterButton, maWriterText, aMnemns );
|
2008-03-05 16:23:15 +00:00
|
|
|
layoutButtonAndText( CALC_URL, 1, aFileNewAppsAvailable,
|
|
|
|
aModuleOptions, SvtModuleOptions::E_SCALC,
|
2008-04-03 16:11:36 +00:00
|
|
|
maCalcButton, maCalcText, aMnemns );
|
2008-03-05 16:23:15 +00:00
|
|
|
nYPos += maButtonImageSize.Height() + 10;
|
|
|
|
layoutButtonAndText( IMPRESS_WIZARD_URL, 0, aFileNewAppsAvailable,
|
|
|
|
aModuleOptions, SvtModuleOptions::E_SIMPRESS,
|
2008-04-03 16:11:36 +00:00
|
|
|
maImpressButton, maImpressText, aMnemns );
|
2008-03-05 16:23:15 +00:00
|
|
|
layoutButtonAndText( DRAW_URL, 1, aFileNewAppsAvailable,
|
|
|
|
aModuleOptions, SvtModuleOptions::E_SDRAW,
|
2008-04-03 16:11:36 +00:00
|
|
|
maDrawButton, maDrawText, aMnemns );
|
2008-03-05 16:23:15 +00:00
|
|
|
nYPos += maButtonImageSize.Height() + 10;
|
|
|
|
layoutButtonAndText( BASE_URL, 0, aFileNewAppsAvailable,
|
|
|
|
aModuleOptions, SvtModuleOptions::E_SDATABASE,
|
2008-04-03 16:11:36 +00:00
|
|
|
maDBButton, maDBText, aMnemns );
|
2008-07-11 06:17:22 +00:00
|
|
|
layoutButtonAndText( MATH_URL, 1, aFileNewAppsAvailable,
|
|
|
|
aModuleOptions, SvtModuleOptions::E_SMATH,
|
|
|
|
maMathButton, maMathText, aMnemns );
|
|
|
|
|
|
|
|
nYPos += 3*maButtonImageSize.Height() / 2;
|
|
|
|
layoutButtonAndText( NULL, -1, aFileNewAppsAvailable,
|
2008-03-05 16:23:15 +00:00
|
|
|
aModuleOptions, SvtModuleOptions::E_SWRITER,
|
2008-04-03 16:11:36 +00:00
|
|
|
maTemplateButton, maTemplateText, aMnemns, maTemplateString );
|
2008-03-12 09:09:47 +00:00
|
|
|
|
2008-07-11 06:17:22 +00:00
|
|
|
nYPos += 10;
|
2008-03-05 16:23:15 +00:00
|
|
|
layoutButtonAndText( NULL, -1, aFileNewAppsAvailable,
|
|
|
|
aModuleOptions, SvtModuleOptions::E_SWRITER,
|
2008-04-03 16:11:36 +00:00
|
|
|
maOpenButton, maOpenText, aMnemns, maOpenString );
|
2008-03-05 16:23:15 +00:00
|
|
|
nYPos += 10;
|
|
|
|
|
2008-11-10 15:06:12 +00:00
|
|
|
DBG_ASSERT( nYPos < maControlRect.GetHeight(), "misformatting !" );
|
2008-03-05 16:23:15 +00:00
|
|
|
if( mnColumnWidth[0] + mnColumnWidth[1] + nBtnPos + 20 > maControlRect.GetWidth() )
|
|
|
|
maControlRect.Right() = maControlRect.Left() + mnColumnWidth[0] + mnColumnWidth[1] + nBtnPos + 20;
|
|
|
|
|
|
|
|
maToolbox.SetSelectHdl( LINK( this, BackingWindow, ToolboxHdl ) );
|
|
|
|
maToolbox.Show();
|
|
|
|
|
|
|
|
// scale middle map to formatted width
|
|
|
|
Size aMiddleSegmentSize( maControlRect.GetSize().Width() + nShadowLeft + nShadowRight,
|
|
|
|
maBackgroundMiddle.GetSizePixel().Height() );
|
|
|
|
|
|
|
|
long nLW = maBackgroundLeft.GetSizePixel().Width();
|
|
|
|
long nRW = maBackgroundRight.GetSizePixel().Width();
|
|
|
|
if( aMiddleSegmentSize.Width() > nLW + nRW )
|
|
|
|
{
|
|
|
|
aMiddleSegmentSize.Width() -= nLW;
|
|
|
|
aMiddleSegmentSize.Width() -= nRW;
|
|
|
|
maBackgroundMiddle.Scale( aMiddleSegmentSize );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
maBackgroundMiddle = BitmapEx();
|
|
|
|
|
2008-04-03 16:11:36 +00:00
|
|
|
Resize();
|
2008-03-05 16:23:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void BackingWindow::loadImage( const ResId& i_rId, ImageButton& i_rButton )
|
|
|
|
{
|
|
|
|
BitmapEx aBmp( i_rId );
|
|
|
|
Size aImgSize( aBmp.GetSizePixel() );
|
|
|
|
if( aImgSize.Width() > maButtonImageSize.Width() )
|
|
|
|
maButtonImageSize.Width() = aImgSize.Width();
|
|
|
|
if( aImgSize.Height() > maButtonImageSize.Height() )
|
|
|
|
maButtonImageSize.Height() = aImgSize.Height();
|
|
|
|
i_rButton.SetModeImage( aBmp );
|
|
|
|
}
|
|
|
|
|
|
|
|
void BackingWindow::layoutButtonAndText(
|
|
|
|
const char* i_pURL, int nColumn,
|
|
|
|
const std::set<rtl::OUString>& i_rURLS,
|
|
|
|
SvtModuleOptions& i_rOpt, SvtModuleOptions::EModule i_eMod,
|
|
|
|
ImageButton& i_rBtn, FixedText& i_rText,
|
2008-04-03 16:11:36 +00:00
|
|
|
MnemonicGenerator& i_rMnemns,
|
2008-03-05 16:23:15 +00:00
|
|
|
const String& i_rStr
|
|
|
|
)
|
|
|
|
{
|
|
|
|
rtl::OUString aURL( rtl::OUString::createFromAscii( i_pURL ? i_pURL : "" ) );
|
|
|
|
// setup button
|
|
|
|
i_rBtn.SetPaintTransparent( TRUE );
|
|
|
|
i_rBtn.SetClickHdl( LINK( this, BackingWindow, ClickHdl ) );
|
|
|
|
if( i_pURL && (! i_rOpt.IsModuleInstalled( i_eMod ) || i_rURLS.find( aURL ) == i_rURLS.end()) )
|
|
|
|
{
|
|
|
|
i_rBtn.Enable( FALSE );
|
|
|
|
}
|
|
|
|
|
|
|
|
// setup text
|
|
|
|
i_rText.SetFont( maTextFont );
|
|
|
|
i_rText.SetControlFont( maTextFont );
|
2008-04-03 16:11:36 +00:00
|
|
|
String aText( i_rStr.Len() ? i_rStr : SvFileInformationManager::GetDescription( INetURLObject( aURL ) ) );
|
|
|
|
i_rMnemns.CreateMnemonic( aText );
|
|
|
|
i_rText.SetText( aText );
|
|
|
|
|
2008-03-05 16:23:15 +00:00
|
|
|
long nTextWidth = i_rText.GetTextWidth( i_rText.GetText() );
|
|
|
|
i_rText.SetPaintTransparent( TRUE );
|
|
|
|
|
|
|
|
nTextWidth += maButtonImageSize.Width() + 30;
|
|
|
|
if( nColumn >= 0 && nColumn < static_cast<int>(sizeof(mnColumnWidth)/sizeof(mnColumnWidth[0])) )
|
|
|
|
{
|
|
|
|
if( nTextWidth > mnColumnWidth[nColumn] )
|
|
|
|
mnColumnWidth[nColumn] = nTextWidth;
|
|
|
|
}
|
|
|
|
|
|
|
|
// show the controls
|
|
|
|
i_rBtn.Show();
|
|
|
|
i_rText.Show();
|
|
|
|
}
|
|
|
|
|
|
|
|
void BackingWindow::Paint( const Rectangle& )
|
|
|
|
{
|
2008-04-17 06:55:36 +00:00
|
|
|
bool bDark = GetSettings().GetStyleSettings().GetWindowColor().IsDark();
|
|
|
|
|
|
|
|
Color aBackColor( bDark ? COL_BLACK : COL_WHITE );
|
2008-03-05 16:23:15 +00:00
|
|
|
|
|
|
|
// fill control rect
|
|
|
|
SetLineColor();
|
2008-04-17 06:55:36 +00:00
|
|
|
SetFillColor( aBackColor );
|
2008-03-05 16:23:15 +00:00
|
|
|
DrawRect( maControlRect );
|
|
|
|
|
|
|
|
// draw bitmap
|
|
|
|
if( GetSettings().GetLayoutRTL() )
|
|
|
|
{
|
|
|
|
Point aTL( maControlRect.TopLeft() );
|
|
|
|
aTL.X() -= nShadowRight;
|
|
|
|
aTL.Y() -= nShadowTop;
|
|
|
|
DrawBitmapEx( aTL, maBackgroundLeft );
|
|
|
|
aTL.X() += maBackgroundLeft.GetSizePixel().Width();
|
|
|
|
if( !!maBackgroundMiddle )
|
|
|
|
{
|
|
|
|
DrawBitmapEx( aTL, maBackgroundMiddle );
|
|
|
|
aTL.X() += maBackgroundMiddle.GetSizePixel().Width();
|
|
|
|
}
|
|
|
|
DrawBitmapEx( aTL, maBackgroundRight );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
Point aTL( maControlRect.TopLeft() );
|
|
|
|
aTL.X() -= nShadowLeft;
|
|
|
|
aTL.Y() -= nShadowTop;
|
|
|
|
DrawBitmapEx( aTL, maBackgroundLeft );
|
|
|
|
aTL.X() += maBackgroundLeft.GetSizePixel().Width();
|
|
|
|
if( !!maBackgroundMiddle )
|
|
|
|
{
|
|
|
|
DrawBitmapEx( aTL, maBackgroundMiddle );
|
|
|
|
aTL.X() += maBackgroundMiddle.GetSizePixel().Width();
|
|
|
|
}
|
|
|
|
DrawBitmapEx( aTL, maBackgroundRight );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-04-03 16:11:36 +00:00
|
|
|
long BackingWindow::Notify( NotifyEvent& rNEvt )
|
|
|
|
{
|
|
|
|
if( rNEvt.GetType() == EVENT_KEYINPUT )
|
|
|
|
{
|
|
|
|
if( ! mpAccExec )
|
|
|
|
{
|
|
|
|
mpAccExec = svt::AcceleratorExecute::createAcceleratorHelper();
|
|
|
|
mpAccExec->init( comphelper::getProcessServiceFactory(), mxFrame);
|
|
|
|
}
|
|
|
|
|
|
|
|
const KeyEvent* pEvt = rNEvt.GetKeyEvent();
|
|
|
|
if( pEvt && mpAccExec->execute(pEvt->GetKeyCode()) )
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
return Window::Notify( rNEvt );
|
|
|
|
}
|
|
|
|
|
|
|
|
void BackingWindow::setOwningFrame( const com::sun::star::uno::Reference< com::sun::star::frame::XFrame >& xFrame )
|
|
|
|
{
|
|
|
|
mxFrame = xFrame;
|
|
|
|
if( ! mbInitControls )
|
|
|
|
initControls();
|
|
|
|
}
|
|
|
|
|
2008-03-05 16:23:15 +00:00
|
|
|
void BackingWindow::Resize()
|
|
|
|
{
|
|
|
|
Size aWindowSize( GetSizePixel() );
|
|
|
|
Size aControlSize = maControlRect.GetSize();
|
|
|
|
maControlRect = Rectangle( Point( (aWindowSize.Width() - aControlSize.Width()) / 2,
|
|
|
|
(aWindowSize.Height() - aControlSize.Height()) / 2 ),
|
|
|
|
aControlSize );
|
2009-02-11 10:53:35 +00:00
|
|
|
|
|
|
|
maToolbox.calcMinSize();
|
|
|
|
Size aTBSize( maToolbox.getMinSize() );
|
|
|
|
Point aTBPos( maControlRect.Right() - aTBSize.Width() - 10,
|
|
|
|
maControlRect.Bottom() - aTBSize.Height() - 10 );
|
|
|
|
maToolbox.SetPosSizePixel( aTBPos, aTBSize );
|
|
|
|
|
|
|
|
// #i93631# squeeze controls so they fit into the box
|
|
|
|
// this can be necessary due to application font height which has small deviations
|
|
|
|
// from the size set
|
|
|
|
const long nWDelta = maWelcomeSize.Height();
|
|
|
|
const long nW2Delta = (maWelcomeSize.Height()*3)/2;
|
|
|
|
const long nPDelta = (maProductSize.Height()*3)/2;
|
|
|
|
const long nCDelta = (maCreateSize.Height()*3)/2;
|
|
|
|
const long nBDelta = maButtonImageSize.Height() + 10;
|
|
|
|
const long nB2Delta = 3*maButtonImageSize.Height()/2;
|
|
|
|
const long nLastDelta = maButtonImageSize.Height();
|
|
|
|
long nDiff = 0;
|
|
|
|
while( ( maControlRect.Top() +
|
|
|
|
(nWDelta - nDiff) +
|
|
|
|
(nW2Delta- nDiff) +
|
|
|
|
(nPDelta - nDiff) +
|
|
|
|
(nCDelta - nDiff) +
|
|
|
|
3 * (nBDelta - nDiff) +
|
|
|
|
(nB2Delta- nDiff) +
|
|
|
|
nLastDelta
|
|
|
|
) > aTBPos.Y() )
|
|
|
|
{
|
|
|
|
nDiff++;
|
|
|
|
}
|
|
|
|
|
2008-03-05 16:23:15 +00:00
|
|
|
long nYPos = maControlRect.Top();
|
2009-02-11 10:53:35 +00:00
|
|
|
nYPos += nW2Delta - nDiff;
|
2008-03-05 16:23:15 +00:00
|
|
|
maWelcome.SetPosSizePixel( Point( maControlRect.Left() + nBtnPos, nYPos ),
|
|
|
|
Size( maControlRect.GetWidth() - nBtnPos - 5, (maWelcomeSize.Height()*20)/19 ) );
|
2009-02-11 10:53:35 +00:00
|
|
|
nYPos += nWDelta - nDiff;
|
2008-03-05 16:23:15 +00:00
|
|
|
maProduct.SetPosSizePixel( Point( maControlRect.Left() + nBtnPos, nYPos ), Size( maControlRect.GetWidth() - nBtnPos - 5, (maProductSize.Height()*20)/19 ) );
|
2009-02-11 10:53:35 +00:00
|
|
|
nYPos += nPDelta - nDiff;
|
2008-03-12 09:09:47 +00:00
|
|
|
|
|
|
|
maCreateText.SetPosSizePixel( Point( maControlRect.Left() + nBtnPos, nYPos ),
|
|
|
|
Size( maControlRect.GetWidth() - nBtnPos - 5, maCreateSize.Height() ) );
|
|
|
|
|
2009-02-11 10:53:35 +00:00
|
|
|
nYPos += nCDelta - nDiff;
|
2008-03-12 09:09:47 +00:00
|
|
|
|
2008-03-05 16:23:15 +00:00
|
|
|
maWriterButton.SetPosSizePixel( Point( maControlRect.Left() + nBtnPos, nYPos ), maButtonImageSize );
|
|
|
|
maWriterText.SetPosSizePixel( Point( maControlRect.Left() + nBtnPos + maButtonImageSize.Width() + 10, nYPos ),
|
|
|
|
Size( mnColumnWidth[0] - maButtonImageSize.Width() - 10, maButtonImageSize.Height() ) );
|
|
|
|
maCalcButton.SetPosSizePixel( Point( maControlRect.Left() + nBtnPos + mnColumnWidth[0], nYPos ), maButtonImageSize );
|
|
|
|
maCalcText.SetPosSizePixel( Point( maControlRect.Left() + nBtnPos + maButtonImageSize.Width() + 10 + mnColumnWidth[0], nYPos ),
|
|
|
|
Size( mnColumnWidth[1] - maButtonImageSize.Width() - 10, maButtonImageSize.Height() ) );
|
2009-02-11 10:53:35 +00:00
|
|
|
nYPos += nBDelta - nDiff;
|
2008-03-05 16:23:15 +00:00
|
|
|
maImpressButton.SetPosSizePixel( Point( maControlRect.Left() + nBtnPos, nYPos ), maButtonImageSize );
|
|
|
|
maImpressText.SetPosSizePixel( Point( maControlRect.Left() + nBtnPos + maButtonImageSize.Width() + 10, nYPos ),
|
|
|
|
Size( mnColumnWidth[0] - maButtonImageSize.Width() - 10, maButtonImageSize.Height() ) );
|
|
|
|
maDrawButton.SetPosSizePixel( Point( maControlRect.Left() + nBtnPos + mnColumnWidth[0], nYPos ), maButtonImageSize );
|
|
|
|
maDrawText.SetPosSizePixel( Point( maControlRect.Left() + nBtnPos + maButtonImageSize.Width() + 10 + mnColumnWidth[0], nYPos ),
|
|
|
|
Size( mnColumnWidth[1] - maButtonImageSize.Width() - 10, maButtonImageSize.Height() ) );
|
2009-02-11 10:53:35 +00:00
|
|
|
nYPos += nBDelta - nDiff;
|
2008-03-05 16:23:15 +00:00
|
|
|
maDBButton.SetPosSizePixel( Point( maControlRect.Left() + nBtnPos, nYPos ), maButtonImageSize );
|
|
|
|
maDBText.SetPosSizePixel( Point( maControlRect.Left() + nBtnPos + maButtonImageSize.Width() + 10, nYPos ),
|
|
|
|
Size( mnColumnWidth[0] - maButtonImageSize.Width() - 10, maButtonImageSize.Height() ) );
|
2008-07-11 06:17:22 +00:00
|
|
|
maMathButton.SetPosSizePixel( Point( maControlRect.Left() + nBtnPos + mnColumnWidth[0], nYPos ), maButtonImageSize );
|
|
|
|
maMathText.SetPosSizePixel( Point( maControlRect.Left() + nBtnPos + maButtonImageSize.Width() + 10 + mnColumnWidth[0], nYPos ),
|
2008-03-12 09:09:47 +00:00
|
|
|
Size( mnColumnWidth[1] - maButtonImageSize.Width() - 10, maButtonImageSize.Height() ) );
|
2008-07-11 06:17:22 +00:00
|
|
|
|
2009-02-11 10:53:35 +00:00
|
|
|
nYPos += nB2Delta - nDiff;
|
2008-07-11 06:17:22 +00:00
|
|
|
maTemplateButton.SetPosSizePixel( Point( maControlRect.Left() + nBtnPos, nYPos ), maButtonImageSize );
|
|
|
|
maTemplateText.SetPosSizePixel( Point( maControlRect.Left() + nBtnPos + maButtonImageSize.Width() + 10, nYPos ),
|
|
|
|
Size( mnColumnWidth[0]+mnColumnWidth[1] - maButtonImageSize.Width() - 10, maButtonImageSize.Height() ) );
|
2009-02-11 10:53:35 +00:00
|
|
|
nYPos += nBDelta - nDiff;
|
2008-03-05 16:23:15 +00:00
|
|
|
maOpenButton.SetPosSizePixel( Point( maControlRect.Left() + nBtnPos, nYPos ), maButtonImageSize );
|
|
|
|
maOpenText.SetPosSizePixel( Point( maControlRect.Left() + nBtnPos + maButtonImageSize.Width() + 10, nYPos ),
|
|
|
|
Size( mnColumnWidth[0]+mnColumnWidth[1] - maButtonImageSize.Width() - 10, maButtonImageSize.Height() ) );
|
2009-02-11 10:53:35 +00:00
|
|
|
nYPos += nBDelta - nDiff;
|
2008-03-05 16:23:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
IMPL_LINK( BackingWindow, ToolboxHdl, void*, EMPTYARG )
|
|
|
|
{
|
|
|
|
const char* pNodePath = NULL;
|
|
|
|
const char* pNode = NULL;
|
|
|
|
|
|
|
|
switch( maToolbox.GetCurItemId() )
|
|
|
|
{
|
|
|
|
case nItemId_Extensions:
|
|
|
|
pNodePath = "/org.openoffice.Office.Common/Help/StartCenter";
|
|
|
|
pNode = "AddFeatureURL";
|
|
|
|
break;
|
|
|
|
case nItemId_Reg:
|
2008-08-01 08:02:44 +00:00
|
|
|
try
|
|
|
|
{
|
|
|
|
// create the Desktop component which can load components
|
|
|
|
Reference < lang::XMultiServiceFactory > xFactory = ::comphelper::getProcessServiceFactory();
|
|
|
|
if( xFactory.is() )
|
|
|
|
{
|
|
|
|
Reference< task::XJobExecutor > xProductRegistration(
|
|
|
|
xFactory->createInstance( rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "com.sun.star.setup.ProductRegistration" ) ) ),
|
|
|
|
UNO_QUERY_THROW );
|
|
|
|
|
|
|
|
// tell it that the user wants to register
|
|
|
|
xProductRegistration->trigger( rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "RegistrationRequired" ) ) );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
catch( const Exception& )
|
|
|
|
{
|
|
|
|
}
|
2008-03-05 16:23:15 +00:00
|
|
|
break;
|
|
|
|
case nItemId_Info:
|
|
|
|
pNodePath = "/org.openoffice.Office.Common/Help/StartCenter";
|
|
|
|
pNode = "InfoURL";
|
2008-06-03 13:45:57 +00:00
|
|
|
break;
|
|
|
|
case nItemId_TplRep:
|
|
|
|
pNodePath = "/org.openoffice.Office.Common/Help/StartCenter";
|
|
|
|
pNode = "TemplateRepositoryURL";
|
|
|
|
break;
|
2008-03-05 16:23:15 +00:00
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if( pNodePath && pNode )
|
|
|
|
{
|
2008-03-12 09:09:47 +00:00
|
|
|
try
|
2008-03-05 16:23:15 +00:00
|
|
|
{
|
2008-03-12 09:09:47 +00:00
|
|
|
Reference<lang::XMultiServiceFactory> xConfig( comphelper::getProcessServiceFactory()->createInstance(
|
|
|
|
rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("com.sun.star.configuration.ConfigurationProvider"))),
|
|
|
|
UNO_QUERY);
|
|
|
|
if( xConfig.is() )
|
2008-03-05 16:23:15 +00:00
|
|
|
{
|
2008-03-12 09:09:47 +00:00
|
|
|
Sequence<Any> args(1);
|
|
|
|
PropertyValue val(
|
|
|
|
rtl::OUString( RTL_CONSTASCII_USTRINGPARAM("nodepath") ),
|
|
|
|
0,
|
|
|
|
Any(rtl::OUString::createFromAscii(pNodePath)),
|
|
|
|
PropertyState_DIRECT_VALUE);
|
|
|
|
args.getArray()[0] <<= val;
|
|
|
|
Reference<container::XNameAccess> xNameAccess(
|
|
|
|
xConfig->createInstanceWithArguments(rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("com.sun.star.configuration.ConfigurationAccess")),
|
|
|
|
args), UNO_QUERY);
|
|
|
|
if( xNameAccess.is() )
|
|
|
|
{
|
|
|
|
rtl::OUString sURL;
|
|
|
|
//throws css::container::NoSuchElementException, css::lang::WrappedTargetException
|
2008-03-05 16:23:15 +00:00
|
|
|
Any value( xNameAccess->getByName(rtl::OUString::createFromAscii(pNode)) );
|
|
|
|
sURL = value.get<rtl::OUString> ();
|
|
|
|
|
2008-03-12 09:09:47 +00:00
|
|
|
Reference< com::sun::star::system::XSystemShellExecute > xSystemShellExecute(
|
|
|
|
comphelper::getProcessServiceFactory()->createInstance(
|
|
|
|
rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "com.sun.star.system.SystemShellExecute" ) ) ),
|
|
|
|
UNO_QUERY_THROW);
|
|
|
|
//throws css::lang::IllegalArgumentException, css::system::SystemShellExecuteException
|
|
|
|
xSystemShellExecute->execute( sURL, rtl::OUString(), com::sun::star::system::SystemShellExecuteFlags::DEFAULTS);
|
2008-03-05 16:23:15 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2008-03-12 09:09:47 +00:00
|
|
|
catch (Exception& )
|
|
|
|
{
|
|
|
|
}
|
2008-03-05 16:23:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
IMPL_LINK( BackingWindow, ClickHdl, Button*, pButton )
|
|
|
|
{
|
|
|
|
// dispatch the appropriate URL and end the dialog
|
|
|
|
if( pButton == &maWriterButton )
|
|
|
|
dispatchURL( rtl::OUString( RTL_CONSTASCII_USTRINGPARAM(WRITER_URL) ) );
|
|
|
|
else if( pButton == &maCalcButton )
|
|
|
|
dispatchURL( rtl::OUString( RTL_CONSTASCII_USTRINGPARAM(CALC_URL) ) );
|
|
|
|
else if( pButton == &maImpressButton )
|
|
|
|
dispatchURL( rtl::OUString( RTL_CONSTASCII_USTRINGPARAM(IMPRESS_WIZARD_URL) ) );
|
|
|
|
else if( pButton == &maDrawButton )
|
|
|
|
dispatchURL( rtl::OUString( RTL_CONSTASCII_USTRINGPARAM(DRAW_URL) ) );
|
|
|
|
else if( pButton == &maDBButton )
|
|
|
|
dispatchURL( rtl::OUString( RTL_CONSTASCII_USTRINGPARAM(BASE_URL) ) );
|
2008-07-11 06:17:22 +00:00
|
|
|
else if( pButton == &maMathButton )
|
|
|
|
dispatchURL( rtl::OUString( RTL_CONSTASCII_USTRINGPARAM(MATH_URL) ) );
|
2008-03-05 16:23:15 +00:00
|
|
|
else if( pButton == &maOpenButton )
|
2008-04-03 16:11:36 +00:00
|
|
|
{
|
|
|
|
Reference< XDispatchProvider > xFrame( mxFrame, UNO_QUERY );
|
|
|
|
|
|
|
|
Sequence< com::sun::star::beans::PropertyValue > aArgs(1);
|
|
|
|
PropertyValue* pArg = aArgs.getArray();
|
|
|
|
pArg[0].Name = rtl::OUString::createFromAscii("Referer");
|
|
|
|
pArg[0].Value <<= rtl::OUString::createFromAscii("private:user");
|
|
|
|
|
|
|
|
dispatchURL( rtl::OUString( RTL_CONSTASCII_USTRINGPARAM(OPEN_URL) ), rtl::OUString(), xFrame, aArgs );
|
|
|
|
}
|
2008-03-05 16:23:15 +00:00
|
|
|
else if( pButton == &maTemplateButton )
|
|
|
|
{
|
2008-04-03 16:11:36 +00:00
|
|
|
Reference< XDispatchProvider > xFrame( mxFrame, UNO_QUERY );
|
2008-03-05 16:23:15 +00:00
|
|
|
|
|
|
|
Sequence< com::sun::star::beans::PropertyValue > aArgs(1);
|
|
|
|
PropertyValue* pArg = aArgs.getArray();
|
|
|
|
pArg[0].Name = rtl::OUString::createFromAscii("Referer");
|
|
|
|
pArg[0].Value <<= rtl::OUString::createFromAscii("private:user");
|
|
|
|
|
|
|
|
dispatchURL( rtl::OUString( RTL_CONSTASCII_USTRINGPARAM(TEMPLATE_URL) ), rtl::OUString(), xFrame, aArgs );
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2008-05-14 08:42:49 +00:00
|
|
|
Window* BackingWindow::GetParentLabelFor( const Window* pLabel ) const
|
|
|
|
{
|
|
|
|
const Window* pRet = NULL;
|
|
|
|
|
|
|
|
if( pLabel == &maWriterText )
|
|
|
|
pRet = &maWriterButton;
|
|
|
|
else if( pLabel == &maCalcText )
|
|
|
|
pRet = &maCalcButton;
|
|
|
|
else if( pLabel == &maImpressText )
|
|
|
|
pRet = &maImpressButton;
|
|
|
|
else if( pLabel == &maDrawText )
|
|
|
|
pRet = &maDrawButton;
|
|
|
|
else if( pLabel == &maDBText )
|
|
|
|
pRet = &maDBButton;
|
2008-07-11 06:17:22 +00:00
|
|
|
else if( pLabel == &maMathText )
|
|
|
|
pRet = &maMathButton;
|
2008-05-14 08:42:49 +00:00
|
|
|
else if( pLabel == &maTemplateText )
|
|
|
|
pRet = &maTemplateButton;
|
|
|
|
else if( pLabel == &maOpenText )
|
|
|
|
pRet = &maOpenButton;
|
|
|
|
|
|
|
|
return const_cast<Window*>(pRet);
|
|
|
|
}
|
|
|
|
|
|
|
|
Window* BackingWindow::GetParentLabeledBy( const Window* pLabeled ) const
|
|
|
|
{
|
|
|
|
const Window *pRet = NULL;
|
|
|
|
|
|
|
|
if( pLabeled == &maWriterButton )
|
|
|
|
pRet = &maWriterText;
|
|
|
|
else if( pLabeled == &maCalcButton )
|
|
|
|
pRet = &maCalcText;
|
|
|
|
else if( pLabeled == &maImpressButton )
|
|
|
|
pRet = &maImpressText;
|
|
|
|
else if( pLabeled == &maDrawButton )
|
|
|
|
pRet = &maDrawText;
|
|
|
|
else if( pLabeled == &maDBButton )
|
|
|
|
pRet = &maDBText;
|
2008-07-11 06:17:22 +00:00
|
|
|
else if( pLabeled == &maMathButton )
|
|
|
|
pRet = &maMathText;
|
2008-05-14 08:42:49 +00:00
|
|
|
else if( pLabeled == &maTemplateButton )
|
|
|
|
pRet = &maTemplateText;
|
|
|
|
else if( pLabeled == &maOpenButton )
|
|
|
|
pRet = &maOpenText;
|
|
|
|
|
|
|
|
return const_cast<Window*>(pRet);
|
|
|
|
}
|
|
|
|
|
2008-05-30 06:37:16 +00:00
|
|
|
struct ImplDelayedDispatch
|
|
|
|
{
|
|
|
|
Reference< XDispatch > xDispatch;
|
|
|
|
com::sun::star::util::URL aDispatchURL;
|
|
|
|
Sequence< PropertyValue > aArgs;
|
|
|
|
|
|
|
|
ImplDelayedDispatch( const Reference< XDispatch >& i_xDispatch,
|
|
|
|
const com::sun::star::util::URL& i_rURL,
|
|
|
|
const Sequence< PropertyValue >& i_rArgs )
|
|
|
|
: xDispatch( i_xDispatch ),
|
|
|
|
aDispatchURL( i_rURL ),
|
|
|
|
aArgs( i_rArgs )
|
|
|
|
{
|
|
|
|
}
|
|
|
|
~ImplDelayedDispatch() {}
|
|
|
|
};
|
|
|
|
|
|
|
|
static long implDispatchDelayed( void*, void* pArg )
|
|
|
|
{
|
|
|
|
struct ImplDelayedDispatch* pDispatch = reinterpret_cast<ImplDelayedDispatch*>(pArg);
|
|
|
|
try
|
|
|
|
{
|
|
|
|
pDispatch->xDispatch->dispatch( pDispatch->aDispatchURL, pDispatch->aArgs );
|
|
|
|
}
|
|
|
|
catch( Exception )
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
// clean up
|
|
|
|
delete pDispatch;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2008-03-05 16:23:15 +00:00
|
|
|
void BackingWindow::dispatchURL( const rtl::OUString& i_rURL,
|
|
|
|
const rtl::OUString& rTarget,
|
|
|
|
const Reference< XDispatchProvider >& i_xProv,
|
|
|
|
const Sequence< PropertyValue >& i_rArgs )
|
|
|
|
{
|
|
|
|
// if no special dispatch provider is given, get the desktop
|
|
|
|
Reference< XDispatchProvider > xProvider( i_xProv.is() ? i_xProv : mxDesktopDispatchProvider );
|
|
|
|
|
|
|
|
// check for dispatch provider
|
|
|
|
if( !xProvider.is())
|
|
|
|
return;
|
|
|
|
|
|
|
|
// get an URL transformer to clean up the URL
|
|
|
|
com::sun::star::util::URL aDispatchURL;
|
|
|
|
aDispatchURL.Complete = i_rURL;
|
|
|
|
|
|
|
|
Reference < com::sun::star::util::XURLTransformer > xURLTransformer(
|
|
|
|
comphelper::getProcessServiceFactory()->createInstance( rtl::OUString::createFromAscii("com.sun.star.util.URLTransformer") ),
|
|
|
|
com::sun::star::uno::UNO_QUERY );
|
|
|
|
if ( xURLTransformer.is() )
|
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
|
|
|
// clean up the URL
|
|
|
|
xURLTransformer->parseStrict( aDispatchURL );
|
|
|
|
// get a Dispatch for the URL and target
|
|
|
|
Reference< XDispatch > xDispatch(
|
|
|
|
xProvider->queryDispatch( aDispatchURL, rTarget, 0 )
|
|
|
|
);
|
|
|
|
// dispatch the URL
|
|
|
|
if ( xDispatch.is() )
|
2008-05-30 06:37:16 +00:00
|
|
|
{
|
|
|
|
ImplDelayedDispatch* pDisp = new ImplDelayedDispatch( xDispatch, aDispatchURL, i_rArgs );
|
|
|
|
ULONG nEventId = 0;
|
|
|
|
if( ! Application::PostUserEvent( nEventId, Link( NULL, implDispatchDelayed ), pDisp ) )
|
|
|
|
delete pDisp; // event could not be posted for unknown reason, at least don't leak
|
|
|
|
}
|
2008-03-05 16:23:15 +00:00
|
|
|
}
|
|
|
|
catch ( com::sun::star::uno::RuntimeException& )
|
|
|
|
{
|
|
|
|
throw;
|
|
|
|
}
|
|
|
|
catch ( com::sun::star::uno::Exception& )
|
|
|
|
{
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|