aboutsummaryrefslogtreecommitdiff
path: root/docs/markdown/Qt5-module.md
AgeCommit message (Collapse)AuthorFilesLines
2020-08-25qt module: add qresource support to compile_translationsEli Schwartz1-0/+17
A common pattern in Qt5 applications is to embed translations in the executable using the qresource system. In this case, the list of translation files is already available in the .qrc file and there's no good reason to duplicate this info in meson.build. Let compile_translations optionally take a qrc input, in which case it will go straight to generating the relevant translations and rcc-generated .cpp, and directly return the thing users actually care about -- the .cpp for linking.
2020-06-18docs: replaced `ninja` with appropriate `meson` commands [skip ci]TheQwertiest1-1/+1
2020-03-08qt5: Add has_tools() methodXavier Claessens1-0/+22
2018-10-24module-qt: add rcc_extra_arguments to pass extra arguments to rcc (#4406)xiannox1-0/+1
2018-09-28 Add support for uic_extra_arguments to qt5 (#4178)Salamandar1-1/+2
2018-09-17[skip ci] Add some documentation for PR #3998Alexis Jeandet1-2/+4
Signed-off-by: Alexis Jeandet <alexis.jeandet@member.fsf.org>
2018-05-31Mention private_headers keyword in Qt dependency documentation [skip ci]Jon Turney1-11/+10
Also, put discussion of Qt dependencies *before* the example in the Qt5 module documentation.
2018-05-27[Qt module] private_headers kwarg documentation reformulationAlexis Jeandet1-2/+2
Signed-off-by: Alexis Jeandet <alexis.jeandet@member.fsf.org>
2018-04-30Added Added Qt's private header support with pkg-configAlexis Jeandet1-1/+2
Just use the same approach than qmake to generate private headers path Signed-off-by: Alexis Jeandet <alexis.jeandet@member.fsf.org>
2018-04-28[Qt module] Privates headers: added documentationAlexis Jeandet1-0/+7
Signed-off-by: Alexis Jeandet <alexis.jeandet@member.fsf.org>
2017-11-23[Qt module] Updated Dokerfile, added since 0.44 mention in docAlexis Jeandet1-4/+4
Signed-off-by: Alexis Jeandet <alexis.jeandet@member.fsf.org>
2017-11-23[Qt module] Added translation files compilation methodAlexis Jeandet1-3/+11
- Added a new compile_translations method since preprocess was already quite full and translations compilation is quite different from ui, qrc, cpp files preprocessing. - Updated translation. - Updated test case. Signed-off-by: Alexis Jeandet <alexis.jeandet@member.fsf.org>
2017-10-27documentation: adds new keyword usage to the given example.Leif Middelschulte1-1/+3
2017-10-27adds "since"-note for the new keyword to the documentationLeif Middelschulte1-1/+1
2017-10-27updates the documentation to follow the list-style to explain arguments.Leif Middelschulte1-4/+7
As per to @jon-turney's and @jpakanne's suggestion [0], this commit changes the "prosa" documentation to a list-style one. [0] https://github.com/mesonbuild/meson/pull/2529#pullrequestreview-72265697
2017-10-25Qt5-Module: Add `moc_extra_arguments` keyword support.Leif Middelschulte1-5/+5
This commit adds support for an additional `moc_extra_arguments` keyword. It becomes especially handy, when `moc`-ed sources conditionally provide `slots`, depending on compile time macros (i.e. defines).
2017-10-01Added include directory argument for Qt's Moc which is needed to build plugins.Alexis Jeandet1-3/+5
Signed-off-by: Alexis Jeandet <alexis.jeandet@member.fsf.org>
2017-08-21Wrapped and alphabetized the remaining modules.Jussi Pakkanen1-3/+10
2017-06-22Improve the example by explaining modules (#1981)philtherobot1-1/+4
* Improve the example by explaining modules * Refer to Qt documentation for its list of modules * Add a sweet link to Qt's doc.
2017-04-26docs: Import the website and wiki and build with hotdocThibault Saunier1-0/+15
This allows us to more easily have the documentation in sync with the source code as people will have to document new features etc right at the time where they implement it.