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
|
/**
* @file llctrlselectioninterface.h
* @brief Programmatic selection of items in a list.
*
* Copyright (c) 2006-$CurrentYear$, Linden Research, Inc.
* $License$
*/
#ifndef LLCTRLSELECTIONINTERFACE_H
#define LLCTRLSELECTIONINTERFACE_H
#include "stdtypes.h"
#include "stdenums.h"
#include "llstring.h"
class LLSD;
class LLUUID;
class LLScrollListItem;
class LLCtrlSelectionInterface
{
public:
virtual ~LLCtrlSelectionInterface();
enum EOperation
{
OP_DELETE = 1,
OP_SELECT,
OP_DESELECT,
};
virtual BOOL getCanSelect() const = 0;
virtual S32 getItemCount() const = 0;
virtual BOOL selectFirstItem() = 0;
virtual BOOL selectNthItem( S32 index ) = 0;
virtual S32 getFirstSelectedIndex() = 0;
// TomY TODO: Simply cast the UUIDs to LLSDs, using the selectByValue function
virtual BOOL setCurrentByID( const LLUUID& id ) = 0;
virtual LLUUID getCurrentID() = 0;
BOOL selectByValue(LLSD value);
BOOL deselectByValue(LLSD value);
virtual BOOL setSelectedByValue(LLSD value, BOOL selected) = 0;
virtual LLSD getSimpleSelectedValue() = 0;
virtual BOOL isSelected(LLSD value) = 0;
virtual BOOL operateOnSelection(EOperation op) = 0;
virtual BOOL operateOnAll(EOperation op) = 0;
};
class LLCtrlListInterface : public LLCtrlSelectionInterface
{
public:
virtual ~LLCtrlListInterface();
virtual void addColumn(const LLSD& column, EAddPosition pos = ADD_BOTTOM) = 0;
virtual void clearColumns() = 0;
virtual void setColumnLabel(const LLString& column, const LLString& label) = 0;
// TomY TODO: Document this
virtual LLScrollListItem* addElement(const LLSD& value, EAddPosition pos = ADD_BOTTOM, void* userdata = NULL) = 0;
LLScrollListItem* addSimpleElement(const LLString& value); // defaults to bottom
LLScrollListItem* addSimpleElement(const LLString& value, EAddPosition pos); // defaults to no LLSD() id
virtual LLScrollListItem* addSimpleElement(const LLString& value, EAddPosition pos, const LLSD& id) = 0;
virtual void clearRows() = 0;
virtual void sortByColumn(LLString name, BOOL ascending) = 0;
};
class LLCtrlScrollInterface
{
public:
virtual ~LLCtrlScrollInterface();
virtual S32 getScrollPos() = 0;
virtual void setScrollPos( S32 pos ) = 0;
virtual void scrollToShowSelected() = 0;
};
#endif
|