1 /*
2 *  qm_browser_ids.h
3 *  QUIMUP library & playlist combobox id's
4 *  © 2008-2018 Johan Spee
5 *
6 *  This file is part of Quimup
7 *
8 *  QUIMUP is free software: you can redistribute it and/or modify
9 *  it under the terms of the GNU General Public License as published by
10 *  the Free Software Foundation, either version 3 of the License, or
11 *  (at your option) any later version.
12 *
13 *  QUIMUP is distributed in the hope that it will be useful,
14 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
15 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 *  GNU General Public License for more details.
17 *
18 *  You should have received a copy of the GNU General Public License
19 *  along with this program. If not, see http://www.gnu.org/licenses/.
20 */
21 
22 #ifndef qm_browser_IDS_H
23 #define qm_browser_IDS_H
24 
25 enum
26 {   // library modes
27     LB_ID_ARTIST,
28     LB_ID_ALBUM,
29     LB_ID_DATE,
30 	LB_ID_YEAR,
31     LB_ID_GENRE,
32     LB_ID_PLIST,
33     LB_ID_DIR,
34     LB_ID_SEARCH
35 };
36 
37 enum
38 {// search modes // keep this order!
39     SR_ID_ARTIST,
40     SR_ID_ALBUM,
41     SR_ID_TITLE,
42     SR_ID_GENRE,
43 	SR_ID_DIR
44 };
45 
46 enum
47 {// select modes // keep this order!
48     SL_ID_ARTIST,
49     SL_ID_ALBUM,
50     SL_ID_TITLE,
51     SL_ID_ALL
52 };
53 
54 #endif // qm_browser_IDS_H
55