summaryrefslogtreecommitdiffstats
path: root/kcontrol/info/info_sgi.cpp
blob: 7961d4e16cf76748496a5e547230fc5db0bad4d0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
/* 	info_sgi.cpp
	
	!!!!! this file will be included by info.cpp !!!!!
*/

#define INFO_CPU_AVAILABLE
#define INFO_IRQ_AVAILABLE
#define INFO_DMA_AVAILABLE
#define INFO_PCI_AVAILABLE
#define INFO_IOPORTS_AVAILABLE
#define INFO_SOUND_AVAILABLE
#define INFO_DEVICES_AVAILABLE
#define INFO_SCSI_AVAILABLE
#define INFO_PARTITIONS_AVAILABLE
#define INFO_XSERVER_AVAILABLE


/*  all following functions should return TRUE, when the Information 
    was filled into the lBox-Widget.
    returning false indicates, that information was not available.
*/
       

#include <sys/systeminfo.h>

bool GetInfo_CPU( TQListView *lBox )
{
      TQString str;
      char buf[256];

      sysinfo(SI_ARCHITECTURE, buf, sizeof(buf));
      str = TQString::fromLocal8Bit(buf);
      new TQListViewItem(lBox, str);
      return true;
}


bool GetInfo_IRQ( TQListView * )
{
	return false;
}

bool GetInfo_DMA( TQListView * )
{
	return false;
}

bool GetInfo_PCI( TQListView * )
{
	return false;
}

bool GetInfo_IO_Ports( TQListView * )
{
	return false;
}

bool GetInfo_Sound( TQListView * )
{
	return false;
}

bool GetInfo_Devices( TQListView * )
{
	return false;
}

bool GetInfo_SCSI( TQListView * )
{
	return false;
}

bool GetInfo_Partitions( TQListView * )
{
	return false;
}

bool GetInfo_XServer_and_Video( TQListView *lBox )
{
	return GetInfo_XServer_Generic( lBox );
}