xlang v4.0 Release
程序设计语言基础库文档
载入中...
搜索中...
未找到
Public 成员函数 | Private 成员函数
QStandardModel类 参考

Public 成员函数

Private 成员函数

详细描述

在文件 QStandardModel.x30 行定义.

成员函数说明

◆ _columnCount()

int _columnCount ( long  parent)
private

在文件 QStandardModel.x40 行定义.

40 {
41 return columnCount(new ItemIndex(parent));
42 }
int columnCount(ItemIndex parent)

◆ _data()

Object _data ( long  index,
int  role 
)
private

在文件 QStandardModel.x43 行定义.

43 {
44 return data(new ItemIndex(index), (ItemDataRole)role);
45 }
Object data(ItemIndex index, ItemDataRole role)

◆ _flags()

int _flags ( long  index)
private

在文件 QStandardModel.x46 行定义.

46 {
47 return flags(new ItemIndex(index));
48 }
ItemFlag flags(ItemIndex index)

◆ _headerdata()

Object _headerdata ( int  section,
int  orientation,
int  role 
)
private

在文件 QStandardModel.x49 行定义.

49 {
50 return headerdata(section, (Orientation)orientation, (ItemDataRole)role);
51 }
Object headerdata(int section, Orientation orientation, int role)

◆ _index()

long _index ( int  row,
int  col,
long  parent 
)
private

在文件 QStandardModel.x31 行定义.

31 {
32 return index(row, col, new ItemIndex(parent)).id();
33 }
ItemIndex index(int row, int col, ItemIndex parent)

◆ _parent()

long _parent ( long  child)
private

在文件 QStandardModel.x34 行定义.

34 {
35 return parent(new ItemIndex(child)).id();
36 }
ItemIndex parent(ItemIndex child)

◆ _rowCount()

int _rowCount ( long  parent)
private

在文件 QStandardModel.x37 行定义.

37 {
38 return rowCount(new ItemIndex(parent));
39 }
int rowCount(ItemIndex parent)

◆ columnCount()

int columnCount ( ItemIndex  parent)

◆ data()

Object data ( ItemIndex  index,
ItemDataRole  role 
)

◆ flags()

ItemFlag flags ( ItemIndex  index)

◆ headerdata()

Object headerdata ( int  section,
Orientation  orientation,
int  role 
)

◆ index()

ItemIndex index ( int  row,
int  col,
ItemIndex  parent 
)

◆ parent()

ItemIndex parent ( ItemIndex  child)

◆ rowCount()

int rowCount ( ItemIndex  parent)