2010-10-27 12:53:26 +01:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
2012-11-27 16:10:40 +00: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 .
|
|
|
|
*/
|
2002-04-29 09:35:36 +00:00
|
|
|
|
2013-10-23 22:38:46 +02:00
|
|
|
#ifndef INCLUDED_SD_SOURCE_UI_INC_INS_PASTE_HXX
|
|
|
|
#define INCLUDED_SD_SOURCE_UI_INC_INS_PASTE_HXX
|
2002-04-29 09:35:36 +00:00
|
|
|
|
2011-04-20 08:59:00 +02:00
|
|
|
#include <sddllapi.h>
|
|
|
|
|
2018-05-10 21:30:06 +01:00
|
|
|
#include <vcl/weld.hxx>
|
2002-04-29 09:35:36 +00:00
|
|
|
|
2014-02-25 23:45:44 +01:00
|
|
|
// SdInsertPasteDlg
|
2018-05-10 21:30:06 +01:00
|
|
|
class SD_DLLPUBLIC SdInsertPasteDlg : public weld::GenericDialogController
|
2002-04-29 09:35:36 +00:00
|
|
|
{
|
|
|
|
private:
|
2018-05-10 21:30:06 +01:00
|
|
|
std::unique_ptr<weld::RadioButton> m_xRbBefore;
|
|
|
|
std::unique_ptr<weld::RadioButton> m_xRbAfter;
|
2002-04-29 09:35:36 +00:00
|
|
|
|
|
|
|
public:
|
2018-05-10 21:30:06 +01:00
|
|
|
SdInsertPasteDlg(weld::Window* pWindow);
|
2016-09-13 13:09:01 +02:00
|
|
|
virtual ~SdInsertPasteDlg() override;
|
2013-11-06 10:38:41 +00:00
|
|
|
bool IsInsertBefore() const;
|
2002-04-29 09:35:36 +00:00
|
|
|
};
|
|
|
|
|
2013-10-23 22:38:46 +02:00
|
|
|
#endif // INCLUDED_SD_SOURCE_UI_INC_INS_PASTE_HXX
|
2010-10-27 12:53:26 +01:00
|
|
|
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|