Change-Id: I7f8828f677cfb588135ff75c03ffb75895773440 Reviewed-on: https://gerrit.libreoffice.org/38201 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
158 lines
3.9 KiB
C++
158 lines
3.9 KiB
C++
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
|
/*
|
|
* This file is part of the LibreOffice project.
|
|
*
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
*/
|
|
|
|
#include <comphelper/processfactory.hxx>
|
|
#include <comphelper/random.hxx>
|
|
#include <cppuhelper/bootstrap.hxx>
|
|
#include <com/sun/star/lang/XMultiServiceFactory.hpp>
|
|
#include <com/sun/star/lang/XInitialization.hpp>
|
|
#include <com/sun/star/registry/XSimpleRegistry.hpp>
|
|
#include <com/sun/star/ucb/UniversalContentBroker.hpp>
|
|
|
|
#include <vcl/vclmain.hxx>
|
|
#include <vcl/layout.hxx>
|
|
#include <vcl/gdimtf.hxx>
|
|
#include <vcl/wmf.hxx>
|
|
|
|
#include <tools/urlobj.hxx>
|
|
#include <tools/stream.hxx>
|
|
#include <tools/vcompat.hxx>
|
|
#include <vcl/svapp.hxx>
|
|
#include <vcl/wrkwin.hxx>
|
|
#include <vcl/virdev.hxx>
|
|
|
|
#include <cstdlib>
|
|
|
|
using namespace css;
|
|
|
|
class DemoMtfWin : public WorkWindow
|
|
{
|
|
GDIMetaFile maMtf;
|
|
|
|
public:
|
|
explicit DemoMtfWin(const OUString& rFileName)
|
|
: WorkWindow(nullptr, WB_APP | WB_STDWORK)
|
|
{
|
|
SvFileStream aFileStream(rFileName, StreamMode::READ);
|
|
|
|
if (aFileStream.IsOpen())
|
|
{
|
|
ReadWindowMetafile(aFileStream, maMtf);
|
|
}
|
|
else
|
|
{
|
|
Application::Abort("Can't read metafile");
|
|
}
|
|
}
|
|
|
|
virtual void Paint(vcl::RenderContext& rRenderContext, const tools::Rectangle& rRect) override;
|
|
};
|
|
|
|
void DemoMtfWin::Paint(vcl::RenderContext& rRenderContext, const tools::Rectangle& rRect)
|
|
{
|
|
maMtf.Play(this, maMtf.GetActionSize());
|
|
|
|
WorkWindow::Paint(rRenderContext, rRect);
|
|
}
|
|
|
|
class DemoMtfApp : public Application
|
|
{
|
|
VclPtr<DemoMtfWin> mpWin;
|
|
OUString maFileName;
|
|
|
|
static void showHelp()
|
|
{
|
|
fprintf(stderr, "Usage: mtfdemo --help | FILE\n");
|
|
fprintf(stderr, "A VCL test app that displays Windows metafiles\n");
|
|
std::exit(0);
|
|
}
|
|
|
|
public:
|
|
|
|
DemoMtfApp()
|
|
: mpWin(nullptr)
|
|
{
|
|
}
|
|
|
|
virtual int Main() override
|
|
{
|
|
try
|
|
{
|
|
mpWin = VclPtr<DemoMtfWin>::Create(maFileName);
|
|
mpWin->SetText("Display metafile");
|
|
|
|
mpWin->Show();
|
|
|
|
Application::Execute();
|
|
}
|
|
catch (const css::uno::Exception& e)
|
|
{
|
|
SAL_WARN("vcl.app", "Fatal exception: " << e.Message);
|
|
return 1;
|
|
}
|
|
catch (const std::exception& e)
|
|
{
|
|
SAL_WARN("vcl.app", "Fatal exception: " << e.what());
|
|
return 1;
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
protected:
|
|
uno::Reference<lang::XMultiServiceFactory> xMSF;
|
|
void Init() override
|
|
{
|
|
try
|
|
{
|
|
const sal_uInt16 nCmdParams = GetCommandLineParamCount();
|
|
|
|
if (nCmdParams == 0)
|
|
showHelp();
|
|
else
|
|
{
|
|
OUString aArg = GetCommandLineParam(0);
|
|
|
|
if (aArg == "--help" || aArg == "-h")
|
|
showHelp();
|
|
else
|
|
maFileName = aArg;
|
|
}
|
|
|
|
uno::Reference<uno::XComponentContext> xComponentContext
|
|
= ::cppu::defaultBootstrap_InitialComponentContext();
|
|
xMSF.set(xComponentContext->getServiceManager(), uno::UNO_QUERY);
|
|
if(!xMSF.is())
|
|
Application::Abort("Bootstrap failure - no service manager");
|
|
|
|
::comphelper::setProcessServiceFactory(xMSF);
|
|
}
|
|
catch (const uno::Exception &e)
|
|
{
|
|
Application::Abort("Bootstrap exception " + e.Message);
|
|
}
|
|
}
|
|
|
|
void DeInit() override
|
|
{
|
|
uno::Reference< lang::XComponent >(
|
|
comphelper::getProcessComponentContext(),
|
|
uno::UNO_QUERY_THROW)-> dispose();
|
|
::comphelper::setProcessServiceFactory(nullptr);
|
|
}
|
|
|
|
};
|
|
|
|
|
|
void vclmain::createApplication()
|
|
{
|
|
static DemoMtfApp aApp;
|
|
}
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|