BTRFS: Implement BTree::Path and change _Find.
[haiku.git] / src / apps / showimage / ToolBarIcons.h
blob57a68be73b3221a8f7039f7ec7dd08676883bed7
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
9 #include <SupportDefs.h>
12 class BBitmap;
14 enum {
15 kIconDocumentOpen = 0,
16 kIconDocumentSaveAs,
17 kIconDocumentSave,
18 kIconDrawRectangularSelection,
19 kIconEditCopy,
20 kIconEditCut,
21 kIconEditDelete,
22 kIconEditTrash,
23 kIconMediaMovieLibrary,
24 kIconMediaPlaybackStartEnabled,
25 kIconGoDown,
26 kIconGoNext,
27 kIconGoPrevious,
28 kIconGoUp,
29 kIconViewFullScreen,
30 kIconViewWindowed,
31 kIconZoomFitBest,
32 kIconZoomFitViewBest,
33 kIconZoomIn,
34 kIconZoomOriginal,
35 kIconZoomOut,
36 kIconPagePrevious,
37 kIconPageNext
41 status_t init_tool_bar_icons();
42 void uninit_tool_bar_icons();
43 const BBitmap* tool_bar_icon(uint32 which);
46 #endif // TOOL_BAR_ICONS_H