summaryrefslogtreecommitdiff
path: root/xmlscript/source/xmldlg_imexp/xmldlg_import.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'xmlscript/source/xmldlg_imexp/xmldlg_import.cxx')
-rw-r--r--xmlscript/source/xmldlg_imexp/xmldlg_import.cxx23
1 files changed, 23 insertions, 0 deletions
diff --git a/xmlscript/source/xmldlg_imexp/xmldlg_import.cxx b/xmlscript/source/xmldlg_imexp/xmldlg_import.cxx
index 6fec94bf13a1..d1dad5fcf498 100644
--- a/xmlscript/source/xmldlg_imexp/xmldlg_import.cxx
+++ b/xmlscript/source/xmldlg_imexp/xmldlg_import.cxx
@@ -1514,6 +1514,29 @@ void ImportContext::importEvents(
}
}
//__________________________________________________________________________________________________
+void ImportContext::importScollableSettings(
+ Reference< xml::input::XAttributes > const & _xAttributes )
+{
+ importLongProperty( OUString( "ScrollHeight" ),
+ OUString( "scrollheight" ),
+ _xAttributes );
+ importLongProperty( OUString( "ScrollWidth" ),
+ OUString( "scrollwidth" ),
+ _xAttributes );
+ importLongProperty( OUString( "ScrollTop" ),
+ OUString( "scrolltop" ),
+ _xAttributes );
+ importLongProperty( OUString( "ScrollLeft" ),
+ OUString( "scrollleft" ),
+ _xAttributes );
+ importBooleanProperty( OUString( "HScroll" ),
+ OUString( "hscroll" ),
+ _xAttributes );
+ importBooleanProperty( OUString( "VScroll" ),
+ OUString( "vscroll" ),
+ _xAttributes );
+}
+
void ImportContext::importDefaults(
sal_Int32 nBaseX, sal_Int32 nBaseY,
Reference< xml::input::XAttributes > const & xAttributes,