summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2014-09-17callcatcher: update unused codeCaolán McNamara
Change-Id: I2ddda0600ee876e9886ee3221f0ac5ad515fbd22
2014-09-17Don't manually set the SvxColorWindow sizeTomaž Vajngerl
Change-Id: Idd5ba4480c5323fb15dbb4c850b46e3f0604737b
2014-09-17Adjust color window UI & align with FloatWindow changesTomaž Vajngerl
Change-Id: I6a402bf29af6edc153e661b28e53166c509823af
2014-09-17Add svxlo-SvxColorValueSet to the glade catalogTomaž Vajngerl
Change-Id: I2f6e9e7dbca3b2cd8a7d712c5516b526ddda83b8
2014-09-17SFX_ITEM_SET to SfxItemState::SETTomaž Vajngerl
Change-Id: I95dc8872d702cbe63d5fdab10a9ddd0e86d49e06
2014-09-17Add recent colorsKrisztian Pinter
Change-Id: Id6b2239149bf7d0b3c9242efb7a72091e32c3384
2014-09-17Make small UI tweaks to SvxColorWindow_ImplKrisztian Pinter
Change-Id: I604cbf8ca6f7ebb14c1c95e62f997c3150370119
2014-09-17Remove redundant class SvxLineColorToolBoxControlKrisztian Pinter
Change-Id: I882ee959baae429307218d3076a2a198ff960ddd
2014-09-17Make .soc loading lazyKrisztian Pinter
Change-Id: If7475d6c46faaa6f6f6cde494990e6573b3aadff
2014-09-17Change vector<Palette*> to ptr_vector<Palette>Krisztian Pinter
Change-Id: I1f2832235e8d2ea3517efdce809970ed5f1c6769
2014-09-17Make color picker apply color immediatelyKrisztian Pinter
Change-Id: I38695a43ced63bd5207b631a072231d81aa7e0f9
2014-09-17Change palette selection ComboBox to ListBoxKrisztian Pinter
Change-Id: Id844781c06e37d66f3eebac9d905c58a62682cb0
2014-09-17Make it easier to add new color attributes to GetDocColorsKrisztian Pinter
Change-Id: I2098892fc44c7a8bde1eb30f6db1709e58925577
2014-09-17Change NamedColor to use OUStringKrisztian Pinter
Change-Id: Id84d761b33f12dfc50f980e61ab44565693f2e5a
2014-09-17Fix build errorKrisztian Pinter
Change-Id: I5c992189dc21683fc9e5244f4824d7c42e4ed9cd
2014-09-17Add loading .soc palettesKrisztian Pinter
Change-Id: Ie0d084a70d9b135658840bb7529f2099a702d280
2014-09-17Add SvxLineColorToolBoxControl functionality to SvxColorToolBoxControlKrisztian Pinter
This is the first step in merging SvxLineColorToolBoxControl into SvxColorToolBoxControl. Change-Id: I6a725fef5f9a08524d509b70de15c7a0202e7ed6
2014-09-17Convert SvxColorWindow_Impl to Widget LayoutKrisztian Pinter
Change-Id: I8c830de56892fd8eb1c14add25f65c25046d47fd
2014-09-17Move palette selection ComboBox to top of popup windowKrisztian Pinter
Change-Id: Iff958cc8d2ef301a43db406aa38dd446bb2242a5
2014-09-17Change SvxColorWindow_Impl to use ComboBox for palette selectionKrisztian Pinter
Change-Id: I0fb9b46298f45bbdf9ae9198c145b9ea5e403bbf
2014-09-17Reduce ColorValueSetMaximumRowCount to 20 from 40Krisztian Pinter
Change-Id: Id37698c20e5ded3034b62b753d25964541643fd7
2014-09-17Add color picker to color paletteKrisztian Pinter
Change-Id: I651f485598ee57af815780e234031f101b63fa24
2014-09-17Fix variable and method namesKrisztian Pinter
Change-Id: I2f02dbeaa61e959d9420410100c6e958580a6567
2014-09-17Fix SvxColorWindow_Impl::StateChanged updatingKrisztian Pinter
Change-Id: Ifb884f8830280d44ea3c73caf319109593bbebf9
2014-09-17Add PaletteManager, refactor palette codeKrisztian Pinter
Change-Id: I7e30fc895834318514b51bc648d32aa6d297bfae
2014-09-17Add GIMP palette loading codeKrisztian Pinter
Change-Id: Ie0d0787342bc806a1848cb904114f0ca16c9df69
2014-09-17Add loading document colors to CalcKrisztian Pinter
Change-Id: I06783b04dbbad2aa690820af1ca2cf05a1004f20
2014-09-17Get more color attributes for document colors in WriterKrisztian Pinter
Change-Id: I2005b434f20a56417105c7b26ce09155a7023023
2014-09-17Code cleanupKrisztian Pinter
Change-Id: Ib452a5cd716ef243e04f498d2fa23d0d389865c0
2014-09-17Add ability to switch between default and document colorsKrisztian Pinter
Change-Id: Ice8d58028a531b37d2c03fdc3e55eea850c53d44
2014-09-17Add navigation buttons to SvxColorWindow_ImplKrisztian Pinter
Change-Id: I346af872f78396d51a458539f7d3038fc63dad8e
2014-09-17Remove unnecessary includeKrisztian Pinter
Change-Id: I46c7af376aacb824a0d4298674423cc227b592f3
2014-09-17Add writer document font colors to color palettesKrisztian Pinter
Change-Id: If3fedc45586eee068c40e92da87d5d550a456a64
2014-09-17fdo#81237: 2D OpenGL charts was upside-downZolnai Tamás
The problem is that LO drawinglayer uses a coordinate system with an origin at the top-left corner of the screen, while OpenGL uses a complete coordinate system (with all four quarters, e.g.: allows negative values). The points in LO are always positive values which means they are drawn in the first quarter of the OpenGL coordinate system which also means that the origin is at the bottom-left corner of the scene. This difference causes the flipped scene. * To solve that problem scale the projection matrix with -1.0f along the y axis. * glDisable(GL_CULL_FACE) is necessary to avoid dropping primitives after scaling with -1.0. * Since projection matrix mirrors also the textures we don't need to do that inside the ConvertBitmapExToRGBATextureBuffer() method. Change-Id: Ieba642f3e665778a12368fe50a20865ec8f73514
2014-09-17bnc#584721: Import subtitle block to master slidesZolnai Tamás
For some reason subtitle block was skipped for layouts. It seems we can enable it for layout too, it appears well on master slides. Change-Id: I23ec7d4fcce045099bfca9e94a8c9335beaf7468
2014-09-17bnc#584721: Do not add extra title and outliner blocks to master slideZolnai Tamás
There are master slides / layouts imported from PPTX in which there is no title or body layout block, but so far Impress added these by default to the master slides if they were missing. Now they are skipped by the importer code. Change-Id: I256a4e78639ea39d0f87a94e6676422c7dbcde4a
2014-09-17bnc#584721: Right text inside the title area on master pageZolnai Tamás
With setting bClearText to true the default text used inside LO will be removed. Before that change the imported text was appended to the end of the LO default text. Now it contains only the imported text. Change-Id: I9f5eb0e20468a35c64130a433367cd3845ac7e3c
2014-09-17vcl menu: Add the height setting to the IMenuBarWindow interface.Jan Holesovsky
Change-Id: I7b5f6e1b79f9972e2f23ed50c8da53874ad8b55e
2014-09-17attempt to fix Android buildbotNoel Grandin
it seems to have issues with a < token followed by a :: token. Change-Id: I8cc6a5b6cf00a233182de273ab6aa8609326aca9
2014-09-17bean: unchecked call to getMethod() as a member of the raw type ClassRobert Antoni Buj i Gelonch
http://docs.oracle.com/javase/tutorial/reflect/class/classTrouble.html Change-Id: Ib548b47c412394e1518fea42b83d05a36c1655c8 Reviewed-on: https://gerrit.libreoffice.org/11477 Reviewed-by: Noel Grandin <noelgrandin@gmail.com> Tested-by: Noel Grandin <noelgrandin@gmail.com>
2014-09-17bean: Array concatenated with a StringRobert Antoni Buj i Gelonch
http://docs.oracle.com/javase/1.5.0/docs/api/java/util/Arrays.html#toString(java.lang.Object[]) Change-Id: I42090bf534a9a59fa97061ec2855f79328b1dd45 Reviewed-on: https://gerrit.libreoffice.org/11478 Reviewed-by: Noel Grandin <noelgrandin@gmail.com> Tested-by: Noel Grandin <noelgrandin@gmail.com>
2014-09-17bean: encode(String) in URLEncoder has been deprecatedRobert Antoni Buj i Gelonch
Change-Id: Ife3eaaaad199e79aeb6886a146324ffb145c7bc3 Reviewed-on: https://gerrit.libreoffice.org/11476 Reviewed-by: Noel Grandin <noelgrandin@gmail.com> Tested-by: Noel Grandin <noelgrandin@gmail.com>
2014-09-17jni_uno: string comparisonRobert Antoni Buj i Gelonch
Change-Id: If093afb43f6ad8d4fcf6c0ec426eb48a6061ef3e Reviewed-on: https://gerrit.libreoffice.org/11470 Reviewed-by: Noel Grandin <noelgrandin@gmail.com> Tested-by: Noel Grandin <noelgrandin@gmail.com>
2014-09-17cppu and cppuhelper: loplugin: cstylecastNoel Grandin
Add a macro in include/cppuhelper/implbase_ex.hxx to make initialising the type_entry classes a little less verbose. Change-Id: I0904b5b9db269c92bc89e7ce3d6c8b09350c9897
2014-09-17Use SAL_INFOStephan Bergmann
Change-Id: Ie84aa24fc7b2d58dbb4f22ef063dfd055f32ae85
2014-09-17Fix OFFICE_PROGRAM_PATH for new Mac OS X layoutStephan Bergmann
Change-Id: Id8c6082b4b90c3020e1187dd311f0afd0320d155
2014-09-17Remove obsolete -malign-natural on Mac OS X from SDK, tooStephan Bergmann
...causes "clang: error: unknown argument: '-malign-natural' [-Wunused-command-line-argument-hard-error-in-future]; clang: note: this will be a hard error (cannot be downgraded to a warning) in the future" at least with "Apple LLVM version 5.1 (clang-503.0.40) (based on LLVM 3.4svn)", and last mention of -malign-natural in solenv/gbuild was removed with 4ea84822b1b638a61495af5006041bea8db8a3eb "OSX: drop -malign-natural flag for non-clang compilers." Change-Id: I0db1de484e45ba3eddf113392da71f20d099e9b5
2014-09-16typoStephan Bergmann
Change-Id: Ie883b12392ae5361d29fa0991edf42d13027891f
2014-09-16Remove shadows in tabs to make them look more flat.Tomaž Vajngerl
Change-Id: I7c125c10538a641ec723d95be987ad77cdebc9ba
2014-09-16Make tab label padding dependent on font height.Tomaž Vajngerl
Change-Id: I7de52945bdf3062174b49e12e2f05075632c7e4a