This brings no functional change, but it makes the pkpass handling code
reusable in other places too.
Details
- Reviewers
mlaurent knauss - Group Reviewers
KDE PIM - Commits
- R81:7026f9ecbce2: Switch the pkpass formatter plugin to use KPkPass
Diff Detail
- Repository
- R81 KDE PIM Addons
- Lint
Automatic diff as part of commit; lint not applicable. - Unit
Automatic diff as part of commit; unit tests not applicable.
plugins/messageviewer/bodypartformatter/pkpass/pkpass_plugin.cpp | ||
---|---|---|
105 | why not give grantlee the ability to understand QColor? I mean we already have special lookups and it make sense to have the feature for complete kdepim. |
plugins/messageviewer/bodypartformatter/pkpass/pkpass_plugin.cpp | ||
---|---|---|
105 | How? I did not find a way to add string conversions for custom types externally. And I can't do this in Grantlee itself, as it would add a dependency on QtGui which it currently does not have. |
plugins/messageviewer/bodypartformatter/pkpass/pkpass_plugin.cpp | ||
---|---|---|
105 | use something like this: http://www.grantlee.org/apidox/generic_types_and_templates.html and see messagelib/messageviewer/src/messagepartthemes/default/messagepartrenderermanager.cpp for more examples... |
CMakeLists.txt | ||
---|---|---|
124 | "KPk" is not the namespace here, "K" is. "PkPass" is the name of the file format (and Apple came up with that one, hard to change for me ;-) ). | |
plugins/messageviewer/bodypartformatter/pkpass/CMakeLists.txt | ||
15 | That doesn't seem to be widely used, but I can of course change the library accordingly (it will need to be done there first though). | |
plugins/messageviewer/bodypartformatter/pkpass/pkpass_plugin.cpp | ||
105 | That's for property access to custom types, not for turning a custom type into a string (and it's in use in this file even). This is usable in theory by adding a dummy property such as "name" to QColor, but that is just as clunky as the current solution. What we would want is turning a QColor directly into a string, without any such indirection, and that's the part I haven't found a solution for yet. |
CMakeLists.txt | ||
---|---|---|
124 | A okay- well I parsed the KP as shorthand for kde pim. What about KPimPkPass? | |
plugins/messageviewer/bodypartformatter/pkpass/CMakeLists.txt | ||
15 | that is right - because everyone thought that we need to use the KF5:: namespace. And we didn't wanted to move everything to KPIm:: later on, that's why only new libs using this namespace. | |
plugins/messageviewer/bodypartformatter/pkpass/pkpass_plugin.cpp | ||
105 | can't you can return a default value, if no property is given. In messagelib/messageviewer/src/messagepartthemes/default/messagepartrenderermanager.cpp i needed to write my own lookup functions, maybe the macros are not working for this anymore. |
CMakeLists.txt | ||
---|---|---|
124 | And KPim::PkPass in CMake, yes. Also makes a possible future migration to KF5 easier, "KPim" is easier to search/replace than "K". | |
plugins/messageviewer/bodypartformatter/pkpass/pkpass_plugin.cpp | ||
105 | I don't think this works, as Grantlee seems to use the lookup functions only when encountering a "." followed by a string, for a type with a custom lookup function registered. A custom string conversion function is possible in theory via QMetaType::registerConverter, but that does not accept a conversion between two built-in types, so that also does not help in the case of QColor. |
CMakeLists.txt | ||
---|---|---|
93 | update the name here too | |
plugins/messageviewer/bodypartformatter/pkpass/pkpass_plugin.cpp | ||
27 | either <PkPass or <KPimPkPass to be consitent | |
50 | also rename the classes PkPass::Barcode, PkPass::Field ? | |
105 | I still think that having the .name inside the template is the more clean solution, but well this is only minor personal syntax style. |
plugins/messageviewer/bodypartformatter/pkpass/CMakeLists.txt | ||
---|---|---|
21 ↗ | (On Diff #31285) | you can remove this line too as we don't call update this macro |
plugins/messageviewer/bodypartformatter/pkpass/CMakeLists.txt | ||
---|---|---|
21 ↗ | (On Diff #31285) | Indeed, I'll fix that. |
plugins/messageviewer/bodypartformatter/pkpass/pkpass_plugin.cpp | ||
27 | This now follows the KF5 naming patterns, ie. namespacing the library with "KF5" (or "KPim" here), and namespacing the C++ namespace with "K". I used the pattern you suggest initially in KF5::SyntaxHighlighting, and had to change it to the KSyntaxHighlighting namespace in review. So for consistency I'd follow KF5 here. |