1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
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 .
19 #ifndef INCLUDED_DBACCESS_SOURCE_UI_INC_FIELDCONTROLS_HXX
20 #define INCLUDED_DBACCESS_SOURCE_UI_INC_FIELDCONTROLS_HXX
22 #include <vcl/field.hxx>
23 #include <vcl/lstbox.hxx>
24 #include <vcl/svapp.hxx>
25 #include "SqlNameEdit.hxx"
26 #include "moduledbu.hxx"
31 class OPropColumnEditCtrl
: public OSQLNameEdit
33 OModuleClient m_aModuleClient
;
35 OUString m_strHelpText
;
37 OPropColumnEditCtrl(vcl::Window
* pParent
, OUString
& _rAllowedChars
, sal_uInt16 nHelpId
, short nPosition
= -1, WinBits nWinStyle
= 0);
39 virtual bool IsModified() const SAL_OVERRIDE
{ return IsValueChangedFromSaved(); }
41 short GetPos() const { return m_nPos
; }
42 OUString
GetHelp() const { return m_strHelpText
; }
45 class OPropEditCtrl
: public Edit
47 OModuleClient m_aModuleClient
;
49 OUString m_strHelpText
;
52 OPropEditCtrl(vcl::Window
* pParent
, sal_uInt16 nHelpId
, short nPosition
= -1, WinBits nWinStyle
= 0);
54 virtual bool IsModified() const SAL_OVERRIDE
{ return IsValueChangedFromSaved(); }
56 short GetPos() const { return m_nPos
; }
57 OUString
GetHelp() const { return m_strHelpText
; }
60 class OPropNumericEditCtrl
: public NumericField
63 OUString m_strHelpText
;
66 OPropNumericEditCtrl(vcl::Window
* pParent
, sal_uInt16 nHelpId
, short nPosition
= -1, WinBits nWinStyle
= 0);
68 virtual bool IsModified() const SAL_OVERRIDE
{ return IsValueChangedFromSaved(); }
70 short GetPos() const { return m_nPos
; }
71 OUString
GetHelp() const { return m_strHelpText
; }
73 void SetSpecialReadOnly(bool _bReadOnly
);
76 class OPropListBoxCtrl
: public ListBox
79 OUString m_strHelpText
;
82 OPropListBoxCtrl(vcl::Window
* pParent
, sal_uInt16 nHelpId
, short nPosition
= -1, WinBits nWinStyle
= 0);
84 bool IsModified() const { return IsValueChangedFromSaved(); }
86 short GetPos() const { return m_nPos
; }
87 OUString
GetHelp() const { return m_strHelpText
; }
91 #endif // INCLUDED_DBACCESS_SOURCE_UI_INC_FIELDCONTROLS_HXX
93 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */