bump product version to 4.1.6.2
[LibreOffice.git] / extensions / source / propctrlr / selectlabeldialog.hxx
blob83053a94adb4415595ef657d259ad2be1662766b
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 _EXTENSIONS_PROPCTRLR_SELECTLABELDIALOG_HXX_
21 #define _EXTENSIONS_PROPCTRLR_SELECTLABELDIALOG_HXX_
23 #include <vcl/fixed.hxx>
24 #include <svtools/treelistbox.hxx>
25 #include <vcl/button.hxx>
26 #include <vcl/image.hxx>
27 #include <vcl/dialog.hxx>
28 #include <com/sun/star/beans/XPropertySet.hpp>
29 #include "modulepcr.hxx"
31 //............................................................................
32 namespace pcr
34 //............................................................................
36 //========================================================================
37 // OSelectLabelDialog
38 //========================================================================
39 class OSelectLabelDialog
40 :public ModalDialog
41 ,public PcrClient
43 FixedText m_aMainDesc;
44 SvTreeListBox m_aControlTree;
45 CheckBox m_aNoAssignment;
46 FixedLine m_aSeparator;
47 OKButton m_aOk;
48 CancelButton m_aCancel;
50 ImageList m_aModelImages;
51 ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySet > m_xControlModel;
52 OUString m_sRequiredService;
53 Image m_aRequiredControlImage;
54 SvTreeListEntry* m_pInitialSelection;
55 ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySet > m_xInitialLabelControl;
57 ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySet > m_xSelectedControl;
58 SvTreeListEntry* m_pLastSelected;
59 sal_Bool m_bHaveAssignableControl;
61 public:
62 OSelectLabelDialog(Window* pParent, ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySet > _xControlModel);
63 ~OSelectLabelDialog();
65 ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySet > GetSelected() const { return m_aNoAssignment.IsChecked() ? ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySet > () : m_xSelectedControl; }
67 protected:
68 sal_Int32 InsertEntries(const ::com::sun::star::uno::Reference< ::com::sun::star::uno::XInterface >& _xContainer, SvTreeListEntry* pContainerEntry);
70 DECL_LINK(OnEntrySelected, SvTreeListBox*);
71 DECL_LINK(OnNoAssignmentClicked, Button*);
74 //............................................................................
75 } // namespace pcr
76 //............................................................................
78 #endif // _EXTENSIONS_PROPCTRLR_SELECTLABELDIALOG_HXX_
80 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */