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 : #ifndef INCLUDED_DBACCESS_SOURCE_UI_INC_FIELDCONTROLS_HXX
20 : #define INCLUDED_DBACCESS_SOURCE_UI_INC_FIELDCONTROLS_HXX
21 :
22 : #include <vcl/field.hxx>
23 : #include <vcl/lstbox.hxx>
24 : #include <vcl/svapp.hxx>
25 : #include "SqlNameEdit.hxx"
26 : #include "moduledbu.hxx"
27 :
28 : namespace dbaui
29 : {
30 :
31 0 : class OPropColumnEditCtrl : public OSQLNameEdit
32 : {
33 : OModuleClient m_aModuleClient;
34 : short m_nPos;
35 : OUString m_strHelpText;
36 : public:
37 : OPropColumnEditCtrl(vcl::Window* pParent, OUString& _rAllowedChars, sal_uInt16 nHelpId, short nPosition = -1, WinBits nWinStyle = 0);
38 :
39 0 : virtual bool IsModified() const SAL_OVERRIDE { return IsValueChangedFromSaved(); }
40 :
41 0 : short GetPos() const { return m_nPos; }
42 0 : OUString GetHelp() const { return m_strHelpText; }
43 : };
44 :
45 0 : class OPropEditCtrl : public Edit
46 : {
47 : OModuleClient m_aModuleClient;
48 : short m_nPos;
49 : OUString m_strHelpText;
50 :
51 : public:
52 : OPropEditCtrl(vcl::Window* pParent, sal_uInt16 nHelpId, short nPosition = -1, WinBits nWinStyle = 0);
53 :
54 0 : virtual bool IsModified() const SAL_OVERRIDE { return IsValueChangedFromSaved(); }
55 :
56 0 : short GetPos() const { return m_nPos; }
57 0 : OUString GetHelp() const { return m_strHelpText; }
58 : };
59 :
60 0 : class OPropNumericEditCtrl : public NumericField
61 : {
62 : short m_nPos;
63 : OUString m_strHelpText;
64 :
65 : public:
66 : OPropNumericEditCtrl(vcl::Window* pParent, sal_uInt16 nHelpId, short nPosition = -1, WinBits nWinStyle = 0);
67 :
68 0 : virtual bool IsModified() const SAL_OVERRIDE { return IsValueChangedFromSaved(); }
69 :
70 0 : short GetPos() const { return m_nPos; }
71 0 : OUString GetHelp() const { return m_strHelpText; }
72 :
73 : void SetSpecialReadOnly(bool _bReadOnly);
74 : };
75 :
76 0 : class OPropListBoxCtrl : public ListBox
77 : {
78 : short m_nPos;
79 : OUString m_strHelpText;
80 :
81 : public:
82 : OPropListBoxCtrl(vcl::Window* pParent, sal_uInt16 nHelpId, short nPosition = -1, WinBits nWinStyle = 0);
83 :
84 0 : bool IsModified() const { return IsValueChangedFromSaved(); }
85 :
86 0 : short GetPos() const { return m_nPos; }
87 0 : OUString GetHelp() const { return m_strHelpText; }
88 : };
89 :
90 : }
91 : #endif // INCLUDED_DBACCESS_SOURCE_UI_INC_FIELDCONTROLS_HXX
92 :
93 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|