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

hi
I want create tcp server but in my code server.listen() can not be something like "198.168.0.1"

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

C++ & Qt

https://www.ics.com/technologies/qt/qt-based-clients-google-apis

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

C++ & Qt

It's made by some former Qties/Trolls.

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

C++ & Qt

Make a habit to use override keyword

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

C++ & Qt

Is it possible to create QtQuick.Controls Action, which will accept Play/Pause button from keyboard?

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

C++ & Qt

Welcome to the group, @ambition_Anime! :-)

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

Could you try replacing line 2 as below and check

m_printer.pageLayout().setPageMargins(QMarginsF(0,0,0,0));

Also, I don't think any physical printer will be able to accept this margin. It might work for 'print to PDF'. You may check the return value of the setPageMargins() method.

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

C++ & Qt

Also share the Qt version you are using for building for Android. Please ensure there is no error in Android env setup: preference -> devices -> Android

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

C++ & Qt

these charts made with qt ?

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

C++ & Qt

hi anybody know qt graphicsview? how to optimize performance? thank you

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

C++ & Qt

Has anyone made a web3 project on Golang or c++ ?

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

C++ & Qt

https://github.com/OpenHD/OpenHD-Qt

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

C++ & Qt

https://github.com/OpenHD/OpenHD-Qt

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

C++ & Qt

Hello. How can I make qtcreator to copy data files into the shadow build directory from my source files directory? What should I write in the .pro file for that?

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

C++ & Qt

I've built a few small apps myself

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

C++ & Qt

I had the issue with some web related module. Even adding -appstore-ompliant to macdeployqt would include it int rhe package. So eventually I manually deleted the file from the package.
https://github.com/nymea/nymea-app/blob/master/nymea-app.pro#L50

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

C++ & Qt

What do you mean by alternative to UI on Rust? Do you mean an alternative to using QML with Rust?

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

C++ & Qt

https://github.com/slint-ui/slint uses a syntax that's similar to QML
Looks like a good alternative for Rust UI

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

C++ & Qt

or any key, that can be specified via Qt.Key_* constants?

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

C++ & Qt

Simplest way is to use file copies module. The below snippet copies qm files to DESTDIR.

# Add the file_copies module
CONFIG += file_copies

# Add a variable that describes the copied files.
COPIES += translations

# Determine with which extension we need to copy the files and in what way they are located
translations.files = $$files($$PATH_SRC_ROOT/*.qm)

# Specify the path where to copy files
translations.path = $$DESTDIR

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

C++ & Qt

It will be good if you can put a github repo so that everyone can build the same.

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

C++ & Qt

First of all, since 0 is your control character / number., do you need to add to the vector?
For simplicity sake, I am sending you code snippet which ignores 0 and checks vector for strictly decending.


using namespace std;
int main() {
std::vector<int> vec;
int in;
std::cout<<"Enter Number: "
cin>>in;

while(in !=0) {
vec.push_back(in);
cout <<"Enter Number: ";
cin>>in;
}

auto itr = std::adjacent_find( vec.begin(), vec.end() , std::less_equal<int>() );

if( itr == vec.end() )
cout << " Strictly decending ";
else
cout <<" Not strictly decending ";

return 0;

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

C++ & Qt

I rarely build for emulator. Do you see these errors while building for android device?

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

C++ & Qt

my application 's charts use qt graphicsview ,but add more than 200 items,it's performance issue

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

C++ & Qt

hallo! I get these messages when I build my Android app. Could u please suggest me on how to solve this problem.
Compiler: Clang 6.2.0 armebi-v7a
Emulator: Pixel-3-API-30
OS: Windows 10 - Enterprise Ed.
Android 11 (R) x86-64

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

C++ & Qt

What are the stack to making web3 project.

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

C++ & Qt

https://github.com/OpenHD/OpenHD-Qt

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

C++ & Qt

Hello. How can I install qt6 examples on Ubuntu?

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

C++ & Qt

Hello. How can I make qtcreator to copy data files into the shadow build directory from my source files directory? What should I write in the .pro file for that?

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

C++ & Qt

https://github.com/woboq/qmetaobject-rs

is very straightforward for qtquick apps in Rust

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