Files
libreoffice/svx/source/dialog/cuitbxform.hxx
Jens-Heiner Rechtien 3c5f012694 INTEGRATION: CWS warnings01 (1.4.634); FILE MERGED
2006/05/04 14:46:51 os 1.4.634.1: warnings removed
2006-06-19 14:05:57 +00:00

38 lines
764 B
C++

#ifndef _CUI_TBXFORM_HXX
#define _CUI_TBXFORM_HXX
#ifndef _SFXTBXCTRL_HXX //autogen
#include <sfx2/tbxctrl.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(long dNew) { m_aRecordNo.SetValue(dNew); }
long GetValue() const { return m_aRecordNo.GetValue(); }
};
#endif