summaryrefslogtreecommitdiff
path: root/padmin/source/pamain.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'padmin/source/pamain.cxx')
-rw-r--r--padmin/source/pamain.cxx157
1 files changed, 0 insertions, 157 deletions
diff --git a/padmin/source/pamain.cxx b/padmin/source/pamain.cxx
deleted file mode 100644
index a1f6c3145b5a..000000000000
--- a/padmin/source/pamain.cxx
+++ /dev/null
@@ -1,157 +0,0 @@
-/* -*- 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/.
- *
- * This file incorporates work covered by the following license notice:
- *
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements. See the NOTICE file distributed
- * with this work for additional information regarding copyright
- * ownership. The ASF licenses this file to you under the Apache
- * License, Version 2.0 (the "License"); you may not use this file
- * except in compliance with the License. You may obtain a copy of
- * the License at http://www.apache.org/licenses/LICENSE-2.0 .
- */
-
-#include <stdio.h>
-#include <unistd.h>
-
-#include "vcl/svapp.hxx"
-#include "vcl/vclmain.hxx"
-#include "vcl/wrkwin.hxx"
-#include "vcl/unowrap.hxx"
-#include <vcl/settings.hxx>
-
-#include "padialog.hxx"
-#include "helper.hxx"
-#include "desktopcontext.hxx"
-
-#include "cppuhelper/bootstrap.hxx"
-#include "comphelper/processfactory.hxx"
-#include "unotools/configmgr.hxx"
-
-#include "com/sun/star/lang/XMultiServiceFactory.hpp"
-#include "com/sun/star/lang/XComponent.hpp"
-#include "com/sun/star/ucb/UniversalContentBroker.hpp"
-
-using namespace padmin;
-using namespace cppu;
-using namespace com::sun::star::uno;
-using namespace com::sun::star::lang;
-using namespace comphelper;
-
-
-class MyApp : public Application
-{
-public:
- int Main();
- virtual sal_uInt16 Exception( sal_uInt16 nError );
-
- static OUString ReadStringHook( const OUString& );
-
-private:
- virtual void Init() SAL_OVERRIDE;
-
- Reference< XComponentContext > xCtx_;
-};
-
-void vclmain::createApplication()
-{
- static MyApp aMyApp;
-}
-
-OUString MyApp::ReadStringHook( const OUString& rStr )
-{
- return rStr.replaceAll(
- OUString("%PRODUCTNAME"), utl::ConfigManager::getProductName() );
-};
-
-
-
-
-sal_uInt16 MyApp::Exception( sal_uInt16 nError )
-{
- switch( nError & EXC_MAJORTYPE )
- {
- case EXC_RSCNOTLOADED:
- Abort( OUString( "Error: could not load language resources.\nPlease check your installation.\n" ) );
- break;
- }
- return 0;
-}
-
-int MyApp::Main()
-{
- PADialog* pPADialog;
-
- EnableAutoHelpId();
-
- // Detect desktop environment - need to do this as early as possible
- com::sun::star::uno::setCurrentContext(
- new DesktopContext( com::sun::star::uno::getCurrentContext() ) );
-
- // Create UCB (for backwards compatibility, in case some code still uses
- // plain createInstance w/o args directly to obtain an instance):
- com::sun::star::ucb::UniversalContentBroker::create(xCtx_);
-
- /*
- * Initialize the MSAA UNO AccessBridge if accessibility is turned on
- */
-
- if( Application::GetSettings().GetMiscSettings().GetEnableATToolSupport() )
- {
- if( !InitAccessBridge() )
- return EXIT_FAILURE;
- }
-
- ResMgr::SetReadStringHook( MyApp::ReadStringHook );
-
- pPADialog = PADialog::Create( NULL , sal_False );
- Application::SetDisplayName( pPADialog->GetText() );
- pPADialog->SetIcon(501);
- pPADialog->Execute();
- delete pPADialog;
-
- /*
- * clean up UNO
- */
- try
- {
- Reference<XComponent> xComp(xCtx_, UNO_QUERY_THROW);
- xComp->dispose();
- }
- catch(...)
- {
- }
-
- return EXIT_SUCCESS;
-}
-
-void MyApp::Init()
-{
- // create the global service-manager
-
- Reference< XMultiServiceFactory > xFactory;
- try
- {
- xCtx_ = defaultBootstrap_InitialComponentContext();
- xFactory = Reference< XMultiServiceFactory >( xCtx_->getServiceManager(), UNO_QUERY );
- if( xFactory.is() )
- setProcessServiceFactory( xFactory );
- }
- catch( const com::sun::star::uno::Exception& )
- {
- }
-
- if( ! xFactory.is() )
- {
- fprintf( stderr, "Could not bootstrap UNO, installation must be in disorder. Exiting.\n" );
- exit( 1 );
- }
-}
-
-/* vim:set shiftwidth=4 softtabstop=4 expandtab: */