fdo#74697 Add Bluez 5 support for impress remote.
[LibreOffice.git] / include / vcl / abstdlg.hxx
blob5f92c74d5c0877d2002b6eb0ee0e5e5c8bd63905
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 _VCL_ABSTDLG_HXX
20 #define _VCL_ABSTDLG_HXX
22 #include <tools/solar.h>
23 #include <tools/string.hxx>
24 #include <vcl/dllapi.h>
26 class Window;
27 class ResId;
28 class Link;
30 class VCL_DLLPUBLIC VclAbstractDialog
32 public:
33 virtual short Execute() = 0;
34 //virtual void Show( sal_Bool bVisible = sal_True, sal_uInt16 nFlags = 0 ) = 0;
35 virtual ~VclAbstractDialog();
38 class VCL_DLLPUBLIC VclAbstractDialog2
40 public:
41 virtual void StartExecuteModal( const Link& rEndDialogHdl ) = 0;
42 virtual long GetResult() = 0;
43 virtual ~VclAbstractDialog2();
46 class VCL_DLLPUBLIC VclAbstractTerminatedDialog : public VclAbstractDialog
48 public:
49 virtual void EndDialog(long nResult =0) = 0;
52 class VCL_DLLPUBLIC VclAbstractRefreshableDialog : public VclAbstractDialog
54 public:
55 virtual void Update() = 0;
56 virtual void Sync() = 0;
59 class VCL_DLLPUBLIC AbstractPasswordToOpenModifyDialog : public VclAbstractDialog
61 public:
62 virtual String GetPasswordToOpen() const = 0;
63 virtual String GetPasswordToModify() const = 0;
64 virtual bool IsRecommendToOpenReadonly() const = 0;
67 //-------------------------------------------------------------
69 class VCL_DLLPUBLIC VclAbstractDialogFactory
71 public:
72 virtual ~VclAbstractDialogFactory(); // needed for export of vtable
73 static VclAbstractDialogFactory* Create();
74 // nDialogId was previously a ResId without ResMgr; the ResourceId is now
75 // an implementation detail of the factory
76 virtual VclAbstractDialog* CreateVclDialog( Window* pParent, sal_uInt32 nResId ) = 0;
78 // creates instance of PasswordToOpenModifyDialog from cui
79 virtual AbstractPasswordToOpenModifyDialog * CreatePasswordToOpenModifyDialog( Window * pParent, sal_uInt16 nMinPasswdLen, sal_uInt16 nMaxPasswdLen, bool bIsPasswordToModify ) = 0;
82 #endif
84 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */