diff options
author | Noel Power <noel.power@novell.com> | 2011-11-16 14:53:38 +0000 |
---|---|---|
committer | Noel Power <noel.power@novell.com> | 2011-11-16 14:54:21 +0000 |
commit | 73d3c9504a479e62126d1e7a1766173370603aa1 (patch) | |
tree | 4018908cd6a4a5e84b25c84867f1ba579a589f61 /basctl/source/basicide/moduldlg.hxx | |
parent | 20dde3737f250ab48b80a28c9c03d348e486dd8b (diff) |
add new 'Goto Line' menu item to Basic IDE
Diffstat (limited to 'basctl/source/basicide/moduldlg.hxx')
-rw-r--r-- | basctl/source/basicide/moduldlg.hxx | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/basctl/source/basicide/moduldlg.hxx b/basctl/source/basicide/moduldlg.hxx index b75e88a53d31..f61f64c60534 100644 --- a/basctl/source/basicide/moduldlg.hxx +++ b/basctl/source/basicide/moduldlg.hxx @@ -70,6 +70,18 @@ public: void SetObjectName( const String& rName ) { aEdit.SetText( rName ); aEdit.SetSelection( Selection( 0, rName.Len() ) );} }; +class GotoLineDialog : public ModalDialog +{ + FixedText aText; + Edit aEdit; + OKButton aOKButton; + CancelButton aCancelButton; + DECL_LINK(OkButtonHandler, Button *); +public: + GotoLineDialog( Window * pParent ); + sal_Int32 GetLineNumber(); +}; + class ExportDialog : public ModalDialog { private: |