Version 4.3.0.0.beta1, tag libreoffice-4.3.0.0.beta1
[LibreOffice.git] / include / vcl / abstdlg.hxx
blob3464d03de94ca9943f89b18397d5581130fce842
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
19 #ifndef INCLUDED_VCL_ABSTDLG_HXX
20 #define INCLUDED_VCL_ABSTDLG_HXX
22 #include <rtl/ustring.hxx>
23 #include <vcl/dllapi.h>
25 class Window;
26 class ResId;
27 class Link;
29 class VCL_DLLPUBLIC VclAbstractDialog
31 public:
32 virtual short Execute() = 0;
33 virtual ~VclAbstractDialog();
36 class VCL_DLLPUBLIC VclAbstractDialog2
38 public:
39 virtual void StartExecuteModal( const Link& rEndDialogHdl ) = 0;
40 virtual long GetResult() = 0;
41 virtual ~VclAbstractDialog2();
44 class VCL_DLLPUBLIC VclAbstractTerminatedDialog : public VclAbstractDialog
46 public:
47 virtual void EndDialog(long nResult =0) = 0;
50 class VCL_DLLPUBLIC VclAbstractRefreshableDialog : public VclAbstractDialog
52 public:
53 virtual void Update() = 0;
54 virtual void Sync() = 0;
57 class VCL_DLLPUBLIC AbstractPasswordToOpenModifyDialog : public VclAbstractDialog
59 public:
60 virtual OUString GetPasswordToOpen() const = 0;
61 virtual OUString GetPasswordToModify() const = 0;
62 virtual bool IsRecommendToOpenReadonly() const = 0;
65 class VCL_DLLPUBLIC VclAbstractDialogFactory
67 public:
68 virtual ~VclAbstractDialogFactory(); // needed for export of vtable
69 static VclAbstractDialogFactory* Create();
70 // nDialogId was previously a ResId without ResMgr; the ResourceId is now
71 // an implementation detail of the factory
72 virtual VclAbstractDialog* CreateVclDialog( Window* pParent, sal_uInt32 nResId ) = 0;
74 // creates instance of PasswordToOpenModifyDialog from cui
75 virtual AbstractPasswordToOpenModifyDialog * CreatePasswordToOpenModifyDialog( Window * pParent, sal_uInt16 nMinPasswdLen, sal_uInt16 nMaxPasswdLen, bool bIsPasswordToModify ) = 0;
78 #endif
80 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */