cplusplusqt | Unsorted

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

1169

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

Can you print the values (instead of creating your object)?

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

C++ & Qt

But why?? Why would a single line make Qt creator go nuts?

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

C++ & Qt

hey guys. I really don't know how to formulate this question correctly.. But here's what's happening. I'm writing a non-Qt program. It's a bit heavy on computations, but I'm not doing any multithreading and I'm not using external libraries so no multithreading should be happening at all. Likewise, I'm not working with files, etc. Just vectors and algorithms revolving these vectors. But these vectors aren't getting big either. Now, in main.cpp when I run my code it all works fine, then if at the bottom I add the following snippet:

    SimsGenerator<n+m> simsC;

When running Qt creator gives this error:
qtc.process_stub: Inferior error:  QProcess::Crashed "Process crashed"

Terminal process exited with code -1073741571

So now, it really makes 0 sense. It gives this error before even reaching the added part of the code. Because the code before that should take some time running whereas I get this error just a couple of seconds in. Which means it shouldn't be like a segmentation fault for example. In other words the problem shouldn't be with my code. Moreover, all the constructor of that class does is build a small std::array matrix and it's not even the first time I'm creating a similar object in the scope of int main.

So now I thought, what does the debugger say? And apparently right upon entering int main the debugger gives segfault and the constexpr variables I have in int main have their values messed up. (see in screenshot below)

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

C++ & Qt

What’s your question about inheritance?

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

C++ & Qt

can someone make this il pay you

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

C++ & Qt

im willing to pay monney

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

C++ & Qt

can someone make this

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

C++ & Qt

You can ask your C questions here I assume.

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

C++ & Qt

I was new in C program. Is there any channel please...🙏🙏

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

C++ & Qt

Qt has other possibilities to handle auto variables....

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

C++ & Qt

One situation I prevent using auto for is functions parameters.

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

C++ & Qt

One should never use auto. We never do that.

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

C++ & Qt

https://doc.qt.io/qt-5/qml-qtquick-patharc.html

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

C++ & Qt

You can use a combination of MultiEffect's opacity mask and ConicalGradient.
https://doc.qt.io/qt-6/qml-qtquick-shapes-conicalgradient.html

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

C++ & Qt

Hi am new to qt i have some doubt how to use qface framework and how to create publisher / subscriber model is it really required IVI?

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

C++ & Qt

What is inheritance and it's types with example

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

C++ & Qt

So, given that these constants get messed up it's evident that the program would crash, I mean these constants litterally define the sizes of all the data structures I use.

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

C++ & Qt

We can answer questions, but we will not do your homework for you.

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

C++ & Qt

Can I get the notes of inheritance (c++)

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

C++ & Qt

Beverage machine.

capacity: 20 drinks per compartment, 9 compartments per row, 8 rows.
drinks: 8 types
payment method: notes
payment method: coins
payment method: bank card
There is a number per row and per type of drink.
eg: row 1 = A box1 row1 = A1
keyboard on left or right side.
a container to hold the drink(s).

the drinks fall into a pyramid per row. first one on the left then one on the right

# # # # # # # # #
# # # # # # # # # ->
# # # # # # # # #
# # # # # # # # #

# # # # # # #
# # # # # # # # #
# # # # # # # # #
# # # # # # # # #

# # # # # # #
# # # # # # #
# # # # # # # # #
# # # # # # # # #

# # # # #
# # # # # # #
# # # # # # # # #
# # # # # # # # #

# # # # #
# # # # # # #
# # # # # # #
# # # # # # # # #

# # # # #
# # # # #
# # # # # # #
# # # # # # # # #

# # #
# # # # #
# # # # # # #
# # # # # # # # #

if only 1 row remains, a signal has been sent to the company that manages this beverage machine.
A man will then come and fill them in again.

User goes to the drinks machine and
use the keyboard to choose a drink (So a menu on your screen in C++)
there is a + on the keyboard and then the user can select several drinks one after the other.
Once his choice(s) have been made, the user must choose a payment method.
Coins -> too many: give the rest of the money back -> Coins correct
Coins -> too little: missing money questions (too much? too little? etc...) -> Coins correct
Coins -> correct treat: give drinks

Notes -> Bill scanner, validation -> return coins or perfect amount.

Bank card -> Connection with the bank -> bank validation -> enough money in the bank account (yes/no?) -> if yes then "debit" the total in the bank account otherwise ignore the transaction and notify the user that he can start again or use another payment method.

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

C++ & Qt

i need it for a project

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

C++ & Qt

Beverage machine.

capacity: 20 drinks per compartment, 9 compartments per row, 8 rows.
drinks: 8 types
payment method: notes
payment method: coins
payment method: bank card
There is a number per row and per type of drink.
eg: row 1 = A box1 row1 = A1
keyboard on left or right side.
a container to hold the drink(s).

the drinks fall into a pyramid per row. first one on the left then one on the right

# # # # # # # # #
# # # # # # # # # ->
# # # # # # # # #
# # # # # # # # #

# # # # # # #
# # # # # # # # #
# # # # # # # # #
# # # # # # # # #

# # # # # # #
# # # # # # #
# # # # # # # # #
# # # # # # # # #

# # # # #
# # # # # # #
# # # # # # # # #
# # # # # # # # #

# # # # #
# # # # # # #
# # # # # # #
# # # # # # # # #

# # # # #
# # # # #
# # # # # # #
# # # # # # # # #

# # #
# # # # #
# # # # # # #
# # # # # # # # #

if only 1 row remains, a signal has been sent to the company that manages this beverage machine.
A man will then come and fill them in again.

User goes to the drinks machine and
use the keyboard to choose a drink (So a menu on your screen in C++)
there is a + on the keyboard and then the user can select several drinks one after the other.
Once his choice(s) have been made, the user must choose a payment method.
Coins -> too many: give the rest of the money back -> Coins correct
Coins -> too little: missing money questions (too much? too little? etc...) -> Coins correct
Coins -> correct treat: give drinks

Notes -> Bill scanner, validation -> return coins or perfect amount.

Bank card -> Connection with the bank -> bank validation -> enough money in the bank account (yes/no?) -> if yes then "debit" the total in the bank account otherwise ignore the transaction and notify the user that he can start again or use another payment method.

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

C++ & Qt

I was new in C program is there any channel please...🙏🙏

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

C++ & Qt

It's a while I'm not dealing with Qt but I don't think it has something different to do with that. How else would you write auto a = s; in Qt?

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

C++ & Qt

Except for that I may use it wherever it's handy.

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

C++ & Qt

I do not see any rationale for not using it. I use auto wherever possible and never face any issues. We would like to hear why would you do that.

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

C++ & Qt

The point/rule is that auto can't deduce top-level const. i has a top-level const while none of s and pd has that.

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

C++ & Qt

I think the newish Shapes module will do that.

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

C++ & Qt

Oh, sorry, I have updated the link.

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

C++ & Qt

So without canvas how can I draw an arc tho?

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