summaryrefslogtreecommitdiff
path: root/cui/source/inc/cuitbxform.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'cui/source/inc/cuitbxform.hxx')
-rw-r--r--cui/source/inc/cuitbxform.hxx29
1 files changed, 29 insertions, 0 deletions
diff --git a/cui/source/inc/cuitbxform.hxx b/cui/source/inc/cuitbxform.hxx
new file mode 100644
index 000000000000..1587dd7baaf5
--- /dev/null
+++ b/cui/source/inc/cuitbxform.hxx
@@ -0,0 +1,29 @@
+#ifndef _CUI_TBXFORM_HXX
+#define _CUI_TBXFORM_HXX
+
+#include <sfx2/tbxctrl.hxx>
+#include <vcl/field.hxx>
+#include <vcl/dialog.hxx>
+
+#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 static_cast<long>(m_aRecordNo.GetValue()); }
+};
+
+#endif