1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
|
/*!
\file GUIListItem.h
\brief
*/
#ifndef GUILIB_GUILISTITEM_H
#define GUILIB_GUILISTITEM_H
#pragma once
/*
* Copyright (C) 2005-2008 Team XBMC
* http://www.xbmc.org
*
* This Program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2, or (at your option)
* any later version.
*
* This Program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with XBMC; see the file COPYING. If not, write to
* the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
* http://www.gnu.org/copyleft/gpl.html
*
*/
#include "StdString.h"
#include <map>
#include <string>
// Forward
class CGUIListItemLayout;
class CArchive;
/*!
\ingroup controls
\brief
*/
class CGUIListItem
{
public:
enum GUIIconOverlay { ICON_OVERLAY_NONE = 0,
ICON_OVERLAY_RAR,
ICON_OVERLAY_ZIP,
ICON_OVERLAY_LOCKED,
ICON_OVERLAY_HAS_TRAINER,
ICON_OVERLAY_TRAINED,
ICON_OVERLAY_UNWATCHED,
ICON_OVERLAY_WATCHED,
ICON_OVERLAY_HD};
CGUIListItem(void);
CGUIListItem(const CGUIListItem& item);
CGUIListItem(const CStdString& strLabel);
virtual ~CGUIListItem(void);
virtual CGUIListItem *Clone() const { return new CGUIListItem(*this); };
const CGUIListItem& operator =(const CGUIListItem& item);
virtual void SetLabel(const CStdString& strLabel);
const CStdString& GetLabel() const;
void SetLabel2(const CStdString& strLabel);
const CStdString& GetLabel2() const;
void SetIconImage(const CStdString& strIcon);
const CStdString& GetIconImage() const;
void SetThumbnailImage(const CStdString& strThumbnail);
const CStdString& GetThumbnailImage() const;
void SetOverlayImage(GUIIconOverlay icon, bool bOnOff=false);
CStdString GetOverlayImage() const;
void SetSortLabel(const CStdString &label);
const CStdString &GetSortLabel() const;
void Select(bool bOnOff);
bool IsSelected() const;
bool HasIcon() const;
bool HasThumbnail() const;
bool HasOverlay() const;
virtual bool IsFileItem() const { return false; };
void SetLayout(CGUIListItemLayout *layout);
CGUIListItemLayout *GetLayout();
void SetFocusedLayout(CGUIListItemLayout *layout);
CGUIListItemLayout *GetFocusedLayout();
void FreeIcons();
void FreeMemory(bool immediately = false);
void SetInvalid();
bool m_bIsFolder; ///< is item a folder or a file
void SetProperty(const CStdString &strKey, const char *strValue);
void SetProperty(const CStdString &strKey, const CStdString &strValue);
void SetProperty(const CStdString &strKey, int nVal);
void SetProperty(const CStdString &strKey, bool bVal);
void SetProperty(const CStdString &strKey, double dVal);
void IncrementProperty(const CStdString &strKey, int nVal);
void IncrementProperty(const CStdString &strKey, double dVal);
void ClearProperties();
void Serialize(CArchive& ar);
bool HasProperty(const CStdString &strKey) const;
bool HasProperties() const { return m_mapProperties.size() > 0; };
void ClearProperty(const CStdString &strKey);
CStdString GetProperty(const CStdString &strKey) const;
bool GetPropertyBOOL(const CStdString &strKey) const;
int GetPropertyInt(const CStdString &strKey) const;
double GetPropertyDouble(const CStdString &strKey) const;
protected:
CStdString m_strLabel2; // text of column2
CStdString m_strThumbnailImage; // filename of thumbnail
CStdString m_strIcon; // filename of icon
GUIIconOverlay m_overlayIcon; // type of overlay icon
CGUIListItemLayout *m_layout;
CGUIListItemLayout *m_focusedLayout;
bool m_bSelected; // item is selected or not
struct icompare
{
bool operator()(const CStdString &s1, const CStdString &s2) const
{
return s1.CompareNoCase(s2) < 0;
}
};
typedef std::map<CStdString, CStdString, icompare> PropertyMap;
PropertyMap m_mapProperties;
private:
CStdString m_sortLabel; // text for sorting
CStdString m_strLabel; // text of column1
};
#endif
|