TerabaytusJune 1, 2018, 5:20 a.m.
Как из TextField получить текст в слое С++?
Добрый день, подскажите пожалуйста. В слое QML есть TextField как получить из него данные в С++ при использование данного кода приложение сразу закрывается и пишет в лог
Программа неожиданно завершилась.
Процесс был завершён принудительно.
import QtQuick 2.9 import QtQuick.Window 2.2 import QtQuick 2.6 import QtQuick.Controls 1.4 import QtQuick.Controls 2.1 Window { id: window visible: true width: 300 height: 310 maximumHeight: height maximumWidth: width minimumHeight: height minimumWidth: width title: qsTr("") Connections { target: backend onSendToQml: { console.log("QML " + count); } } TextField { id: textField objectName: "sp" x: 9 y: 36 } Switch { id: control x: 0 y: 0 width: 300 height: 50 text: qsTr("") checked: false onClicked: { backend.setBackend(control); } contentItem: Text { rightPadding: control.indicator.width + control.spacing text: control.text font: control.font opacity: enabled ? 1.0 : 0.3 color: control.down ? "#17a81a" : "#21be2b" elide: Text.ElideRight verticalAlignment: Text.AlignVCenter } indicator: Rectangle { implicitWidth: 48 implicitHeight: 26 x: control.width - width - control.rightPadding y: parent.height / 2 - height / 2 radius: 13 color: control.checked ? "#17a81a" : "transparent" border.color: control.checked ? "#17a81a" : "#cccccc" Rectangle { x: control.checked ? parent.width - width : 0 width: 26 height: 26 radius: 13 color: control.down ? "#cccccc" : "#ffffff" border.color: control.checked ? (control.down ? "#17a81a" : "#21be2b") : "#999999" } } background: Rectangle { implicitWidth: 100 implicitHeight: 40 visible: control.down /*|| control.highlighted*/ color: control.down ? "#bdbebf" : "#eeeeee" } }
#include <QGuiApplication> #include <QQmlApplicationEngine> #include <QQmlContext> #include "backend.h" int main(int argc, char *argv[]) { QCoreApplication::setAttribute(Qt::AA_EnableHighDpiScaling); QGuiApplication app(argc, argv); QQmlApplicationEngine engine; BackEnd backend; QQmlContext *context = engine.rootContext(); context->setContextProperty("backend", &backend); engine.load(QUrl(QStringLiteral("qrc:/main.qml"))); return -1; return app.exec(); }
#ifndef BACKEND_H #define BACKEND_H #include <QObject> #include <QString> class BackEnd : public QObject { Q_OBJECT public: explicit BackEnd(QObject *parent = 0); signals: void sendToQml(int count); private slots: void setBackend(bool control); public: }; #endif // BACKEND_H
#include "backend.h" #include <iostream> BackEnd::BackEnd(QObject *parent) : QObject(parent) { } void BackEnd::setBackend(bool control) { //Найдем строки ввода QObject* field1 = this->parent()->findChild<QObject*>("sp"); //Считаем информацию со строк ввода через свойство text QString str1=(field1->property("text")).toString(); // std::cout << str1 << std::endl ; }
We recommend hosting TIMEWEB
Stable hosting, on which the social network EVILEG is located. For projects on Django we recommend VDS hosting.Do you like it? Share on social networks!
AD
- Akiv Doros
- Nov. 12, 2024, 1:58 a.m.
C ++ - Test 004. Pointers, Arrays and Loops
- Result:50points,
- Rating points-4
m
- molni99
- Oct. 26, 2024, 11:37 a.m.
C ++ - Test 004. Pointers, Arrays and Loops
- Result:80points,
- Rating points4
m
- molni99
- Oct. 26, 2024, 11:29 a.m.
C ++ - Test 004. Pointers, Arrays and Loops
- Result:20points,
- Rating points-10
Last comments
Qt/C++ - Lesson 031. QCustomPlot – The build of charts with time buy generic priligy We can just chat, and we will not lose too much time anyway
Qt/C++ - Lesson 060. Configuring the appearance of the application in runtime I didnt have an issue work colors priligy dapoxetine 60mg revia cost uk August 3, 2022 Reply
Circuit switching and packet data transmission networks Angioedema 1 priligy dapoxetine
How to Copy Files in Linux If only females relatives with DZ offspring were considered these percentages were 23 order priligy online uk
Qt/C++ - Tutorial 068. Hello World using the CMAKE build system in CLion ditropan pristiq dosing With the Yankees leading, 4 3, Rivera jogged in from the bullpen to a standing ovation as he prepared for his final appearance in Chicago buy priligy pakistan
Now discuss on the forum
добавить qlineseries в функции priligy amazon canada 93 GREB1 protein GREB1 AB011147 6
Всё ещё разбираюсь с кешем. priligy walgreens levitra dulcolax carbs The third ring was found to be made up of ultra relativistic electrons, which are also present in both the outer and inner rings
IscanderCheNov. 1, 2024, 1:43 a.m.
Машина тьюринга // Начальное состояние 0 0, ,<,1 // Переход в состояние 1 при пустом символе 0,0,>,0 // Остаемся в состоянии 0, двигаясь вправо при встрече 0 0,1,>…
ИМ
Реализация навигации по разделам Спасибо Евгений!
Игорь МаксимовOct. 3, 2024, 2:05 p.m.
уточню что в функции
есть условиеДобрый день!
Согласен с вами, но видимо не всё так просто сейчас Qt ругается на
а если его за комментировать то пишет