Files
libreoffice/svx/source/dialog/cuitbxform.hxx
Jens-Heiner Rechtien 490975b789 INTEGRATION: CWS dialogdiet01 (1.2.46); FILE MERGED
2004/03/26 04:31:10 mwu 1.2.46.1: sw model converted. 20040326
2004-05-10 15:51:28 +00:00

42 lines
834 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