import com.sun.star.accessibility.XAccessible; import com.sun.star.accessibility.AccessibleEventObject; import com.sun.star.accessibility.AccessibleEventId; import com.sun.star.accessibility.AccessibleTableModelChange; import com.sun.star.uno.UnoRuntime; import java.io.PrintStream; class TableEventHandler extends EventHandler { public TableEventHandler (AccessibleEventObject aEvent, AccessibilityTreeModel aTreeModel) { super (aEvent, aTreeModel); } public void PrintOldAndNew (PrintStream out) { switch (mnEventId) { case AccessibleEventId.TABLE_MODEL_CHANGED: AccessibleTableModelChange aModelChange = (AccessibleTableModelChange)maEvent.NewValue; out.println( "Range: StartRow " + aModelChange.FirstRow + " StartColumn " + aModelChange.FirstColumn + " EndRow " + aModelChange.LastRow + " EndColumn " + aModelChange.LastColumn + " Id " + aModelChange.Type); break; default: super.PrintOldAndNew (out); } } public void Process () { maTreeModel.updateNode (mxEventSource, AccessibleTableHandler.class); } private XAccessible mxOldChild; private XAccessible mxNewChild; } stro/cib/libreoffice-5-0 LibreOffice 核心代码仓库文档基金会
summaryrefslogtreecommitdiff
path: root/ios/experimental/TiledLibreOffice/TiledLibreOffice
AgeCommit message (Expand)Author
2016-04-12remove that unused old codeMarkus Mohrhard
2015-12-07Let LIBO_INTERNAL_ONLY imply LOK_USE_UNSTABLE_APIMiklos Vajna
2015-03-24Bin obsolete commentTor Lillqvist
2015-03-20Drop paintTile's row stride output parameter that nobody is interested inTor Lillqvist
2015-02-04Use LibreOfficeKit in the TiledLibreOffice iOS demo app, tooTor Lillqvist
2015-01-29Only list documents directly in NSDocumentDirectoryTor Lillqvist
2014-08-13Add code to test encryption and export to .docx on iOSTor Lillqvist
2014-04-14Avoid NSLogging when not debuggingTor Lillqvist
2014-04-12Mmap in the ICU data file and pass it to udata_setCommonData()Tor Lillqvist
2014-04-07Add somewhat ridiculous debug hacks for CoreGrahics drawing debugging on iOSTor Lillqvist
2014-04-04Use tile coordinates for the DRAW_ONLY_TILE functionalityTor Lillqvist
2014-03-31Bin a few since long commented-out linesTor Lillqvist
2014-03-31Add possibility to show tile numbers and render just one tileTor Lillqvist
2014-03-18Add simple document selector to TiledLibreOfficeTor Lillqvist
2014-03-18Enable one more level of zooming in, just for funTor Lillqvist
2014-01-01Use native-code.py generated code also for iOS.Matúš Kukan
2013-12-20Don't need Base, Calc, Draw and Math functionality here for nowTor Lillqvist
2013-12-20Improve the tiles per second calculationTor Lillqvist
2013-12-20Add tiles per second counter (averaged over last five seconds)Tor Lillqvist
2013-12-19Further minor tweaks to TiledLibreOfficeTor Lillqvist
2013-12-19Deduplicate more components.Matúš Kukan
2013-12-19fix typoMatúš Kukan
2013-12-19Deduplicate calc components.Matúš Kukan
2013-12-19Deduplicate writer component factories.Matúš Kukan
2013-12-19Deduplicate a lot of common components.Matúš Kukan
2013-12-19Add .component <implementation constructor="..." featureStephan Bergmann
2013-12-19Adapt TiledLibreOffice to the new library name to component mapping APITor Lillqvist
2013-12-18Add a view-only iOS test app using tiled renderingTor Lillqvist