1 /*  RetroArch - A frontend for libretro.
2  *  Copyright (C) 2011-2017 - Daniel De Matteis
3  *  Copyright (C) 2014-2017 - Jean-André Santoni
4  *  Copyright (C) 2016-2019 - Brad Parker
5  *  Copyright (C) 2018      - Alfredo Monclús
6  *  Copyright (C) 2018      - natinusala
7  *
8  *  RetroArch is free software: you can redistribute it and/or modify it under the terms
9  *  of the GNU General Public License as published by the Free Software Found-
10  *  ation, either version 3 of the License, or (at your option) any later version.
11  *
12  *  RetroArch is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
13  *  without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
14  *  PURPOSE.  See the GNU General Public License for more details.
15  *
16  *  You should have received a copy of the GNU General Public License along with RetroArch.
17  *  If not, see <http://www.gnu.org/licenses/>.
18  */
19 
20 #ifndef _OZONE_SIDEBAR_H
21 #define _OZONE_SIDEBAR_H
22 
23 enum
24 {
25    OZONE_SYSTEM_TAB_MAIN = 0,
26    OZONE_SYSTEM_TAB_SETTINGS,
27    OZONE_SYSTEM_TAB_HISTORY,
28    OZONE_SYSTEM_TAB_FAVORITES,
29    OZONE_SYSTEM_TAB_MUSIC,
30 #if defined(HAVE_FFMPEG) || defined(HAVE_MPV)
31    OZONE_SYSTEM_TAB_VIDEO,
32 #endif
33 #ifdef HAVE_IMAGEVIEWER
34    OZONE_SYSTEM_TAB_IMAGES,
35 #endif
36 #ifdef HAVE_NETWORKING
37    OZONE_SYSTEM_TAB_NETPLAY,
38 #endif
39    OZONE_SYSTEM_TAB_ADD,
40 #if defined(HAVE_LIBRETRODB)
41    OZONE_SYSTEM_TAB_EXPLORE,
42 #endif
43 
44    /* End of this enum - use the last one to determine num of possible tabs */
45    OZONE_SYSTEM_TAB_LAST
46 };
47 
48 #endif
49