![]() |
|
![]() |
|
|
Thread Tools | Display Modes |
|
|
#11 |
|
Programmer
Join Date: Nov 2004
Posts: 47
Rep Power: 0
![]() |
Thanks atleast someone agree's with me. So what program do you all recommend I learn about to make GUI's.
Someone told me Anjuta was a good GTK program ..any other ideas? |
|
|
|
|
|
#12 |
|
Programming Guru
![]() ![]() ![]() |
I also use Anjuta... you could also use vi and just code based off of the included GTK+ libraries.
__________________
http://jasonpowers.net "There are a thousand hacking at the branches of evil to one who is striking at the root." |
|
|
|
|
|
#13 |
|
Programmer
Join Date: Nov 2004
Posts: 47
Rep Power: 0
![]() |
I'd rather just code in nano. Then use Anjuta to make a GUI for the program..where could I get a tutorial on how to make a GUI with Anjuta
|
|
|
|
|
|
#14 |
|
Programmer
Join Date: Nov 2004
Posts: 47
Rep Power: 0
![]() |
#include <iostream>
void systeminfo();
using namespace std;
int main(int argc, char *argv[])
{
systeminfo();
}
void systeminfo()
{
system("date");
system("uname -p");
system("grep -i mhz /proc/cpuinfo");
}Could someone tell me how to get a title for each system call. For example.. If would say.. "Date: November blah blah" "CPU: Intel 2.4GHz" When I run that program it prints out like this.. Sun Nov 14 01:04:27 GMT 2004 Intel(R) Celeron(R) CPU 2.40GHz cpu MHz : 2443.925 Date:0CPU:00 |
|
|
|
![]() |
| Bookmarks |
| Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | |
| Display Modes | |
|
|