Make a branch to make krunner Good Enough For Aaron™.
[kdebase/uwolfer.git] / apps / kinfocenter / info / info_generic.cpp
blob2d6a8be221518bb67dce4311365a16fbd751f8d7
1 /*
3 1998 by Helge Deller (deller@gmx.de)
4 free source under GPL
6 !!!!! this file will be included by info.cpp !!!!!
7 */
10 // Default for unsupportet systems
12 // the following defines are not really ok here, but maybe we should show, what
13 // Information could be displayed here....
15 #define INFO_CPU_AVAILABLE
16 #define INFO_IRQ_AVAILABLE
17 #define INFO_DMA_AVAILABLE
18 #define INFO_PCI_AVAILABLE
19 #define INFO_IOPORTS_AVAILABLE
20 #define INFO_SOUND_AVAILABLE
21 #define INFO_DEVICES_AVAILABLE
22 #define INFO_SCSI_AVAILABLE
23 #define INFO_PARTITIONS_AVAILABLE
24 #define INFO_XSERVER_AVAILABLE
27 /* all following functions should return true, when the Information
28 was filled into the lBox-Widget.
29 returning false indicates, that information was not available.
33 bool GetInfo_CPU( Q3ListView * )
35 return false;
38 bool GetInfo_IRQ( Q3ListView * )
40 return false;
43 bool GetInfo_DMA( Q3ListView * )
45 return false;
48 bool GetInfo_PCI( Q3ListView * )
50 return false;
53 bool GetInfo_IO_Ports( Q3ListView * )
55 return false;
58 bool GetInfo_Sound( Q3ListView * )
60 return false;
63 bool GetInfo_Devices( Q3ListView * )
65 return false;
68 bool GetInfo_SCSI( Q3ListView * )
70 return false;
73 bool GetInfo_Partitions( Q3ListView * )
75 return false;
78 bool GetInfo_XServer_and_Video( Q3ListView *lBox )
80 return GetInfo_XServer_Generic( lBox );