I have to send 48 Bytes of Data to controller via Qtcpsocket. I have represented each Bit in a Byte as a Button in QML. So whenever the user clicks the button, I have to set the Corresponding Bit to true/false and immediately send the entire 48 Bytes of data. I have so many buttons(Bits) in so many QML files. How to detect which button has been pressed and immediately set the corresponding Bit? How to get the Object in qml ? What i have done is emitting a signal in the Bit when button is pressed. Now confused how to pass it to the backend c++ on to the sockets because then i would have so many signals. I feel like it’s not a proper way to do. Any smart / better solution or similar example would be really helpful.Thanks
1
There are 1 best solutions below
Related Questions in C++
- C++ using std::vector across boundaries
- Linked list without struct
- Connecting Signal QML to C++ (Qt5)
- how to get the reference of struct soap inherited in C++ Proxy/Service class
- Why we can't assign value to pointer
- Conversion of objects in c++
- shared_ptr: "is not a type" error
- C++ template using pointer and non pointer arguments in a QVector
- C++ SFML 2.2 vectors
- Lifetime of temporary objects
- I want to be able to use 4 different variables in a select statement in c ++
- segmentation fault: 11, extracting data in vector
- How to catch delay-import dll errors (missing dll or symbol) in MinGW(-w64)?
- How can I print all the values in this linked list inside a hash table?
- Configured TTL for A record(s) backing CNAME records
Related Questions in QT
- C++ template using pointer and non pointer arguments in a QVector
- Using QPointer and QObject::connect with C++11
- qt How to style a QToolBar > QToolButton overflow button?
- Qt - Repeatedly write at beginning of file
- C++ Mongodb driver, not working
- deletion and cleanup of worker thread in Qt crashes
- How to drap item from QTableView to QPushButton?
- get image type from qimage
- C++ QT Getting part from QString
- How to connect a destroyed signal of C++ object from QML?
- How to get shader version from QOpenGLShader?
- Size of Qt QRadioButton able to get smaller, but not larger than default
- error WinSock.h has already been included Boost Windows Qt
- How to call a non-class member function with pointers as parameters with QtConcurrent::run?
- What is the difference between MinGW SEH and MinGW SJLJ?
Related Questions in MOUSEEVENT
- Mouse press event called twice
- How to create a boolean local variable as a result of MouseEvent?
- Detect mouse clicks on circles on HTML5 canvas
- How to detect whether touch slide is taking me out of browser window on tablets?
- Mouseenter fired multiple times in Firefox after moving node to another place in DOM
- how to implement mousemove after mousedown using js
- Strange text output of e.getSource() on MouseEvent e
- Event "While Button is Pressed"
- PsychoPy Recording Multiple Mouse Clicks
- how to implement mousemove while mouseDown pressed js
- how to avoid flickering on mouseenter event in jquery?
- How to check if key pressed when clicked event in java
- In WPF how can I control whether another button clicked
- How do I receive the MouseWheel event when mouse pointer is not in the window?
- how to avoid mouse event conflict with timer
Related Questions in QML
- Connecting Signal QML to C++ (Qt5)
- How to connect a destroyed signal of C++ object from QML?
- QML Dialog is broken?
- how to connect the signal to slot in pyqt5 and qml?
- QML Canvas.requestAnimationFrame explodes
- QTimer::singleShot equivalent for QML
- Changing model doesn't affect ComboBox
- setting wrapMode property of Text in ScrollView
- where and what to learn to use Qt5?
- Qt5/QML Displaying a custom route on a map
- Qt application disappears
- QtQuick2 - QML reusable item focus changes when selecting/clicking outside/inside of root item
- QML window resize/move flicker
- QQmlPropertyCache: QQuickItem has FastProperty class info, but has not installed property accessors
- Qt application trying to load platform plugin "xcb" instead of "eglfs"
Related Questions in QT-QUICK
- Developing multi page app like Viber interface using Qt Quick?
- Is it possible to deploy a Qt Quick application without Qt Network on OS X?
- QML window resize/move flicker
- Event filter in QML
- Align horizontalcenter in Column
- Qt Creator doesn't display QML folder
- DPI-independent constant size in QML
- QML Drag and Drop (free positioning)
- Measuring elapsed time in QML
- `Screen.pixelDensity` equals 0 in non-visual components
- Qt Quick GridView changes scroll position when sorted
- Is it possible to create GUI that looks like Mac in Qt?
- Animation of y position for a Column centerd in parent
- QtQuick Templates popup vs QtQuick Controls popup
- Non-system windows in QML
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
I don't exactly understand from you code what are you trying to do but may be this example can help:
Byte.qml
main.qml
I use here 6 bytes to just bring up the idea. All you need is just to send it to C++ instead of printing it out to console. Intergrating QML and c++ is widely described in the Internet. You can start from here