co2shaun Posted December 9, 2011 Share Posted December 9, 2011 What I want to do is make a linux program/application that can run command line prompts from a gui window. For example let's say have a window with two button one to start and stop monitor mode. My question is what programing language would I want to do something like this in? Quote Link to comment Share on other sites More sharing options...
RocknRolf Posted December 9, 2011 Share Posted December 9, 2011 For a very simple gui you can use zenity in your shellscript. Quote Link to comment Share on other sites More sharing options...
Hyperant Posted December 9, 2011 Share Posted December 9, 2011 My question is what programing language would I want to do something like this in? My question is what programming languages do you know? Quote Link to comment Share on other sites More sharing options...
co2shaun Posted December 9, 2011 Author Share Posted December 9, 2011 (edited) I know C++ and have worked a fair amount of shell scripts. I've played with python and visual basic some. I'm not opposed to learning something new I just needing some ideas of where to get started with something like this. Shell scripts are nice but i want do see if I can make myself something with a gui. Edited December 9, 2011 by co2shaun Quote Link to comment Share on other sites More sharing options...
Hyperant Posted December 10, 2011 Share Posted December 10, 2011 Well you have two choices c++ or python, i wouldn't use visual basic. As for the GUI aspect of the application you could use something like Qt (python and c++ can both use this framework) http://qt.nokia.com/ http://wiki.python.org/moin/PyQt http://www.linuxplanet.com/linuxplanet/tutorials/6708/1 http://linuxgazette.net/issue78/taneja.html http://www.yolinux.com/TUTORIALS/LinuxTutorialC++.html http://sector.ynet.sk/qt4-tutorial/ that should be enough to get you started. Quote Link to comment Share on other sites More sharing options...
pngwen Posted December 10, 2011 Share Posted December 10, 2011 You may want to look at a linux application called gmrun. It's a small thing that does pretty much what you are interested in. It's written in C++ and uses GTK for its gui displays. It's only about 2000 lines long. Depending on if you want to make your app open or not, you could just take their C++ code and build on it. Behold the glory of open source! Quote Link to comment Share on other sites More sharing options...
co2shaun Posted December 10, 2011 Author Share Posted December 10, 2011 Thanks for the links. I should be able to find something that works. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.