text-based C++ terminal GUI library [closed] - c++

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 14 days ago.
Improve this question
I'm looking for a way in which I can align/format text output to the terminal window in C++, independent of the terminal window's size (I'm not looking to use iomanip with setw() or whatever). There is a library out there that allows for this, it begins with "n" I think, but I can't for the life of my find it. Honestly, I have thoroughly searched google, wikipedia etc and I just can't find it without knowing the name of it.
Thanks very much!

I think you are looking for the Gnu ncurses libary.

Related

Qt and C++ game development for assignment [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 years ago.
Improve this question
I've got the assignment to write a pacman game using qt creator and c++. I know that QT Quick is better suited for games but i've got no option. The only problem is i am a little bit lost because the documentation of qt is great but there is massive amount of it. Could you provide me some tutorials or links to the documentation where to start?
I would be grateful.
Try to give a look at the QGraphisView and the Animation framework examples, probably they are a good starting point.

Symbolic Math Library in C/C++/Obj-C [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 5 years ago.
Improve this question
I am trying to implement a graphing calculator on the iPhone. I am looking for a library that can take strings of expressions or functions and let me manipulate them (find derivatives, intercepts, zeros, etc). Does anything like this exist?
There's GiNaC for C++. GPL-licensed and actively maintained, last update only a month ago. I found old links to many others that don't seem to exist anymore; perhaps people simply found it easier to use GiNaC?

Torrent Library for C++, Windows [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 5 years ago.
Improve this question
I'm looking for a library which allows my C++ application (run in Windows) to download torrents. I can't, however, find any out there.
Can someone please point me in the right direction?
Thanks in advance.
http://www.rasterbar.com/products/libtorrent/
It is used in Halite, which is a pretty good client :)
The library has a BSD license, and seems to be used in quite a few clients:
http://www.rasterbar.com/products/libtorrent/projects.html
Qt has an example: torrent client.

Creating an Ctablctrl on a CFrameWnd [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 years ago.
Improve this question
I want to create a mfc window that has tabs on top.
I cannot find a good tutorial or example of this.
Can someone give me a link to a good tutorial of example?
please help me.
You mean like this?
MFC app in VS 2010 http://blogs.msdn.com/photos/vcblog/images/9927511/original.aspx
Here is a walkthrough that should take you where you need to be: http://blogs.msdn.com/b/vcblog/archive/2009/11/23/teched-europe-demo-session-face-lifting-mfc-applications-on-windows-7.aspx
Install the Visual C++ Feature Pack. It comes with newer libraries to do this.

Good tutorial to create Win32 toolbar? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 years ago.
Improve this question
I want to add a toolbar and know which tool was clicked. I'd also like to be able to change the toolbar's buttons' bitmap after theyve been created MSDN is fairly breif on all of this. Thanks
If you like to learn by example then you may find this code useful. It's a Windows toolbar wrapper class I created some time ago. It's somewhat advanced though because it uses Custom Draw.
WindowsToolbar.h
WindowsToolbar.cpp
WindowsToolbarItem.h
WindowsToolbarItem.cpp
You might want to check out these tutorials.
Grz, Kris.
http://www.functionx.com/win32/