cplusplusqt | Unsorted

Telegram-канал cplusplusqt - C++ & Qt

1220

Link: @CplusplusQt Embedded: @EMBCpp • Allowed Topics: C++ and everything related to Qt • Use only English • No Private Message without asking user's permission • No NSFW • No Spam • No unauthorized Bots • No Offtopic • No Self Promotions

Subscribe to a channel

C++ & Qt

In this video try me cover oops and qt software in once

Читать полностью…

C++ & Qt

window->raise();
window->setFocus();

Читать полностью…

C++ & Qt

Welcome to the group, @w4rd3nclyffe! :-)

Wanna share your story of how you started with Qt, QML or C++? Maybe some nice feature that made you stick with it.
Rules are set on the description of the group. :)

Читать полностью…

C++ & Qt

I'm learning DSA in C++

Читать полностью…

C++ & Qt

Yh I generated it , .py file and imported in the main file application but still didn’t work, I added some debug statements to check the file path but shows it wasn’t found

Читать полностью…

C++ & Qt

anyone help me please?

# test_icon.py

import sys
from PySide6.QtWidgets import QApplication, QLabel, QVBoxLayout, QWidget
from PySide6.QtGui import QPixmap
from qss_style import resources_rc # Import the compiled resources


# <!-- clean/qss_style/resources.qrc -->
# <RCC>
# <qresource prefix="/icons">
# <file>icons/drop_down.png</file>
# <!-- Add more icon files here if needed -->
# </qresource>
# <qresource prefix="/styles">
# <file>style.qss</file>
# </qresource>
# </RCC>

#-- Command---#
# pyside6-rcc resources.qrc -o resources_rc.py


def main():
app = QApplication(sys.argv)

window = QWidget()
layout = QVBoxLayout()

label = QLabel()
pixmap = QPixmap(":/icons/drop_down.png")
if pixmap.isNull():
print("Failed to load icon: :/icons/drop_down.png")
label.setText("Icon Failed to Load")
else:
print("Successfully loaded icon: :/icons/drop_down.png")
label.setPixmap(pixmap.scaled(16, 16)) # Adjust size as needed

layout.addWidget(label)
window.setLayout(layout)
window.show()

sys.exit(app.exec())

if __name__ == "__main__":
main()
icon not working or showing, please download an image online and use it to test for me and fix for me

Читать полностью…

C++ & Qt

anyone help me please?

# test_icon.py

import sys
from PySide6.QtWidgets import QApplication, QLabel, QVBoxLayout, QWidget
from PySide6.QtGui import QPixmap
from qss_style import resources_rc # Import the compiled resources


# <!-- clean/qss_style/resources.qrc -->
# <RCC>
# <qresource prefix="/icons">
# <file>icons/drop_down.png</file>
# <!-- Add more icon files here if needed -->
# </qresource>
# <qresource prefix="/styles">
# <file>style.qss</file>
# </qresource>
# </RCC>

#-- Command---#
# pyside6-rcc resources.qrc -o resources_rc.py


def main():
app = QApplication(sys.argv)

window = QWidget()
layout = QVBoxLayout()

label = QLabel()
pixmap = QPixmap(":/icons/drop_down.png")
if pixmap.isNull():
print("Failed to load icon: :/icons/drop_down.png")
label.setText("Icon Failed to Load")
else:
print("Successfully loaded icon: :/icons/drop_down.png")
label.setPixmap(pixmap.scaled(16, 16)) # Adjust size as needed

layout.addWidget(label)
window.setLayout(layout)
window.show()

sys.exit(app.exec())

if __name__ == "__main__":
main()
icon not working or showing, please download an image online and use it to test for me and fix for me

Читать полностью…

C++ & Qt

Welcome to the group, @IshaqShamraiz! :-)

Wanna share your story of how you started with Qt, QML or C++? Maybe some nice feature that made you stick with it.
Rules are set on the description of the group. :)

Читать полностью…

C++ & Qt

@unknowRecon [6131908980] warned (1 of 2).
Due to: refrain from unauthorized self promotion

Читать полностью…

C++ & Qt

Maybe this is enough, I didn't find where is the source code of Qt for MCU (while it should be accessible, ask to the devs directly I think, which is concerning).

Читать полностью…

C++ & Qt

/report isn't that an add?

Читать полностью…

C++ & Qt

How to download turbo c++

Читать полностью…

C++ & Qt

Hi
I have been a qml / c++ dev for past 1.5 yrs..and here to make connections and interact/ brainstorm ideas

