forked from amazingfate/loongoffice
Conflicts: include/vcl/settings.hxx svtools/source/table/tablecontrol_impl.cxx sw/source/core/frmedt/fecopy.cxx vcl/inc/canvasbitmap.hxx vcl/inc/headless/svpframe.hxx vcl/inc/unx/salframe.h vcl/inc/win/salframe.h vcl/inc/win/salprn.h vcl/inc/win/salvd.h vcl/osx/DragSource.cxx vcl/osx/DragSource.hxx vcl/osx/DropTarget.cxx vcl/osx/DropTarget.hxx vcl/osx/OSXTransferable.cxx vcl/osx/OSXTransferable.hxx vcl/osx/clipboard.cxx vcl/osx/clipboard.hxx vcl/osx/salprn.cxx vcl/qa/cppunit/canvasbitmaptest.cxx vcl/source/components/fontident.cxx vcl/source/control/edit.cxx vcl/source/control/spinfld.cxx vcl/source/gdi/gdimtf.cxx vcl/source/gdi/virdev.cxx vcl/source/helper/canvasbitmap.cxx vcl/source/window/dockwin.cxx vcl/unx/generic/dtrans/X11_selection.hxx vcl/unx/kde/UnxFilePicker.cxx vcl/unx/kde/UnxFilePicker.hxx vcl/unx/kde4/KDE4FilePicker.cxx vcl/unx/kde4/KDE4FilePicker.hxx vcl/unx/kde4/KDESalFrame.hxx Change-Id: I9866d985da86dea2a56feff23f91c1467a1636b0 Reviewed-on: https://gerrit.libreoffice.org/8219 Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
81 lines
2.7 KiB
C++
81 lines
2.7 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/.
|
|
*
|
|
* 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 .
|
|
*/
|
|
#ifndef INCLUDED_VCL_ABSTDLG_HXX
|
|
#define INCLUDED_VCL_ABSTDLG_HXX
|
|
|
|
#include <rtl/ustring.hxx>
|
|
#include <vcl/dllapi.h>
|
|
|
|
class Window;
|
|
class ResId;
|
|
class Link;
|
|
|
|
class VCL_DLLPUBLIC VclAbstractDialog
|
|
{
|
|
public:
|
|
virtual short Execute() = 0;
|
|
virtual ~VclAbstractDialog();
|
|
};
|
|
|
|
class VCL_DLLPUBLIC VclAbstractDialog2
|
|
{
|
|
public:
|
|
virtual void StartExecuteModal( const Link& rEndDialogHdl ) = 0;
|
|
virtual long GetResult() = 0;
|
|
virtual ~VclAbstractDialog2();
|
|
};
|
|
|
|
class VCL_DLLPUBLIC VclAbstractTerminatedDialog : public VclAbstractDialog
|
|
{
|
|
public:
|
|
virtual void EndDialog(long nResult =0) = 0;
|
|
};
|
|
|
|
class VCL_DLLPUBLIC VclAbstractRefreshableDialog : public VclAbstractDialog
|
|
{
|
|
public:
|
|
virtual void Update() = 0;
|
|
virtual void Sync() = 0;
|
|
};
|
|
|
|
class VCL_DLLPUBLIC AbstractPasswordToOpenModifyDialog : public VclAbstractDialog
|
|
{
|
|
public:
|
|
virtual OUString GetPasswordToOpen() const = 0;
|
|
virtual OUString GetPasswordToModify() const = 0;
|
|
virtual bool IsRecommendToOpenReadonly() const = 0;
|
|
};
|
|
|
|
class VCL_DLLPUBLIC VclAbstractDialogFactory
|
|
{
|
|
public:
|
|
virtual ~VclAbstractDialogFactory(); // needed for export of vtable
|
|
static VclAbstractDialogFactory* Create();
|
|
// nDialogId was previously a ResId without ResMgr; the ResourceId is now
|
|
// an implementation detail of the factory
|
|
virtual VclAbstractDialog* CreateVclDialog( Window* pParent, sal_uInt32 nResId ) = 0;
|
|
|
|
// creates instance of PasswordToOpenModifyDialog from cui
|
|
virtual AbstractPasswordToOpenModifyDialog * CreatePasswordToOpenModifyDialog( Window * pParent, sal_uInt16 nMinPasswdLen, sal_uInt16 nMaxPasswdLen, bool bIsPasswordToModify ) = 0;
|
|
};
|
|
|
|
#endif
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|