summaryrefslogtreecommitdiff
path: root/sc/source/ui/inc/scuiimoptdlg.hxx
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-02-02 11:43:50 +0000
committerCaolán McNamara <caolanm@redhat.com>2014-02-02 14:51:56 +0000
commit22d80c90c83fd1f819f6a208b09bedf7117c6611 (patch)
tree83e07064dad87a70fa1bb7239067dd628c7fed0b /sc/source/ui/inc/scuiimoptdlg.hxx
parent25dbaef62b8f6dee9a2c0b3806cc31f32fc0ff63 (diff)
convert import options dialog to .ui
Change-Id: Iaf20b6d2306ba76f21cb5f7be231f40b403c790a
Diffstat (limited to 'sc/source/ui/inc/scuiimoptdlg.hxx')
-rw-r--r--sc/source/ui/inc/scuiimoptdlg.hxx43
1 files changed, 21 insertions, 22 deletions
diff --git a/sc/source/ui/inc/scuiimoptdlg.hxx b/sc/source/ui/inc/scuiimoptdlg.hxx
index d68b69c00d9e..95db317d7c3f 100644
--- a/sc/source/ui/inc/scuiimoptdlg.hxx
+++ b/sc/source/ui/inc/scuiimoptdlg.hxx
@@ -20,6 +20,7 @@
#ifndef SCUI_IMOPTDLG_HXX
#define SCUI_IMOPTDLG_HXX
+#include <vcl/layout.hxx>
#include "imoptdlg.hxx"
//===================================================================
@@ -30,33 +31,31 @@ class ScDelimiterTable;
class ScImportOptionsDlg : public ModalDialog
{
public:
- ScImportOptionsDlg( Window* pParent,
- sal_Bool bAscii = sal_True,
- const ScImportOptions* pOptions = NULL,
- const OUString* pStrTitle = NULL,
- sal_Bool bMultiByte = false,
- sal_Bool bOnlyDbtoolsEncodings = false,
- sal_Bool bImport = sal_True );
+ ScImportOptionsDlg( Window* pParent,
+ sal_Bool bAscii = sal_True,
+ const ScImportOptions* pOptions = NULL,
+ const OUString* pStrTitle = NULL,
+ sal_Bool bMultiByte = false,
+ sal_Bool bOnlyDbtoolsEncodings = false,
+ sal_Bool bImport = sal_True );
- ~ScImportOptionsDlg();
+ ~ScImportOptionsDlg();
void GetImportOptions( ScImportOptions& rOptions ) const;
private:
- FixedLine aFlFieldOpt;
- FixedText aFtFont;
- SvxTextEncodingBox aLbFont;
- FixedText aFtFieldSep;
- ComboBox aEdFieldSep;
- FixedText aFtTextSep;
- ComboBox aEdTextSep;
- CheckBox aCbShown;
- CheckBox aCbFormulas;
- CheckBox aCbQuoteAll;
- CheckBox aCbFixed;
- OKButton aBtnOk;
- CancelButton aBtnCancel;
- HelpButton aBtnHelp;
+ VclFrame* m_pFieldFrame;
+ FixedText* m_pFtCharset;
+ SvxTextEncodingBox* m_pLbCharset;
+ FixedText* m_pFtFieldSep;
+ ComboBox* m_pEdFieldSep;
+ FixedText* m_pFtTextSep;
+ ComboBox* m_pEdTextSep;
+ CheckBox* m_pCbShown;
+ CheckBox* m_pCbFormulas;
+ CheckBox* m_pCbQuoteAll;
+ CheckBox* m_pCbFixed;
+ OKButton* m_pBtnOk;
ScDelimiterTable* pFieldSepTab;
ScDelimiterTable* pTextSepTab;