diff options
author | Kohei Yoshida <kohei.yoshida@gmail.com> | 2012-05-29 12:39:17 -0400 |
---|---|---|
committer | Kohei Yoshida <kohei.yoshida@gmail.com> | 2012-05-30 11:37:19 -0400 |
commit | ce2bcf8901d491866b62bff4b5bfe63918a0fe24 (patch) | |
tree | 195e9fec2299262dc575965e403364a05d7d717a /sc/source/ui/optdlg/calcoptionsdlg.hxx | |
parent | f1010e946f2bed587d7e7ad4e52e20c38062f683 (diff) |
Added options list and other misc stuff.
Change-Id: Idd7b8823a26e2a272d911c097dbde350092ec0e8
Diffstat (limited to 'sc/source/ui/optdlg/calcoptionsdlg.hxx')
-rw-r--r-- | sc/source/ui/optdlg/calcoptionsdlg.hxx | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/sc/source/ui/optdlg/calcoptionsdlg.hxx b/sc/source/ui/optdlg/calcoptionsdlg.hxx index 76f99b3fba3d..9bb1ca582cff 100644 --- a/sc/source/ui/optdlg/calcoptionsdlg.hxx +++ b/sc/source/ui/optdlg/calcoptionsdlg.hxx @@ -31,6 +31,8 @@ #include "vcl/dialog.hxx" #include "vcl/button.hxx" +#include "vcl/fixed.hxx" +#include "svx/checklbx.hxx" class ScCalcOptionsDialog : public ModalDialog { @@ -38,9 +40,25 @@ public: ScCalcOptionsDialog(Window* pParent); virtual ~ScCalcOptionsDialog(); + DECL_LINK( SettingsSelHdl, void* ); + DECL_LINK( SettingsDoubleClickHdl, void* ); + +private: + void FillOptionsList(); + void SelectionChanged(); + void EditOption(); + private: + SvxCheckListBox maLbSettings; + + PushButton maBtnEdit; + FixedLine maFlAnnotation; + FixedText maFtAnnotation; + OKButton maBtnOK; CancelButton maBtnCancel; + + rtl::OUString maDescIndirectSyntax; }; #endif |