office-gobmx/dbaccess/source/ui/inc/FieldControls.hxx

208 lines
7.2 KiB
C++
Raw Normal View History

2001-02-14 07:37:35 -06:00
/*************************************************************************
*
* OpenOffice.org - a multi-platform office productivity suite
2001-02-14 07:37:35 -06:00
*
* $RCSfile: FieldControls.hxx,v $
2001-02-14 07:37:35 -06:00
*
* $Revision: 1.7 $
2001-02-14 07:37:35 -06:00
*
* last change: $Author: rt $ $Date: 2007-07-06 08:22:29 $
2001-02-14 07:37:35 -06:00
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
2001-02-14 07:37:35 -06:00
*
*
* GNU Lesser General Public License Version 2.1
* =============================================
* Copyright 2005 by Sun Microsystems, Inc.
* 901 San Antonio Road, Palo Alto, CA 94303, USA
2001-02-14 07:37:35 -06:00
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License version 2.1, as published by the Free Software Foundation.
2001-02-14 07:37:35 -06:00
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
2001-02-14 07:37:35 -06:00
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston,
* MA 02111-1307 USA
2001-02-14 07:37:35 -06:00
*
************************************************************************/
#ifndef DBAUI_FIELDCONTROLS_HXX
#define DBAUI_FIELDCONTROLS_HXX
#ifndef _SV_FIELD_HXX
#include <vcl/field.hxx>
#endif
#ifndef _SV_LSTBOX_HXX
#include <vcl/lstbox.hxx>
#endif
#ifndef _SV_SVAPP_HXX
#include <vcl/svapp.hxx>
#endif
#ifndef DBAUI_SQLNAMEEDIT_HXX
#include "SqlNameEdit.hxx"
#endif
#ifndef _DBAUI_MODULE_DBU_HXX_
#include "moduledbu.hxx"
#endif
2001-02-14 07:37:35 -06:00
namespace dbaui
{
namespace
2001-02-14 07:37:35 -06:00
{
void lcl_setSpecialReadOnly( BOOL _bReadOnly, Window* _pWin )
2001-02-14 07:37:35 -06:00
{
StyleSettings aSystemStyle = Application::GetSettings().GetStyleSettings();
const Color& rNewColor = _bReadOnly ? aSystemStyle.GetDialogColor() : aSystemStyle.GetFieldColor();
_pWin->SetBackground(Wallpaper(rNewColor));
_pWin->SetControlBackground(rNewColor);
2001-02-14 07:37:35 -06:00
}
}
2001-02-14 07:37:35 -06:00
//==================================================================
class OPropColumnEditCtrl : public OSQLNameEdit
{
OModuleClient m_aModuleClient;
short m_nPos;
String m_strHelpText;
public:
2001-03-19 05:40:59 -06:00
inline OPropColumnEditCtrl(Window* pParent, ::rtl::OUString& _rAllowedChars, USHORT nHelpId, short nPosition = -1, WinBits nWinStyle = 0);
inline BOOL IsModified() const { return GetText() != GetSavedValue(); }
short GetPos() const { return m_nPos; }
String GetHelp() const { return m_strHelpText; }
virtual void SetSpecialReadOnly(BOOL _bReadOnly)
{
SetReadOnly(_bReadOnly);
lcl_setSpecialReadOnly(_bReadOnly,this);
}
};
inline OPropColumnEditCtrl::OPropColumnEditCtrl(Window* pParent,
::rtl::OUString& _rAllowedChars,
2001-03-19 05:40:59 -06:00
USHORT nHelpId,
short nPosition,
WinBits nWinStyle)
:OSQLNameEdit(pParent, _rAllowedChars,nWinStyle)
,m_nPos(nPosition)
{
m_strHelpText=String(ModuleRes(nHelpId));
}
//==================================================================
2001-02-14 07:37:35 -06:00
class OPropEditCtrl : public Edit
{
OModuleClient m_aModuleClient;
short m_nPos;
String m_strHelpText;
2001-02-14 07:37:35 -06:00
public:
2001-03-19 05:40:59 -06:00
inline OPropEditCtrl(Window* pParent, USHORT nHelpId, short nPosition = -1, WinBits nWinStyle = 0);
inline OPropEditCtrl(Window* pParent, USHORT nHelpId, const ResId& _rRes,short nPosition = -1);
2001-02-14 07:37:35 -06:00
inline BOOL IsModified() const { return GetText() != GetSavedValue(); }
2001-02-14 07:37:35 -06:00
short GetPos() const { return m_nPos; }
String GetHelp() const { return m_strHelpText; }
virtual void SetSpecialReadOnly(BOOL _bReadOnly)
{
SetReadOnly(_bReadOnly);
lcl_setSpecialReadOnly(_bReadOnly,this);
2001-02-14 07:37:35 -06:00
}
};
2001-03-19 05:40:59 -06:00
inline OPropEditCtrl::OPropEditCtrl(Window* pParent, USHORT nHelpId, short nPosition, WinBits nWinStyle)
2001-02-14 07:37:35 -06:00
:Edit(pParent, nWinStyle)
,m_nPos(nPosition)
{
m_strHelpText =String(ModuleRes(nHelpId));
2001-02-14 07:37:35 -06:00
}
2001-03-19 05:40:59 -06:00
inline OPropEditCtrl::OPropEditCtrl(Window* pParent, USHORT nHelpId, const ResId& _rRes,short nPosition)
:Edit(pParent, _rRes)
,m_nPos(nPosition)
{
m_strHelpText =String(ModuleRes(nHelpId));
2001-03-19 05:40:59 -06:00
}
2001-02-14 07:37:35 -06:00
//==================================================================
class OPropNumericEditCtrl : public NumericField
{
short m_nPos;
String m_strHelpText;
public:
2001-03-19 05:40:59 -06:00
inline OPropNumericEditCtrl(Window* pParent, USHORT nHelpId, short nPosition = -1, WinBits nWinStyle = 0);
inline OPropNumericEditCtrl(Window* pParent, USHORT nHelpId, const ResId& _rRes,short nPosition = -1);
2001-02-14 07:37:35 -06:00
inline BOOL IsModified() const { return GetText() != GetSavedValue(); }
2001-02-14 07:37:35 -06:00
short GetPos() const { return m_nPos; }
String GetHelp() const { return m_strHelpText; }
virtual void SetSpecialReadOnly(BOOL _bReadOnly)
{
SetReadOnly(_bReadOnly);
lcl_setSpecialReadOnly(_bReadOnly,this);
2001-02-14 07:37:35 -06:00
}
};
2001-03-19 05:40:59 -06:00
inline OPropNumericEditCtrl::OPropNumericEditCtrl(Window* pParent, USHORT nHelpId, short nPosition, WinBits nWinStyle)
2001-02-14 07:37:35 -06:00
:NumericField(pParent, nWinStyle)
,m_nPos(nPosition)
{
m_strHelpText =String(ModuleRes(nHelpId));
2001-02-14 07:37:35 -06:00
}
2001-03-19 05:40:59 -06:00
inline OPropNumericEditCtrl::OPropNumericEditCtrl(Window* pParent, USHORT nHelpId, const ResId& _rRes,short nPosition)
:NumericField(pParent, _rRes)
,m_nPos(nPosition)
{
m_strHelpText =String(ModuleRes(nHelpId));
2001-03-19 05:40:59 -06:00
}
2001-02-14 07:37:35 -06:00
//==================================================================
class OPropListBoxCtrl : public ListBox
{
short m_nPos;
String m_strHelpText;
public:
2001-03-19 05:40:59 -06:00
inline OPropListBoxCtrl(Window* pParent, USHORT nHelpId, short nPosition = -1, WinBits nWinStyle = 0);
inline OPropListBoxCtrl(Window* pParent, USHORT nHelpId, const ResId& _rRes,short nPosition = -1);
2001-02-14 07:37:35 -06:00
inline BOOL IsModified() const { return GetSelectEntryPos() != GetSavedValue(); }
2001-02-14 07:37:35 -06:00
short GetPos() const { return m_nPos; }
String GetHelp() const { return m_strHelpText; }
virtual void SetSpecialReadOnly(BOOL _bReadOnly)
{
SetReadOnly(_bReadOnly);
lcl_setSpecialReadOnly(_bReadOnly,this);
2001-02-14 07:37:35 -06:00
}
};
2001-03-19 05:40:59 -06:00
inline OPropListBoxCtrl::OPropListBoxCtrl(Window* pParent, USHORT nHelpId, short nPosition, WinBits nWinStyle)
2001-02-14 07:37:35 -06:00
:ListBox(pParent, nWinStyle)
,m_nPos(nPosition)
{
m_strHelpText =String(ModuleRes(nHelpId));
2001-02-14 07:37:35 -06:00
}
2001-03-19 05:40:59 -06:00
inline OPropListBoxCtrl::OPropListBoxCtrl(Window* pParent, USHORT nHelpId, const ResId& _rRes,short nPosition)
:ListBox(pParent, _rRes)
,m_nPos(nPosition)
{
m_strHelpText =String(ModuleRes(nHelpId));
2001-03-19 05:40:59 -06:00
}
2001-02-14 07:37:35 -06:00
}
#endif // DBAUI_FIELDCONTROLS_HXX