Files
libreoffice/svx/source/dialog/cuitbxform.hxx
Jens-Heiner Rechtien 57a788d9db INTEGRATION: CWS dialogdiet (1.1.2); FILE ADDED
2004/01/13 03:46:56 mwu 1.1.2.1: DialogDiet 2004_01_13
2004-02-03 17:24:37 +00:00

41 lines
833 B
C++

#ifndef _CUI_TBXFORM_HXX
#define _CUI_TBXFORM_HXX
#ifndef _SFXTBXCTRL_HXX //autogen
#include <sfx2/tbxctrl.hxx>
#endif
#ifndef _SFXTBXMGR_HXX //autogen
#include <sfx2/tbxmgr.hxx>
#endif
#ifndef _SV_FIELD_HXX //autogen
#include <vcl/field.hxx>
#endif
#ifndef _SV_DIALOG_HXX //autogen
#include <vcl/dialog.hxx>
#endif
#ifndef _SV_BUTTON_HXX //autogen
#include <vcl/button.hxx>
#endif
//========================================================================
class FmInputRecordNoDialog : public ModalDialog
{
public:
FixedText m_aLabel;
NumericField m_aRecordNo;
OKButton m_aOk;
CancelButton m_aCancel;
public:
FmInputRecordNoDialog(Window * pParent);
void SetValue(double dNew) { m_aRecordNo.SetValue(dNew); }
long GetValue() const { return m_aRecordNo.GetValue(); }
};
#endif