Читать полностью…

C++ & Qt

I learned through a program that it was written in Python and compiled with C++.

Читать полностью…

C++ & Qt

Hello, is it possible to access the source code of an exe file written in Python and compiled with C++?

Читать полностью…

C++ & Qt

https://youtu.be/txRjULLzPDA?feature=shared

Читать полностью…

C++ & Qt

Welcome to the group, -! :-)

Wanna share your story of how you started with Qt, QML or C++? Maybe some nice feature that made you stick with it.
Rules are set on the description of the group. :)

Читать полностью…

C++ & Qt

Really Hard to understand

Читать полностью…

C++ & Qt

Attention Full-stack/Blockchain Developers! If you are interested in exciting opportunities, I would love to talk. Feel free to contact dm

Читать полностью…

C++ & Qt

Do you get an error? Is the resource file generated?

Читать полностью…

C++ & Qt

anyone help me please?

# test_icon.py

import sys
from PySide6.QtWidgets import QApplication, QLabel, QVBoxLayout, QWidget
from PySide6.QtGui import QPixmap
from qss_style import resources_rc # Import the compiled resources


# <!-- clean/qss_style/resources.qrc -->
# <RCC>
# <qresource prefix="/icons">
# <file>icons/drop_down.png</file>
# <!-- Add more icon files here if needed -->
# </qresource>
# <qresource prefix="/styles">
# <file>style.qss</file>
# </qresource>
# </RCC>

#-- Command---#
# pyside6-rcc resources.qrc -o resources_rc.py


def main():
app = QApplication(sys.argv)

window = QWidget()
layout = QVBoxLayout()

label = QLabel()
pixmap = QPixmap(":/icons/drop_down.png")
if pixmap.isNull():
print("Failed to load icon: :/icons/drop_down.png")
label.setText("Icon Failed to Load")
else:
print("Successfully loaded icon: :/icons/drop_down.png")
label.setPixmap(pixmap.scaled(16, 16)) # Adjust size as needed

layout.addWidget(label)
window.setLayout(layout)
window.show()

sys.exit(app.exec())

if __name__ == "__main__":
main()
icon not working or showing, please download an image online and use it to test for me and fix for me

Читать полностью…

C++ & Qt

anyone help me please?

# test_icon.py

import sys
from PySide6.QtWidgets import QApplication, QLabel, QVBoxLayout, QWidget
from PySide6.QtGui import QPixmap
from qss_style import resources_rc # Import the compiled resources


# <!-- clean/qss_style/resources.qrc -->
# <RCC>
# <qresource prefix="/icons">
# <file>icons/drop_down.png</file>
# <!-- Add more icon files here if needed -->
# </qresource>
# <qresource prefix="/styles">
# <file>style.qss</file>
# </qresource>
# </RCC>

#-- Command---#
# pyside6-rcc resources.qrc -o resources_rc.py


def main():
app = QApplication(sys.argv)

window = QWidget()
layout = QVBoxLayout()

label = QLabel()
pixmap = QPixmap(":/icons/drop_down.png")
if pixmap.isNull():
print("Failed to load icon: :/icons/drop_down.png")
label.setText("Icon Failed to Load")
else:
print("Successfully loaded icon: :/icons/drop_down.png")
label.setPixmap(pixmap.scaled(16, 16)) # Adjust size as needed

layout.addWidget(label)
window.setLayout(layout)
window.show()

sys.exit(app.exec())

if __name__ == "__main__":
main()
icon not working or showing, please download an image online and use it to test for me and fix for me

Читать полностью…

C++ & Qt

Thanks. This helps a lot

Читать полностью…

C++ & Qt

/warn refrain from unauthorized self promotion

Читать полностью…

C++ & Qt

Report sent⁣⁣⁣

Читать полностью…

C++ & Qt

Use Qt IDE for C++ .

Читать полностью…

C++ & Qt

Can anyone here point me to the implementation of ArcItem (qml mcus) in github repo...

Читать полностью…

C++ & Qt

Then you'll need to do some reverse engineering, and the data will depend on how it was compiled. I do not think you will ever be able to recover the Python version at all

Читать полностью…

C++ & Qt

How was it compiled? I think it will be hard to recover the actual source code, but you may be able to get something.

Читать полностью…

C++ & Qt

Welcome to the group, -! :-)

Wanna share your story of how you started with Qt, QML or C++? Maybe some nice feature that made you stick with it.
Rules are set on the description of the group. :)

Читать полностью…
Subscribe to a channel