Version 5.2.6.1, tag libreoffice-5.2.6.1
[LibreOffice.git] / dbaccess / source / ui / inc / paramdialog.hxx
blobdd7fd7654ea957bc3ce8b6de794ccef469244a4f
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 INCLUDED_DBACCESS_SOURCE_UI_INC_PARAMDIALOG_HXX
21 #define INCLUDED_DBACCESS_SOURCE_UI_INC_PARAMDIALOG_HXX
23 #include "commontypes.hxx"
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>
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"
40 namespace connectivity
42 class OSQLParseNode;
45 namespace dbaui
48 // OParameterDialog
49 class OParameterDialog
50 :public ModalDialog
51 ,public ::svxform::OParseContextClient
53 protected:
54 // the controls
55 VclPtr<ListBox> m_pAllParams;
56 VclPtr<Edit> m_pParam;
57 VclPtr<PushButton> m_pTravelNext;
58 VclPtr<OKButton> m_pOKBtn;
59 VclPtr<CancelButton> m_pCancelBtn;
61 sal_Int32 m_nCurrentlySelected;
63 css::uno::Reference< css::container::XIndexAccess >
64 m_xParams;
65 css::uno::Reference< css::sdbc::XConnection >
66 m_xConnection;
67 css::uno::Reference< css::util::XNumberFormatter >
68 m_xFormatter;
69 ::dbtools::OPredicateInputController
70 m_aPredicateInput;
72 ByteVector m_aVisitedParams;
73 Timer m_aResetVisitFlag;
74 // we reset the "visited flag" 1 second after and entry has been selected
76 bool m_bNeedErrorOnCurrent;
78 css::uno::Sequence< css::beans::PropertyValue >
79 m_aFinalValues; /// the final values as entered by the user
81 public:
82 OParameterDialog(vcl::Window* _pParent,
83 const css::uno::Reference< css::container::XIndexAccess > & _rParamContainer,
84 const css::uno::Reference< css::sdbc::XConnection > & _rxConnection,
85 const css::uno::Reference< css::uno::XComponentContext >& rxContext);
86 virtual ~OParameterDialog();
87 virtual void dispose() override;
89 const css::uno::Sequence< css::beans::PropertyValue >&
90 getValues() const { return m_aFinalValues; }
92 protected:
93 void Construct();
95 private:
96 DECL_LINK_TYPED(OnVisitedTimeout, Timer*, void);
97 DECL_LINK_TYPED(OnValueModified, Edit&, void);
98 DECL_LINK_TYPED(OnEntryListBoxSelected, ListBox&, void);
99 DECL_LINK_TYPED(OnButtonClicked, Button*, void);
100 DECL_LINK_TYPED(OnValueLoseFocusHdl, Control&, void);
101 bool OnValueLoseFocus();
102 bool OnEntrySelected();
105 } // namespace dbaui
107 #endif // INCLUDED_DBACCESS_SOURCE_UI_INC_PARAMDIALOG_HXX
109 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */