2010-10-27 12:53:26 +01:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
2012-06-21 14:30:25 +01:00
|
|
|
/*
|
|
|
|
* 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 .
|
|
|
|
*/
|
2009-12-06 19:11:52 +01:00
|
|
|
|
2013-10-23 22:38:46 +02:00
|
|
|
#ifndef INCLUDED_SD_SOURCE_UI_CONTROLLER_SLIDELAYOUTCONTROLLER_HXX
|
|
|
|
#define INCLUDED_SD_SOURCE_UI_CONTROLLER_SLIDELAYOUTCONTROLLER_HXX
|
2009-12-08 17:33:39 +01:00
|
|
|
|
2010-03-11 18:18:08 +01:00
|
|
|
#include <svtools/popupwindowcontroller.hxx>
|
2009-12-06 19:11:52 +01:00
|
|
|
|
2010-03-11 18:18:08 +01:00
|
|
|
namespace sd
|
|
|
|
{
|
2010-01-13 19:12:02 +01:00
|
|
|
|
2010-03-11 18:18:08 +01:00
|
|
|
class SlideLayoutController : public svt::PopupWindowController
|
2009-12-06 19:11:52 +01:00
|
|
|
{
|
|
|
|
public:
|
2015-10-28 12:01:32 +02:00
|
|
|
SlideLayoutController( const css::uno::Reference< css::uno::XComponentContext >& rxContext,
|
2013-03-20 09:29:30 +02:00
|
|
|
const OUString& sCommandURL,
|
|
|
|
bool bInsertPage );
|
2010-03-11 18:18:08 +01:00
|
|
|
|
2015-10-12 16:04:04 +02:00
|
|
|
virtual VclPtr<vcl::Window> createPopupWindow( vcl::Window* pParent ) override;
|
2009-12-06 19:11:52 +01:00
|
|
|
|
2014-09-15 22:52:40 +03:00
|
|
|
// XInitialization
|
2017-01-26 12:28:58 +01:00
|
|
|
virtual void SAL_CALL initialize( const css::uno::Sequence< css::uno::Any >& aArguments ) override;
|
2014-09-15 22:52:40 +03:00
|
|
|
|
2010-03-11 18:18:08 +01:00
|
|
|
// XServiceInfo
|
2017-01-26 12:28:58 +01:00
|
|
|
virtual OUString SAL_CALL getImplementationName() override;
|
|
|
|
virtual css::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames() override;
|
2009-12-08 17:33:39 +01:00
|
|
|
|
2010-04-30 10:43:18 +02:00
|
|
|
using svt::PopupWindowController::createPopupWindow;
|
2010-01-13 19:12:02 +01:00
|
|
|
private:
|
2010-01-21 18:32:05 +01:00
|
|
|
bool mbInsertPage;
|
2009-12-06 19:11:52 +01:00
|
|
|
};
|
|
|
|
|
2010-03-11 18:18:08 +01:00
|
|
|
}
|
2010-01-13 19:12:02 +01:00
|
|
|
|
2013-10-23 22:38:46 +02:00
|
|
|
#endif // INCLUDED_SD_SOURCE_UI_CONTROLLER_SLIDELAYOUTCONTROLLER_HXX
|
2010-10-27 12:53:26 +01:00
|
|
|
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|