This question already has answers here:
Closed 11 years ago.
Possible Duplicate:
Qt tutorials for beginners
What resources for learning Qt by example do you recommend?
Thanks.
If you install the Qt SDK, Qt Creator will have a comprehensive and structured list of examples right when you start it, selectable from a menu.
C++ GUI Programming with Qt4
Related
This question already has answers here:
How do I build a graphical user interface in C++? [closed]
(8 answers)
Closed 1 year ago.
I don’t have Visual Studio for C++ GUI(Because I don’t want to install such a big thing on my pc).
And I don’t have any problem with working with some really simple code editor like Sublime Text or Code Blocks IDE for console C++(of course). But the problem arises when I wanna make GUIs or Graphical User Interfaces.
I couldn’t find any resource¹ anywhere for how to handcode² GUI without any GUI Designer like Visual Studio’s or Code Blocks’.
resource: Any website, video etc.
handcode: By this, I mean coding a GUI without any GUI Designer.
Found the Solution
I found that I can use the graphic designer included in SharpDevelop IDE, which I can use for making the GUI, but for the intellisense, I can use VSCode with the C/C++ extension.
SharpDevelop is primarily made for .Net, so I can use it for .Net GUI also.
You can use Linux and g++ command for compiling cpp files.
You can choose any editor programs like notepad++ or notepad.
This question is already answered How do I build GUI with c++
This question already has answers here:
How can I add C++11 support to Code::Blocks compiler?
(4 answers)
Closed 3 years ago.
Recently I have tried to use some Advance c++ functions in CodeBlocks but all the time it throw errors like " according to c++ 98....... ".
If CodeBlocks uses an old version of c++ can I update it to c++11 or c++14.
I am just a new learner and cordially requesting you to help if you know the answer.
You can set compiler version and language standart in settings.
See this How can I add C++11 support to Code::Blocks compiler?
This question already has answers here:
How do I programmatically get the version of a DLL or EXE file?
(6 answers)
Closed 6 years ago.
How to get the file version from File properties\Details\File version in Qt?
I didn't find it in QFileInfo.
This is not implemented in Qt. You can find an example of how to do it integrated with Qt here.
This question already has answers here:
Closed 10 years ago.
Possible Duplicate:
Best audio playback api for C/C++ under Linux?
I am looking for a library with which i can play a audio file using C++ code in linux , any suggestions ?
Edit : Please include the links of some tutorials if it's possible .
Take a look at FMOD. It is a cross-platform audio library for C++.
There are quite a few tutorials available, such as these:
Quick Guide to FMOD
FMOD Introduction
This question already has answers here:
Closed 11 years ago.
Possible Duplicates:
C++ testing framework: recommendation sought
C++ unit testing framework
Hello,
which unit test framework do you recommend for c++ ?
Thanks
In the past I was using CppUnit(http://sourceforge.net/apps/mediawiki/cppunit/index.php?title=Main_Page), but now I prefer the Boost test library (http://www.boost.org/doc/libs/1_46_0/libs/test/doc/html/index.html).
Lately I also use QTest (part of the Qt framework) also for my non-Qt projects (http://qt.nokia.com/products/)
google test http://code.google.com/p/googletest/
Unittest++ : http://unittest-cpp.sourceforge.net/
See this,
http://www.boost.org/doc/libs/1_34_0/libs/test/doc/index.html
Boost Test Library