summaryrefslogtreecommitdiff
path: root/sd
AgeCommit message (Collapse)Author
2013-05-10soltools: remove Package_inc and empty unistd.h nonsenseMichael Stahl
Change-Id: Ic05de69951b28b9cc8d62f0a534b507c424e6b25
2013-05-10resolved fdo#35756 import more than 64k HTML table cellsEike Rathke
Enhanced EditEngine to be able to hold more than 64k paragraphs. Used also in RTF import Calc and Writer, so that could benefit as well. * changed all EditEngine,Outliner,... related paragraph index/count variables from sal_uInt16 to sal_Int32 * sal_Int32 instead of sal_uInt32 to match accessibility API * matched some Outliner methods' paragraph parameters from sal_uLong to sal_Int32 * containers capable to hold size_t nevertheless are limited to a maximum of sal_Int32 * changed definition of EE_PARA_NOT_FOUND and EE_PARA_ALL to SAL_MAX_INT32 + added EE_PARA_MAX_COUNT and EE_TEXTPOS_MAX_COUNT to initialize ESelection with what previously were hard coded 0xFFFF all over the place + for similar reason added EE_TEXTPOS_ALL corresponding to EE_PARA_ALL to initialize an ESelection spanning all available text like aSel(0,0,EE_PARA_ALL,EE_TEXTPOS_ALL) Change-Id: I62d1b9c399cd709a4f93dbac31b219a61c46ec00 Reviewed-on: https://gerrit.libreoffice.org/3838 Tested-by: LibreOffice gerrit bot <gerrit@libreoffice.org> Reviewed-by: Eike Rathke <erack@redhat.com> Tested-by: Eike Rathke <erack@redhat.com>
2013-05-10bnc#758621: show preset texts in slide placeholderFelix Zhang
2013-05-10WaE: private field 'pFilenameLab' is not usedTor Lillqvist
Change-Id: I1c68a1fd425d54e2d01ff63580e62dc0fb6416e2
2013-05-09icoverity#705451: comparison of array against NULLMarkus Mohrhard
Change-Id: I544760548866d55807a3291a31b4ce948a751946
2013-05-09Related fdo#35546: Cosmetic fixes for Photo Album DialogSamuel Mehrbrodt
* Display spaces in filenames correctly * Adjust Spacing in Dialog * Remove the label showing the full path Change-Id: I5c5d3d54b7e21063628c4cdb4a92f534ec4a3088 Reviewed-on: https://gerrit.libreoffice.org/3834 Reviewed-by: Andras Timar <atimar@suse.com> Tested-by: Andras Timar <atimar@suse.com>
2013-05-09fdo#56995 Created global option to disable presenter console in Impressmmeof
Changes made are as Follows /officecfg/registry/schema/org/openoffice/Office/Impress.xcs To add the new global checkbox to Libreoffice Impress>General>Start A new xml block for EnablePresenterScreen was added <prop oor:name="EnablePresenterScreen" oor:type="xs:boolean" > /sd/source/ui/app/optsitem.cxx To add the setter/getter for the new checkbox button, namely: SetEnablePresenterScreen IsEnablePresenterScreen EnablePresenterScreen added to index number 26 of: GetPropNameArray() /sd/source/ui/dlg/tpoption.cxx SdTpOptionsMisc() editted to attach EnablePresenterScreen to CBX_ENABLE_PRESENTER_SCREEN aCbxEnablePresenterScreen ( this, SdResId( CBX_ENABLE_PRESENTER_SCREEN)) Also Added to FillItemSet() and Reset() functions /sd/source/ui/dlg/tpoption.src b/sd/source/ui/dlg/tpoption.src enableSdRemote size changed to Size = MAP_APPFONT ( 116 , 10 ) ; Pos = MAP_APPFONT ( 12 , 171 ) ; 158 was correct but 171 was added on request To allow enableSdRemote(CBX_ENABLE_SDREMOTE) and enablePresenterScreen( CBX_ENABLE_PRESENTER_SCREEN) to be drawn adjacent. enablePresenterScreen checkbox CBX_ENABLE_PRESENTER_SCREEN added /sd/source/ui/inc/optsitem.hxx Set default value for enablePresenterScreen as 1 or TRUE sal_Bool bEnablePresenterScreen : 1; Added getter/setter named same as above for interface definition sd/source/ui/inc/tpoption.hrc Defined CBX_ENABLE_PRESENTER_SCREEN as 42nd checkbox #define CBX_ENABLE_PRESENTER_SCREEN 42 /sd/source/ui/inc/tpoption.hxx Added interface declaration of aCbxEnablePresenterScreen which was attached to CBX_ENABLE_PRESENTER_SCREEN /sdext/source/presenter/PresenterScreen.hxx Added interface declaration of bool isPresenterScreenEnabled() to PresenterScreen class to allow presenterscreen to get if the option is checked /sdext/source/presenter/PresenterScreen.cxx Added definition of isPresenterScreenEnabled(const css::uno::Reference<css::uno::XComponentContext>& rxContext) Input : Current Process Context Output : The 0/1 value of EnablePresenterScreen from presenterconfig In PresenterScreenListener::notifyEvent( ) Added if(mpPresenterScreen->isPresenterScreenEnabled(mxComponentContext) mpPresenterScreen->InitializePresenterScreen() To initialize PresenterScreen only when enabled Change-Id: If8242e607323df57d8e78d08cf2129d03c0c9e4f Reviewed-on: https://gerrit.libreoffice.org/3762 Tested-by: LibreOffice gerrit bot <gerrit@libreoffice.org> Reviewed-by: Norbert Thiebaud <nthiebaud@gmail.com> Tested-by: Norbert Thiebaud <nthiebaud@gmail.com>
2013-05-09Resolves: #i121233# Added bitmap scaling methods BMP_SCALE_SUPERArmin Le Grand
added from symphony, also BMP_SCALE_LANCZOS, BMP_SCALE_BICUBIC, BMP_SCALE_BILINEAR and BMP_SCALE_BOX. Changed defaults for internal scalings, enhanced PDF export when reduched DPI is used, added BMP_SCALE_BESTQUALITY and BMP_SCALE_FASTESTINTERPOLATE as new default for Bitmap::Scale (cherry picked from commit bf734a151dc5169b65cf5d2a127e4142b765326c) Conflicts: canvas/source/vcl/canvasbitmaphelper.cxx canvas/source/vcl/canvashelper.cxx sd/source/ui/slidesorter/cache/SlsGenericPageCache.cxx vcl/inc/vcl/alpha.hxx vcl/inc/vcl/bitmap.hxx vcl/inc/vcl/bitmapex.hxx vcl/source/gdi/bitmap3.cxx vcl/source/gdi/impgraph.cxx vcl/source/gdi/pdfwriter_impl2.cxx vcl/source/helper/canvasbitmap.cxx (cherry picked from commit 593c86280b64d97725adde0c0a0cc4f090fb2310) Change-Id: I41cf0a7e11bdbc6510e22e762486420995ba739b
2013-05-09Related fdo#35546 Improve Layout of "Insert Photo Album" DialogSamuel Mehrbrodt
No Objections from the Design list: http://nabble.documentfoundation.org/Streamlining-the-Photo-Album-Creator-td4054397.html Change-Id: Ib880023b956c6d94d8110829d0c32281854a0705 Reviewed-on: https://gerrit.libreoffice.org/3833 Reviewed-by: Andras Timar <atimar@suse.com> Tested-by: Andras Timar <atimar@suse.com>
2013-05-08make clear that this is a false positive reportMarkus Mohrhard
2013-05-08svx: remove Package_sdiMichael Stahl
Change-Id: I0c648ca1b1f3cc22244d660e032bacbdbe0f642e
2013-05-08sfx2: remove Package_sdiMichael Stahl
There are just a handful of sdi files in sfx2 anyway so just put sfx2/sdi on include path. Change-Id: Ia9be889a63ba9a2f330b505613ae38158a4b7bdf
2013-05-07oox: remove Package_generated and Package_tokensMichael Stahl
Change-Id: Iab5eb4fbfecea905f4eeb9f1b1f503c1908dadc8
2013-05-07officecfg: remove Package_cppheaderMichael Stahl
Instead include generated headers directly from workdir. Change-Id: I9d2bcc07175d2bbc16d3cc548c2245e7a4fb0c65
2013-05-07Up-cast conversion constructor for css::uno::ReferenceStephan Bergmann
Based on a previous patch by Noel Grandin, <https://gerrit.libreoffice.org/#/c/3613/>, and borrowing from boost::is_base_and_derived (see comment in include/com/sun/star/uno/Reference.h) to avoid including Boost headers in URE headers. Change-Id: Iade5af144dd73ef03bd7d96000134c7a66a5e591 Reviewed-on: https://gerrit.libreoffice.org/3699 Tested-by: LibreOffice gerrit bot <gerrit@libreoffice.org> Reviewed-by: Stephan Bergmann <sbergman@redhat.com> Tested-by: Stephan Bergmann <sbergman@redhat.com>
2013-05-07bluez_bluetooth: remove Package_incMichael Stahl
Change-Id: I1168fca3ad3091f9562dfe25aee45329ebbb4988
2013-05-06fix typos (wich instead of which)Philipp Riemer
2013-05-04install impress xml config files using filelistsDavid Tardon
Change-Id: I072d5283f979b42ffbd359575209c09cf445b6df
2013-05-04add more description about sd module and important presentation filtersRadek Doulik
Change-Id: I0a3684c21554a87109e653a5aae9cb53c98c098b
2013-05-03Create Photo Album fixGergő Mocsi
Fixed some UI tweaks in handler function DownHdl: now images can me moved down correctly. Also, made some simplification in handler UpHdl: I've moved forvard the declaration of local variable nActPos. Change-Id: I879a6394865bb8442c0621dc2789efd9eedae87c Reviewed-on: https://gerrit.libreoffice.org/3759 Reviewed-by: Andras Timar <atimar@suse.com> Tested-by: Andras Timar <atimar@suse.com>
2013-05-03Create Photo Album fixGergő Mocsi
Fixed some pointer issues in CreateHdl function. Removed the creation of title slide. Added an enum to access the image layout option from the code. Change-Id: Ib91fbbf3b068453c8e66b8df1ce32e24c3828bc0
2013-05-03remove unused resources and add some mnemonic widgetsCaolán McNamara
Change-Id: Ie6331aa0551da5e6617b8bf407126aa3838031ec
2013-05-03Forgot about the dialog titleKatarina Behrens
Change-Id: I35d6b0652eee9ea99bbe48e067802c119ed4c56d
2013-05-02Converted define custom slide show dialog to .uiKatarina Behrens
Change-Id: I6bb6bcb96993d05cc225da63c56cbb7fbad83ec2
2013-05-02fix comment to use our bug-tracking markup syntaxCaolán McNamara
Change-Id: I2cddfc6b36dfef22dc5f17b94b8732e0646eff02
2013-05-02Let's avoid adding new pointless commentsTor Lillqvist
Surely *any* line of code that frees memory could have a comment "[avoid] memory leak", lol. Such comments are pointless. Change-Id: I4394db9423fa1470bbe7912519b6fd99ca91101c
2013-05-02Resolves: #i120050# memory leak when SdrObject is removed from master pageAndre Fischer
Patch by: ChaoHuang Review and minor changes by: Andre Fischer (cherry picked from commit aee07d48ed6a24ffd4b4dac73236fb3a3ec5e800) Change-Id: If3735c82dc2d02965fa0403c3adf549e4e6e8c26
2013-05-01install webview files using filelistDavid Tardon
Change-Id: Ib4501e1171f3940a6909ce4f0c05a669d708b93a
2013-05-01convert message box return types to an enumCaolán McNamara
Change-Id: I20889dc94aac1119c1ee9da873ce911887c1c335
2013-04-30sdremote: protcol debug for send to match that for recv.Michael Meeks
Change-Id: If2840336513772238ec43a9859d47a6e2a315e05
2013-04-30Convert find & replace dialog to .uiCaolán McNamara
Change-Id: Ib5637a3601fc77588b2bd581f17dc6bcb36290db
2013-04-30findandreplace.ui widgetAlia Almusaireae
Change-Id: Ie1749714537182db6dec418db64ab4f945e7323e Reviewed-on: https://gerrit.libreoffice.org/3654 Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
2013-04-29adapt code to duplicate object dialogCaolán McNamara
Change-Id: I2555dc113b2fb4c77bec187b15f0bb545811b07b
2013-04-29Duplicate Dialog Widget .uiManal Alhassoun
Change-Id: I7a4f782235a23f50bceaef041a92e42e47860a78
2013-04-29adapt code to use snap object dialog .ui conversionCaolán McNamara
Change-Id: I181c87f8406f095bd4dc499b47d91081f58aaf59
2013-04-29New Snap Object Widget .uiManal Alhassoun
Change-Id: I801f4af269efcea91bc3bafbfc9e0b9033488f2d Reviewed-on: https://gerrit.libreoffice.org/3645 Tested-by: Caolán McNamara <caolanm@redhat.com> Reviewed-by: Caolán McNamara <caolanm@redhat.com>
2013-04-29Update pchAurimas Fišeras
Change-Id: I25140e854458186c7f66aba1baeabd5fadb3e162 Reviewed-on: https://gerrit.libreoffice.org/3655 Reviewed-by: Tor Lillqvist <tml@iki.fi> Tested-by: Tor Lillqvist <tml@iki.fi>
2013-04-28Bin CLOOK comments and un-split one large switch statementTor Lillqvist
CLOOK = "Compiler Limit: Out Of Keys", an error reported by Microsoft's compiler a long time ago. No such problem in those versions we support. No need to mention CLOOK in comments any more. While at it, re-combine one large switch statement that was split to avoid CLOOK. Change-Id: Id93d973a5fb3c81b6c754eef0ba3b0bd55a649d2 Reviewed-on: https://gerrit.libreoffice.org/3640 Tested-by: LibreOffice gerrit bot <gerrit@libreoffice.org> Reviewed-by: David Tardon <dtardon@redhat.com> Tested-by: David Tardon <dtardon@redhat.com>
2013-04-27remove now unused src Dialog resourcesCaolán McNamara
Change-Id: I2aadd2a7e643f2598da9ed474e47ece02208297f
2013-04-26Fixed crash on deleting custom slide showKatarina Behrens
Create a custom slide show in Impress, attempt to delete it -> crash STL vector::erase returns an iterator pointing to the next element i.e. not the element we want to remove, evtl. invalid end iterator Change-Id: Ie3758fc1ae5fc5f2a934cd8bed3de4e84a0b841b
2013-04-26Converted custom slide shows dialog to .uiKatarina Behrens
Change-Id: Ica0361a45a00f45fd4767d5de37bd839567a469d
2013-04-26Better wording for Impress "Start from first/current Slide"Samuel Mehrbrodt
The menu is now: Slide Show Start from first Slide Start from current Slide ... instead of: Slide Show Slide Show Slide Show From This Slide ... I also changed the recently introduced function name/uno command for "Start from current Slide". This should make no trouble, since this function has not seen a release so far. Change-Id: I248c9d63ec28071b2887f89912aa90fa1e4afcb5 Reviewed-on: https://gerrit.libreoffice.org/3604 Reviewed-by: Fridrich Strba <fridrich@documentfoundation.org> Tested-by: Fridrich Strba <fridrich@documentfoundation.org>
2013-04-25fdo#46808, Convert some XMultiServiceFactory to XComponentContextNoel Grandin
Change-Id: I1dcfee9fa0fdc4457754396ffb52cc8462f3906a
2013-04-25fdo#46808, Convert animations::AnimateMotion to new styleNoel Grandin
The service already existed, it just needed an IDL file Change-Id: I30cfa80fee436ed859d5bc00d1cb23e465c7e149
2013-04-25fdo#46808, Convert animations::Command to new styleNoel Grandin
The service already existed, just needed an IDL file Change-Id: I5e6449522ce77c36df1857213bd028336c3354bf
2013-04-25fdo#46808, Convert animations::Audio and IterateContainer to new styleNoel Grandin
The services already existed, they just needed IDL files Change-Id: I4e3389abb2cb0e41c9bab112cda2a7e896eb271d
2013-04-25fdo#46808, Convert animations::AnimateColor and AnimateSet to new styleNoel Grandin
The services already existed, just needed IDL files Change-Id: Ifc1980160b8472bc9bf96a36ca4bff2c4153a8b1
2013-04-25fdo#46808, Convert some XMultiServiceFactory to XComponentContextNoel Grandin
Change-Id: If7cc52ffeb35efe0969876a9822106b1fd958b10
2013-04-25update pchThomas Arnhold
Change-Id: I67e73438312f2a672e71762ee6707ec5d425bb47
2013-04-25fdo#46808 Convert awt::Pointer to new styleNoel Grandin
Change-Id: Ic2ff491e656ab7bcf0bd5994b601818a26478243