Salome HOME
bb2bb617f0f6957266a6a67490b095918b9d7ad3
[tools/install.git] / src / icons.h
1 //  File      : icons.h
2 //  Created   : Thu Mar 27 12:01:00 2003
3 //  Author    : Vadim SANDLER, Open CASCADE SAS (vadim.sandler@opencascade.com)
4 //  Project   : SALOME
5 //  Module    : Installation Wizard
6 //  Copyright : 2002-2006 CEA
7
8 #ifndef ___ICONS_h
9 #define ___ICONS_h
10
11 #include <qpixmap.h>
12
13 enum { pxBigLogo,      // SALOME Logo
14        pxLogo,         // small logo
15        pxAbout,        // about icon
16        pxIcon,         // title icon
17        pxClose,        // help window : close window
18        pxHome,         // help window : go home
19        pxNext,         // help window : go forward
20        pxBack,         // help window : go backward
21        pxZoomIn,       // help window : enlarge text size
22        pxZoomOut       // help window : redure text size
23      };
24
25 QPixmap pixmap( const int type );
26
27 #endif
28