Kodi Development  20.0
for Binary and Script based Add-Ons
list_item.h
1 /*
2  * Copyright (C) 2005-2020 Team Kodi
3  * This file is part of Kodi - https://kodi.tv
4  *
5  * SPDX-License-Identifier: GPL-2.0-or-later
6  * See LICENSES/README.md for more information.
7  */
8 
9 #ifndef C_API_GUI_LIST_ITEM_H
10 #define C_API_GUI_LIST_ITEM_H
11 
12 #include "definitions.h"
13 
14 #ifdef __cplusplus
15 extern "C"
16 {
17 #endif /* __cplusplus */
18 
20  {
21  KODI_GUI_LISTITEM_HANDLE(*create)
22  (KODI_HANDLE kodiBase,
23  const char* label,
24  const char* label2,
25  const char* path);
26  void (*destroy)(KODI_HANDLE kodiBase, KODI_GUI_LISTITEM_HANDLE handle);
27 
28  char* (*get_label)(KODI_HANDLE kodiBase, KODI_GUI_LISTITEM_HANDLE handle);
29  void (*set_label)(KODI_HANDLE kodiBase, KODI_GUI_LISTITEM_HANDLE handle, const char* label);
30  char* (*get_label2)(KODI_HANDLE kodiBase, KODI_GUI_LISTITEM_HANDLE handle);
31  void (*set_label2)(KODI_HANDLE kodiBase, KODI_GUI_LISTITEM_HANDLE handle, const char* label);
32  char* (*get_art)(KODI_HANDLE kodiBase, KODI_GUI_LISTITEM_HANDLE handle, const char* type);
33  void (*set_art)(KODI_HANDLE kodiBase,
34  KODI_GUI_LISTITEM_HANDLE handle,
35  const char* type,
36  const char* image);
37  char* (*get_path)(KODI_HANDLE kodiBase, KODI_GUI_LISTITEM_HANDLE handle);
38  void (*set_path)(KODI_HANDLE kodiBase, KODI_GUI_LISTITEM_HANDLE handle, const char* path);
39  char* (*get_property)(KODI_HANDLE kodiBase, KODI_GUI_LISTITEM_HANDLE handle, const char* key);
40  void (*set_property)(KODI_HANDLE kodiBase,
41  KODI_GUI_LISTITEM_HANDLE handle,
42  const char* key,
43  const char* value);
44  void (*select)(KODI_HANDLE kodiBase, KODI_GUI_LISTITEM_HANDLE handle, bool select);
45  bool (*is_selected)(KODI_HANDLE kodiBase, KODI_GUI_LISTITEM_HANDLE handle);
47 
48 #ifdef __cplusplus
49 } /* extern "C" */
50 #endif /* __cplusplus */
51 
52 #endif /* !C_API_GUI_LIST_ITEM_H */
Definition: list_item.h:20