mirror of https://github.com/bsnes-emu/bsnes.git
33 lines
1010 B
C++
33 lines
1010 B
C++
namespace phoenix {
|
|
|
|
struct pListView : public pWidget {
|
|
ListView& listView;
|
|
|
|
void append();
|
|
void autoSizeColumns();
|
|
void remove(unsigned selection);
|
|
void reset();
|
|
void setBackgroundColor(Color color);
|
|
void setCheckable(bool checkable);
|
|
void setChecked(unsigned selection, bool checked);
|
|
void setChecked(const vector<unsigned>& selections);
|
|
void setCheckedAll();
|
|
void setCheckedNone();
|
|
void setForegroundColor(Color color);
|
|
void setHeaderText(const lstring& text);
|
|
void setHeaderVisible(bool visible);
|
|
void setImage(unsigned selection, unsigned position, const image& image);
|
|
void setSelected(unsigned selection, bool selected);
|
|
void setSelected(const vector<unsigned>& selections);
|
|
void setSelectedAll();
|
|
void setSelectedNone();
|
|
void setSingleSelection(bool singleSelection);
|
|
void setText(unsigned selection, unsigned position, string text);
|
|
|
|
pListView(ListView& listView) : pWidget(listView), listView(listView) {}
|
|
void constructor();
|
|
void destructor();
|
|
};
|
|
|
|
}
|