Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support finding children in properties #2

Merged
merged 1 commit into from
Jul 22, 2019

Conversation

LubosD
Copy link
Contributor

@LubosD LubosD commented Jul 17, 2019

I'm not sure if you'll like this conceptually...

I'm trying to solve a problem of accessing objects "hidden" behind StackViews/Loaders, because findChild() cannot see them.

This adds support for using property names in paths - for example: myApp/stackView/.currentItem/someButton

@faaxm
Copy link
Owner

faaxm commented Jul 22, 2019

Could you elaborate on where this is needed for Loaders? There is an example in Spix where the property of an item inside a Loader is queried and that seems to work fine and the items loaded by the Loader are part of the tree searched by findChild(...).

Do you have a different usecase?

In general I do like this syntax. Also thought about introducing [...] to reference indexed items (e.g. in a repeater) like mainWindow/repeater/[3]/bla, so this is a nice step in that direction.

QQuickItem* repeater = static_cast<QQuickItem*>(root);
subItem = spix::qt::RepeaterChildWithName(repeater, QString::fromStdString(itemName));
if (itemName.compare(0, 1, ".") == 0) {
QVariant propValue = root->property(itemName.c_str() + 1);
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please make this a bit more verbose and do something like

auto propertyName = itemName.substr(1);
QVariant propValue = root->property(propertyName.c_str());

I know this is more inefficient, but I think efficiency is not so crucial in this part of the code.

Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Never mind, I will quickly change this myself and merge this PR.

@faaxm faaxm merged commit be458b8 into faaxm:master Jul 22, 2019
ctmbl added a commit to ctmbl/spix that referenced this pull request May 18, 2022
ctmbl added a commit to ctmbl/spix that referenced this pull request May 23, 2022
Commits msg before squash (older to newer):
Add possibility to find children in CONTEXT properties (extend PR faaxm#2)
Add possibility to get direct contextProperty (which aren't object)
Add better logs for getStringProperty
Add Object and QtObject classes
Change getStringProperty to use spix::QtObject class, regression in getting direct context properties and in error logging
Adapt logs writing and access to context properties to QtObject::stringProperty method
Allow to access to children OF object in context properties by assigning found child to subItem instead of returning
Make QtObject::stringProperty less method-specific by returning logs WITHOUT method name inside
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants