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