Branch data Line data Source code
1 : : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 : : /*
3 : : * This file is part of the LibreOffice project.
4 : : *
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/.
8 : : *
9 : : * This file incorporates work covered by the following license notice:
10 : : *
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 .
18 : : */
19 : :
20 : : #ifndef _EXTENSIONS_PROPCTRLR_SELECTLABELDIALOG_HXX_
21 : : #define _EXTENSIONS_PROPCTRLR_SELECTLABELDIALOG_HXX_
22 : :
23 : : #include <vcl/fixed.hxx>
24 : : #include <svtools/svtreebx.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"
30 : :
31 : : //............................................................................
32 : : namespace pcr
33 : : {
34 : : //............................................................................
35 : :
36 : : //========================================================================
37 : : // OSelectLabelDialog
38 : : //========================================================================
39 : : class OSelectLabelDialog
40 : : :public ModalDialog
41 : : ,public PcrClient
42 : : {
43 : : FixedText m_aMainDesc;
44 : : SvTreeListBox m_aControlTree;
45 : : CheckBox m_aNoAssignment;
46 : : FixedLine m_aSeparator;
47 : : OKButton m_aOk;
48 : : CancelButton m_aCancel;
49 : :
50 : : ImageList m_aModelImages;
51 : : ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySet > m_xControlModel;
52 : : ::rtl::OUString m_sRequiredService;
53 : : Image m_aRequiredControlImage;
54 : : SvLBoxEntry* m_pInitialSelection;
55 : : ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySet > m_xInitialLabelControl;
56 : :
57 : : ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySet > m_xSelectedControl;
58 : : SvLBoxEntry* m_pLastSelected;
59 : : sal_Bool m_bHaveAssignableControl;
60 : :
61 : : public:
62 : : OSelectLabelDialog(Window* pParent, ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySet > _xControlModel);
63 : : ~OSelectLabelDialog();
64 : :
65 : 0 : ::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; }
66 : :
67 : : protected:
68 : : sal_Int32 InsertEntries(const ::com::sun::star::uno::Reference< ::com::sun::star::uno::XInterface >& _xContainer, SvLBoxEntry* pContainerEntry);
69 : :
70 : : DECL_LINK(OnEntrySelected, SvTreeListBox*);
71 : : DECL_LINK(OnNoAssignmentClicked, Button*);
72 : : };
73 : :
74 : : //............................................................................
75 : : } // namespace pcr
76 : : //............................................................................
77 : :
78 : : #endif // _EXTENSIONS_PROPCTRLR_SELECTLABELDIALOG_HXX_
79 : :
80 : : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|