2001-02-14 07:37:35 -06:00
|
|
|
/*************************************************************************
|
|
|
|
*
|
2005-09-08 09:16:49 -05:00
|
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
2001-02-14 07:37:35 -06:00
|
|
|
*
|
2005-09-08 09:16:49 -05:00
|
|
|
* $RCSfile: FieldControls.hxx,v $
|
2001-02-14 07:37:35 -06:00
|
|
|
*
|
2007-07-06 02:22:29 -05:00
|
|
|
* $Revision: 1.7 $
|
2001-02-14 07:37:35 -06:00
|
|
|
*
|
2007-07-06 02:22:29 -05:00
|
|
|
* last change: $Author: rt $ $Date: 2007-07-06 08:22:29 $
|
2001-02-14 07:37:35 -06:00
|
|
|
*
|
2005-09-08 09:16:49 -05: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
|
|
|
*
|
|
|
|
*
|
2005-09-08 09:16:49 -05: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
|
|
|
*
|
2005-09-08 09:16:49 -05: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
|
|
|
*
|
2005-09-08 09:16:49 -05: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
|
|
|
*
|
2005-09-08 09:16:49 -05: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
|
2001-03-14 03:35:11 -06:00
|
|
|
#ifndef DBAUI_SQLNAMEEDIT_HXX
|
|
|
|
#include "SqlNameEdit.hxx"
|
|
|
|
#endif
|
2007-07-06 02:22:29 -05:00
|
|
|
#ifndef _DBAUI_MODULE_DBU_HXX_
|
|
|
|
#include "moduledbu.hxx"
|
|
|
|
#endif
|
2001-03-14 03:35:11 -06:00
|
|
|
|
2001-02-14 07:37:35 -06:00
|
|
|
|
|
|
|
namespace dbaui
|
|
|
|
{
|
2006-06-19 21:11:22 -05:00
|
|
|
namespace
|
2001-02-14 07:37:35 -06:00
|
|
|
{
|
2006-06-19 21:11:22 -05: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();
|
2006-06-19 21:11:22 -05:00
|
|
|
_pWin->SetBackground(Wallpaper(rNewColor));
|
|
|
|
_pWin->SetControlBackground(rNewColor);
|
2001-02-14 07:37:35 -06:00
|
|
|
}
|
2006-06-19 21:11:22 -05:00
|
|
|
}
|
|
|
|
|
2001-02-14 07:37:35 -06:00
|
|
|
//==================================================================
|
2001-03-14 03:35:11 -06:00
|
|
|
class OPropColumnEditCtrl : public OSQLNameEdit
|
|
|
|
{
|
2007-07-06 02:22:29 -05:00
|
|
|
OModuleClient m_aModuleClient;
|
|
|
|
short m_nPos;
|
|
|
|
String m_strHelpText;
|
2001-03-14 03:35:11 -06:00
|
|
|
public:
|
2001-03-19 05:40:59 -06:00
|
|
|
inline OPropColumnEditCtrl(Window* pParent, ::rtl::OUString& _rAllowedChars, USHORT nHelpId, short nPosition = -1, WinBits nWinStyle = 0);
|
2001-03-14 03:35:11 -06:00
|
|
|
|
2006-06-19 21:11:22 -05:00
|
|
|
inline BOOL IsModified() const { return GetText() != GetSavedValue(); }
|
2001-03-14 03:35:11 -06:00
|
|
|
|
|
|
|
short GetPos() const { return m_nPos; }
|
|
|
|
String GetHelp() const { return m_strHelpText; }
|
|
|
|
|
|
|
|
virtual void SetSpecialReadOnly(BOOL _bReadOnly)
|
|
|
|
{
|
|
|
|
SetReadOnly(_bReadOnly);
|
2006-06-19 21:11:22 -05:00
|
|
|
lcl_setSpecialReadOnly(_bReadOnly,this);
|
2001-03-14 03:35:11 -06:00
|
|
|
}
|
|
|
|
};
|
|
|
|
inline OPropColumnEditCtrl::OPropColumnEditCtrl(Window* pParent,
|
|
|
|
::rtl::OUString& _rAllowedChars,
|
2001-03-19 05:40:59 -06:00
|
|
|
USHORT nHelpId,
|
2001-03-14 03:35:11 -06:00
|
|
|
short nPosition,
|
|
|
|
WinBits nWinStyle)
|
|
|
|
:OSQLNameEdit(pParent, _rAllowedChars,nWinStyle)
|
|
|
|
,m_nPos(nPosition)
|
|
|
|
{
|
2004-08-02 09:52:26 -05:00
|
|
|
m_strHelpText=String(ModuleRes(nHelpId));
|
2001-03-14 03:35:11 -06:00
|
|
|
}
|
|
|
|
//==================================================================
|
2001-02-14 07:37:35 -06:00
|
|
|
class OPropEditCtrl : public Edit
|
|
|
|
{
|
2007-07-06 02:22:29 -05:00
|
|
|
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
|
|
|
|
2006-06-19 21:11:22 -05: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);
|
2006-06-19 21:11:22 -05:00
|
|
|
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)
|
|
|
|
{
|
2004-08-02 09:52:26 -05:00
|
|
|
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)
|
|
|
|
{
|
2004-08-02 09:52:26 -05:00
|
|
|
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
|
|
|
|
2006-06-19 21:11:22 -05: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);
|
2006-06-19 21:11:22 -05:00
|
|
|
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)
|
|
|
|
{
|
2004-08-02 09:52:26 -05:00
|
|
|
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)
|
|
|
|
{
|
2004-08-02 09:52:26 -05:00
|
|
|
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
|
|
|
|
2006-06-19 21:11:22 -05: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);
|
2006-06-19 21:11:22 -05:00
|
|
|
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)
|
|
|
|
{
|
2004-08-02 09:52:26 -05:00
|
|
|
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)
|
|
|
|
{
|
2004-08-02 09:52:26 -05:00
|
|
|
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
|
|
|
|
|
|
|
|
|
|
|
|
|