xref: /haiku/src/apps/showimage/ToolBarIcons.h (revision e8cd7007416a323259791ac09c013dcce2956976)
1 /*
2  * Copyright 2011 Stephan Aßmus <superstippi@gmx.de>
3  * All rights reserved. Distributed under the terms of the MIT license.
4  */
5 #ifndef TOOL_BAR_ICONS_H
6 #define TOOL_BAR_ICONS_H
7 
8 
9 #include <SupportDefs.h>
10 
11 
12 class BBitmap;
13 
14 enum {
15 	kIconDocumentOpen = 0,
16 	kIconDocumentSaveAs,
17 	kIconDocumentSave,
18 	kIconDrawRectangularSelection,
19 	kIconEditCopy,
20 	kIconEditTrash,
21 	kIconGoDown,
22 	kIconGoUp,
23 	kIconViewFullScreen,
24 	kIconZoomFitBest,
25 	kIconZoomFitViewBest,
26 	kIconZoomIn,
27 	kIconZoomOriginal,
28 	kIconZoomOut
29 };
30 
31 
32 status_t init_tool_bar_icons();
33 void uninit_tool_bar_icons();
34 const BBitmap* tool_bar_icon(uint32 which);
35 
36 
37 #endif // TOOL_BAR_ICONS_H
38