stock.h
1 #ifndef _STOCK_H_ 2 #define _STOCK_H_ 3 4 /**************************************************************************/ 5 /** @name Stock images */ 6 /**************************************************************************/ 7 /*@{*/ 8 #define LSHW_STOCK_AMD "lshw-amd" 9 #define LSHW_STOCK_AUDIO "lshw-audio" 10 #define LSHW_STOCK_BATTERY "lshw-battery" 11 #define LSHW_STOCK_BLUETOOTH "lshw-bluetooth" 12 #define LSHW_STOCK_BOARD "lshw-board" 13 #define LSHW_STOCK_CHIP "lshw-chip" 14 #define LSHW_STOCK_CPU "lshw-cpu" 15 #define LSHW_STOCK_DESKTOPCOMPUTER "lshw-desktopcomputer" 16 #define LSHW_STOCK_DISABLED "lshw-disabled" 17 #define LSHW_STOCK_DISPLAY "lshw-display" 18 #define LSHW_STOCK_CD "lshw-cd" 19 #define LSHW_STOCK_DISC "lshw-disc" 20 #define LSHW_STOCK_FIREWIRE "lshw-firewire" 21 #define LSHW_STOCK_INTEL "lshw-intel" 22 #define LSHW_STOCK_LAPTOP "lshw-laptop" 23 #define LSHW_STOCK_LOGO "lshw-logo" 24 #define LSHW_STOCK_MEMORY "lshw-memory" 25 #define LSHW_STOCK_MINI "lshw-mini" 26 #define LSHW_STOCK_MODEM "lshw-modem" 27 #define LSHW_STOCK_MOTHERBOARD "lshw-motherboard" 28 #define LSHW_STOCK_NETWORK "lshw-network" 29 #define LSHW_STOCK_PARALLEL "lshw-parallel" 30 #define LSHW_STOCK_POWERMAC "lshw-powermac" 31 #define LSHW_STOCK_POWERMACG5 "lshw-powermacg5" 32 #define LSHW_STOCK_POWERPC "lshw-powerpc" 33 #define LSHW_STOCK_PRINTER "lshw-printer" 34 #define LSHW_STOCK_RADIO "lshw-radio" 35 #define LSHW_STOCK_MD "lshw-md" 36 #define LSHW_STOCK_SCSI "lshw-scsi" 37 #define LSHW_STOCK_SERIAL "lshw-serial" 38 #define LSHW_STOCK_TOWERCOMPUTER "lshw-towercomputer" 39 #define LSHW_STOCK_USB "lshw-usb" 40 #define LSHW_STOCK_WIFI "lshw-wifi" 41 /*@}*/ 42 43 /** 44 * For getting the icon size for the logo 45 */ 46 #define LSHW_DEFAULT_ICON_SIZE 40 47 48 typedef struct _GtkApplication GtkApplication; 49 50 void lshw_gtk_stock_init(void); 51 void lshw_ui_init(GtkApplication *); 52 #endif /* _STOCK_H_ */