bump product version to 4.1.6.2
[LibreOffice.git] / fpicker / source / win32 / filepicker / customcontrolfactory.hxx
blob46da0e01c9e89984ac7cebca3424b1fb9fcf89eb
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 .
20 #ifndef _CUSTOMCONTROLFACTORY_HXX_
21 #define _CUSTOMCONTROLFACTORY_HXX_
23 #if defined _MSC_VER
24 #pragma warning(push, 1)
25 #endif
26 #include <windows.h>
27 #if defined _MSC_VER
28 #pragma warning(pop)
29 #endif
31 //-----------------------------------
32 // forward declaration
33 //-----------------------------------
35 class CCustomControl;
37 //-----------------------------------
39 //-----------------------------------
41 class CCustomControlFactory
43 public:
45 // The CCustomControl instances will be created on the heap
46 // and the client is responsible for deleting this instances
47 // (he adopts ownership)
48 virtual CCustomControl* CreateCustomControl(HWND aControlHandle, HWND aParentHandle);
50 virtual CCustomControl* CreateCustomControlContainer();
53 #endif
55 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */