When working with LibreOffice Impress, “Slide Master” is the place where you can change the templates used for different types of the slides used in your presentation. Here we discuss a possible improvement for the “Slide Master” by making the copy from master slides possible. (more…)
Make Impress master slides copyable – difficulty interesting EasyHack
gbuild for Java tests – LibreOffice build system part 3
gbuild tips and tricks – LibreOffice build system part 2
In the first blog post on LibreOffice build system, gbuild
which uses GNU Make, I discussed some of the features of it. Here I discuss more about some gbuild tips and tricks that you may need. (more…)
Outlook for the new year 2024
Now that year 2024 has come, I want to briefly discuss the year 2023 around the development blog, and the outlook for 2024 here. (more…)
Custom string literals: two EasyHacks
In the previous part of the series on C/C++ strings, I described the string literal, plus how and why to use them. Then I introduced the new custom string literals and their benefits: (more…)
LibreOffice extensions with Python – part 2: Debugging
In my previous blog post on creating LibreOffice extensions with Python, I have discussed how to write a Python code that works with LibreOffice API, and can be run and debugged in an IDE, and packed later in an extension. Now I discuss how to debug the Python code. (more…)
LibreOffice extensions with Python – part 1
Ever wondered how to create a LibreOffice extension? Here I discuss how to do that via Python programming language. It is possible to run and debug the resulting Python code in an IDE, and then package the content as an extension. (more…)
String literals: C/C++ string data types part 2
In the first part of the series on string types in LibreOffice, I discussed some of the string data types that are in use in various places of the LibreOffice code. I discussed various character and string data types briefly: OString
, OUString
, char
/char*
, sal_Unicode
, sal_Unicode*
, rtl_String
, rtl_uString
and also std::string
. Now I want to explain string literals. (more…)
Integer data types improvement – EasyHack
Many different data types are used in LibreOffice code. During the long history of the LibreOffice, and before that in OpenOffice, there were integer data types that are no longer in use today. The task I discuss here is to choose appropriate data types to use instead of sal_uLong
and similar deprecated integer data types. (more…)
UNO API error reporting improvement – EasyHack
In this blog post, I discuss the EayHack for improving UNO API error reporting. EasyHacks are good if you want to become familiar with LibreOffice programming, and this specific task is a good choice for beginners as it is a difficultyBeginner task. (more…)