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 INCLUDED_DBACCESS_SOURCE_UI_INC_PARAMDIALOG_HXX
21 : #define INCLUDED_DBACCESS_SOURCE_UI_INC_PARAMDIALOG_HXX
22 :
23 : #include "commontypes.hxx"
24 :
25 : #include <vcl/dialog.hxx>
26 : #include <vcl/button.hxx>
27 : #include <vcl/fixed.hxx>
28 : #include <vcl/edit.hxx>
29 : #include <vcl/group.hxx>
30 : #include <vcl/lstbox.hxx>
31 :
32 : #include <com/sun/star/util/XNumberFormatter.hpp>
33 : #include <com/sun/star/container/XIndexAccess.hpp>
34 : #include <com/sun/star/sdbc/XConnection.hpp>
35 : #include <com/sun/star/lang/XMultiServiceFactory.hpp>
36 : #include <com/sun/star/beans/PropertyValue.hpp>
37 : #include <connectivity/predicateinput.hxx>
38 : #include "svx/ParseContext.hxx"
39 :
40 : namespace connectivity
41 : {
42 : class OSQLParseNode;
43 : }
44 :
45 : namespace dbaui
46 : {
47 :
48 : // OParameterDialog
49 : class OParameterDialog
50 : :public ModalDialog
51 : ,public ::svxform::OParseContextClient
52 : {
53 : protected:
54 : // the controls
55 : FixedLine m_aNamesFrame;
56 : ListBox m_aAllParams;
57 : FixedText m_aValueFrame;
58 : Edit m_aParam;
59 : PushButton m_aTravelNext;
60 : OKButton m_aOKBtn;
61 : CancelButton m_aCancelBtn;
62 :
63 : sal_Int32 m_nCurrentlySelected;
64 :
65 : ::com::sun::star::uno::Reference< ::com::sun::star::container::XIndexAccess >
66 : m_xParams;
67 : ::com::sun::star::uno::Reference< ::com::sun::star::sdbc::XConnection >
68 : m_xConnection;
69 : ::com::sun::star::uno::Reference< ::com::sun::star::util::XNumberFormatter >
70 : m_xFormatter;
71 : ::dbtools::OPredicateInputController
72 : m_aPredicateInput;
73 :
74 : ByteVector m_aVisitedParams;
75 : Timer m_aResetVisitFlag;
76 : // we reset the "visited flag" 1 second after and entry has been selected
77 :
78 : sal_Bool m_bNeedErrorOnCurrent;
79 :
80 : ::com::sun::star::uno::Sequence< ::com::sun::star::beans::PropertyValue >
81 : m_aFinalValues; /// the final values as entered by the user
82 :
83 : public:
84 : OParameterDialog(Window* _pParent,
85 : const ::com::sun::star::uno::Reference< ::com::sun::star::container::XIndexAccess > & _rParamContainer,
86 : const ::com::sun::star::uno::Reference< ::com::sun::star::sdbc::XConnection > & _rxConnection,
87 : const ::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext >& rxContext);
88 : virtual ~OParameterDialog();
89 :
90 : ::com::sun::star::uno::Sequence< ::com::sun::star::beans::PropertyValue >
91 0 : getValues() const { return m_aFinalValues; }
92 :
93 : protected:
94 : void Construct();
95 :
96 : ::connectivity::OSQLParseNode* implPredicateTree(OUString& _rErrorMessage, const OUString& _rStatement, const ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySet > & _rxField);
97 :
98 : private:
99 : DECL_LINK(OnVisitedTimeout, Timer*);
100 : DECL_LINK(OnValueModified, Control*);
101 : DECL_LINK(OnEntrySelected, ListBox*);
102 : DECL_LINK(OnButtonClicked, PushButton*);
103 : DECL_LINK(OnValueLoseFocus, Control*);
104 : };
105 :
106 : } // namespace dbaui
107 :
108 : #endif // INCLUDED_DBACCESS_SOURCE_UI_INC_PARAMDIALOG_HXX
109 :
110 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|