1 /** Copyright (C) 2016, Florin Oprea <florinoprea.contact@gmail.com>
2  **
3  **  This program is free software; you can redistribute it and/or modify
4  **  it under the terms of the GNU General Public License as published by
5  **  the Free Software Foundation; either version 2 of the License, or
6  **  (at your option) any later version.
7  **
8  **  This program is distributed in the hope that it will be useful,
9  **  but WITHOUT ANY WARRANTY; without even the implied warranty of
10  **  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11  **  GNU General Public License for more details.
12  **
13  **  You should have received a copy of the GNU General Public License along
14  **  with this program; if not, write to the Free Software Foundation, Inc.,
15  **  51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
16  **/
17 
18 
19 #ifndef BASICICONS_H
20 #define BASICICONS_H
21 
22 #include <QIcon>
23 
24 class BasicIcons
25 {
26 public:
27     BasicIcons();
28     QIcon basic256Icon;
29     QIcon saveIcon;
30     QIcon saveAsIcon;
31     QIcon saveAllIcon;
32     QIcon newIcon;
33     QIcon printIcon;
34     QIcon openIcon;
35     QIcon cutIcon;
36     QIcon copyIcon;
37     QIcon pasteIcon;
38     QIcon undoIcon;
39     QIcon redoIcon;
40     QIcon exitIcon;
41     QIcon preferencesIcon;
42     QIcon runIcon;
43     QIcon debugIcon;
44     QIcon stepIcon;
45     QIcon breakIcon;
46     QIcon stopIcon;
47     QIcon fontIcon;
48     QIcon helpIcon;
49     QIcon webIcon;
50     QIcon documentIcon;
51     QIcon clearIcon;
52     QIcon gridIcon;
53     QIcon infoIcon;
54     QIcon goNextIcon;
55     QIcon goPreviousIcon;
56     QIcon goUpIcon;
57     QIcon goDownIcon;
58     QIcon goHomeIcon;
59     QIcon findIcon;
60     QIcon zoomInIcon;
61     QIcon zoomOutIcon;
62     QIcon closeIcon;
63 
64 };
65 
66 #endif // BASICICONS_H
67