From 4aed2c8219774f5d797760606b8489a92ddc5163 Mon Sep 17 00:00:00 2001 From: toma Date: Wed, 25 Nov 2009 17:56:58 +0000 Subject: Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. BUG:215923 git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdebase@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- kcontrol/info/info_generic.cpp | 88 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 88 insertions(+) create mode 100644 kcontrol/info/info_generic.cpp (limited to 'kcontrol/info/info_generic.cpp') diff --git a/kcontrol/info/info_generic.cpp b/kcontrol/info/info_generic.cpp new file mode 100644 index 000000000..5ef80dcca --- /dev/null +++ b/kcontrol/info/info_generic.cpp @@ -0,0 +1,88 @@ +/* + + 1998 by Helge Deller (deller@gmx.de) + free source under GPL + + !!!!! this file will be included by info.cpp !!!!! +*/ + + +// Default for unsupportet systems + +// the following defines are not really ok here, but maybe we should show, what +// Information could be displayed here.... + +#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 +#define INFO_CD_ROM_AVAILABLE + + +/* all following functions should return TRUE, when the Information + was filled into the lBox-Widget. + returning false indicates, that information was not available. +*/ + + +bool GetInfo_CPU( QListView * ) +{ + return false; +} + +bool GetInfo_IRQ( QListView * ) +{ + return false; +} + +bool GetInfo_DMA( QListView * ) +{ + return false; +} + +bool GetInfo_PCI( QListView * ) +{ + return false; +} + +bool GetInfo_IO_Ports( QListView * ) +{ + return false; +} + +bool GetInfo_Sound( QListView * ) +{ + return false; +} + +bool GetInfo_Devices( QListView * ) +{ + return false; +} + +bool GetInfo_SCSI( QListView * ) +{ + return false; +} + +bool GetInfo_Partitions( QListView * ) +{ + return false; +} + +bool GetInfo_XServer_and_Video( QListView *lBox ) +{ + return GetInfo_XServer_Generic( lBox ); +} + +/* Generic GetInfo? ~Jahshan */ +bool GetInfo_CD_ROM(QListView * lBox) +{ + return false; +} -- cgit v1.2.1