本文整理汇总了C++中TableView类的典型用法代码示例。如果您正苦于以下问题:C++ TableView类的具体用法?C++ TableView怎么用?C++ TableView使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了TableView类的20个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的C++代码示例。
示例1: Java_io_realm_internal_TableView_nativePivot
JNIEXPORT void JNICALL Java_io_realm_internal_TableView_nativePivot(
JNIEnv *env, jobject, jlong dataTablePtr, jlong stringCol, jlong intCol, jint operation, jlong resultTablePtr)
{
try {
TV(dataTablePtr)->sync_if_needed();
TableView* dataTable = TV(dataTablePtr);
Table* resultTable = TBL(resultTablePtr);
Table::AggrType pivotOp;
switch (operation) {
case 0:
pivotOp = Table::aggr_count;
break;
case 1:
pivotOp = Table::aggr_sum;
break;
case 2:
pivotOp = Table::aggr_avg;
break;
case 3:
pivotOp = Table::aggr_min;
break;
case 4:
pivotOp = Table::aggr_max;
break;
default:
ThrowException(env, UnsupportedOperation, "No pivot operation specified.");
return;
}
dataTable->aggregate(S(stringCol), S(intCol), pivotOp, *resultTable);
} CATCH_STD()
}
开发者ID:nightdomain,项目名称:realm-java,代码行数:32,代码来源:io_realm_internal_tableview.cpp
示例2: lua_cocos2dx_TableView_setDataSource
static int lua_cocos2dx_TableView_setDataSource(lua_State* L)
{
if (nullptr == L)
return 0;
int argc = 0;
TableView* self = nullptr;
#if COCOS2D_DEBUG >= 1
tolua_Error tolua_err;
if (!tolua_isusertype(L,1,"cc.TableView",0,&tolua_err)) goto tolua_lerror;
#endif
self = (TableView*) tolua_tousertype(L,1,0);
#if COCOS2D_DEBUG >= 1
if (nullptr == self)
{
tolua_error(L,"invalid 'self' in function 'lua_cocos2dx_TableView_setDataSource'\n", nullptr);
return 0;
}
#endif
argc = lua_gettop(L) - 1;
if (0 == argc)
{
LUA_TableViewDataSource* dataSource = new (std::nothrow) LUA_TableViewDataSource();
if (nullptr == dataSource)
return 0;
__Dictionary* userDict = static_cast<__Dictionary*>(self->getUserObject());
if (nullptr == userDict)
{
userDict = new __Dictionary();
if (NULL == userDict)
return 0;
self->setUserObject(userDict);
userDict->release();
}
userDict->setObject(dataSource, KEY_TABLEVIEW_DATA_SOURCE);
self->setDataSource(dataSource);
dataSource->release();
return 0;
}
luaL_error(L, "'setDataSource' function of TableView wrong number of arguments: %d, was expecting %d\n", argc, 0);
return 0;
#if COCOS2D_DEBUG >= 1
tolua_lerror:
tolua_error(L,"#ferror in function 'setDataSource'.",&tolua_err);
return 0;
#endif
}
开发者ID:120910383,项目名称:cocos2dx,代码行数:60,代码来源:lua_cocos2dx_extension_manual.cpp
示例3: Size
// on "init" you need to initialize your instance
bool TableViewTest::init()
{
if ( !TestCase::init() )
{
return false;
}
Size winSize = Director::getInstance()->getWinSize();
TableView* tableView = TableView::create(this, Size(250, 60));
tableView->setDirection(ScrollView::Direction::HORIZONTAL);
tableView->setPosition(Vec2(20,winSize.height/2-30));
tableView->setDelegate(this);
this->addChild(tableView);
tableView->reloadData();
tableView = TableView::create(this, Size(60, 250));
tableView->setDirection(ScrollView::Direction::VERTICAL);
tableView->setPosition(Vec2(winSize.width-150,winSize.height/2-120));
tableView->setDelegate(this);
tableView->setVerticalFillOrder(TableView::VerticalFillOrder::TOP_DOWN);
this->addChild(tableView);
tableView->reloadData();
return true;
}
开发者ID:AomXD,项目名称:workspace,代码行数:27,代码来源:TableViewTestScene.cpp
示例4: Size
// on "init" you need to initialize your instance
bool TableViewTestLayer::init()
{
if ( !Layer::init() )
{
return false;
}
Size winSize = Director::getInstance()->getWinSize();
TableView* tableView = TableView::create(this, Size(250, 60));
tableView->setDirection(ScrollView::Direction::HORIZONTAL);
tableView->setPosition(Point(20,winSize.height/2-30));
tableView->setDelegate(this);
this->addChild(tableView);
tableView->reloadData();
tableView = TableView::create(this, Size(60, 250));
tableView->setDirection(ScrollView::Direction::VERTICAL);
tableView->setPosition(Point(winSize.width-150,winSize.height/2-120));
tableView->setDelegate(this);
tableView->setVerticalFillOrder(TableView::VerticalFillOrder::TOP_DOWN);
this->addChild(tableView);
tableView->reloadData();
// Back Menu
MenuItemFont *itemBack = MenuItemFont::create("Back", CC_CALLBACK_1(TableViewTestLayer::toExtensionsMainLayer, this));
itemBack->setPosition(Point(VisibleRect::rightBottom().x - 50, VisibleRect::rightBottom().y + 25));
Menu *menuBack = Menu::create(itemBack, NULL);
menuBack->setPosition(Point::ZERO);
addChild(menuBack);
return true;
}
开发者ID:aberaud,项目名称:cocos2d-x,代码行数:34,代码来源:TableViewTestScene.cpp
示例5: item
bool
TableModel::setData(const QModelIndex &index,
const QVariant &value,
int role)
{
if ( !index.isValid() ) {
return false;
}
TableItem *itm = item(index);
if (itm) {
itm->setData(role, value);
return true;
}
// don't create dummy table items for empty values
if ( !value.isValid() ) {
return false;
}
TableView *view = qobject_cast<TableView*>( QObject::parent() );
if (!view) {
return false;
}
itm = createItem();
itm->setData(role, value);
view->setItem(index.row(), index.column(), itm);
return true;
}
开发者ID:jessezwd,项目名称:Natron,代码行数:32,代码来源:TableModelView.cpp
示例6: CCSizeMake
// on "init" you need to initialize your instance
bool TableViewTestLayer::init()
{
if ( !Layer::init() )
{
return false;
}
Size winSize = Director::sharedDirector()->getWinSize();
TableView* tableView = TableView::create(this, CCSizeMake(250, 60));
tableView->setDirection(kScrollViewDirectionHorizontal);
tableView->setPosition(ccp(20,winSize.height/2-30));
tableView->setDelegate(this);
this->addChild(tableView);
tableView->reloadData();
tableView = TableView::create(this, CCSizeMake(60, 250));
tableView->setDirection(kScrollViewDirectionVertical);
tableView->setPosition(ccp(winSize.width-150,winSize.height/2-120));
tableView->setDelegate(this);
tableView->setVerticalFillOrder(kTableViewFillTopDown);
this->addChild(tableView);
tableView->reloadData();
// Back Menu
MenuItemFont *itemBack = MenuItemFont::create("Back", CC_CALLBACK_1(TableViewTestLayer::toExtensionsMainLayer, this));
itemBack->setPosition(ccp(VisibleRect::rightBottom().x - 50, VisibleRect::rightBottom().y + 25));
Menu *menuBack = Menu::create(itemBack, NULL);
menuBack->setPosition(PointZero);
addChild(menuBack);
return true;
}
开发者ID:bassarisse,项目名称:LostInCaves,代码行数:34,代码来源:TableViewTestScene.cpp
示例7: if
//显示选中的难度相对应的排名
void RankScene::showRank(Ref* pSender, Control::EventType controlEvent)
{
SimpleAudioEngine::getInstance()->playEffect(music_click);
int news = 3001;
ControlButton* bt;
for (int i = 3001; i <= 3003; i++)
{
bt = (ControlButton *)this->getChildByTag(i);
if (bt == pSender)
{
news = i;
break;
}
}
if (news == selected) return;
//放大选择难度
this->getChildByTag(selected)->setScale(1.0f);
this->getChildByTag(news)->setScale(1.1f);
selected = news;
//选择难度
if (selected == 3001) opt = "easy"; //简单
else if (selected == 3002) opt = "normal"; //普通
else if (selected == 3003) opt = "hard"; //困难
//获取排名 CCTbaleView , tag = 3005
TableView *tb = (TableView *)this->getChildByTag(3005);
tb->reloadData();
}
开发者ID:PhamDinhTri,项目名称:Cocos_Sudoku,代码行数:33,代码来源:Rank.cpp
示例8: Point
bool SceneRule::init()
{
if (!Layer::init()) {
return false;
}
auto bg = KUtil::addSprite(this, KUtil::getPath(F_BG, "bg_3.png"), Point(HALF_WIDTH, 0), ANCHOR_CENTER_DOWN, 0);
bg->setScale(KUtil::getScale(FULL_WIDTH, FULL_HEIGHT, bg->getContentSize(), true));
Size size = Size(FULL_WIDTH-20, FULL_HEIGHT-160-10);
auto tbg = GameTool::addTextBg(this, size, Point(10, 160), ANCHOR_LEFT_DOWN, 10);
detailLabel = KUtil::addLabelConfig(tbg, DETAIL_POINT_MATCH, KUtil::getPath(F_FONT, "luoliti.ttf"), 30, Point(10, 10), Color4B(0, 0, 0, 255), ANCHOR_LEFT_DOWN, 10, Size(size.width-20, size.height-20), TextHAlignment::LEFT, TextVAlignment::TOP);
Vector<MenuItem *> itemArray;
GameTool::addBtn2(&itemArray, "返回", 32, Point(FULL_WIDTH-5, FULL_HEIGHT-5), ANCHOR_RIGHT_UP, CC_CALLBACK_1(SceneRule::callbackBack, this));
KUtil::addMenu(this, &itemArray, 30);
listQAKind.pushBack(QAKind::create(QAKIND_POINT_MATCH, "普通赛规则"));
listQAKind.pushBack(QAKind::create(QAKIND_HUNDRED_MATCH, "冲百赛规则"));
listQAKind.pushBack(QAKind::create(QAKIND_BIGTWO_RULE, "锄大地规则"));
cellHeight = 160;
cellWidth = 250;
TableView* tableView = TableView::create(this, Size(FULL_WIDTH, cellHeight));
tableView->setDirection(ScrollView::Direction::HORIZONTAL);
tableView->setPosition(Point(0, 0));
tableView->setDelegate(this);
this->addChild(tableView, 100);
tableView->reloadData();
return true;
}
开发者ID:keltonxian,项目名称:BigTwo,代码行数:35,代码来源:SceneRule.cpp
示例9: main
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
TableView w;
w.initializetablewidget();
w.show();
//+++++++++++++++++++++this is main from the hash function
return a.exec();
}
开发者ID:hcm007,项目名称:monitor_network,代码行数:9,代码来源:main.cpp
示例10: TableView_currentIndex
/** LuaStackSize TableView::currentIndex(lua_State *L)
* include/mimas/TableView.h:93
*/
static int TableView_currentIndex(lua_State *L) {
try {
TableView *self = *((TableView **)dub_checksdata(L, 1, "mimas.TableView"));
return self->currentIndex(L);
} catch (std::exception &e) {
lua_pushfstring(L, "currentIndex: %s", e.what());
} catch (...) {
lua_pushfstring(L, "currentIndex: Unknown exception");
}
return dub_error(L);
}
开发者ID:lubyk,项目名称:mimas,代码行数:14,代码来源:mimas_TableView.cpp
示例11: TableView_property
/** QVariant QObject::property(const char *name)
* bind/QObject.h:9
*/
static int TableView_property(lua_State *L) {
try {
TableView *self = *((TableView **)dub_checksdata(L, 1, "mimas.TableView"));
const char *name = dub_checkstring(L, 2);
return pushVariantInLua(L, self->property(name));
} catch (std::exception &e) {
lua_pushfstring(L, "property: %s", e.what());
} catch (...) {
lua_pushfstring(L, "property: Unknown exception");
}
return dub_error(L);
}
开发者ID:lubyk,项目名称:mimas,代码行数:15,代码来源:mimas_TableView.cpp
示例12: predict
Table<LabelType> predict(const TableView<DataType> &samples) {
std::vector<LabelType> predictions(samples.rowsNumber());
#pragma omp parallel for
for (size_t i = 0; i < samples.rowsNumber(); ++i) {
predictions[i] = predict(samples[i]);
}
return Table<LabelType> (baseLabels.columnsNames(),
std::make_move_iterator(predictions.begin()),
std::make_move_iterator(predictions.end()));
}
开发者ID:mindis,项目名称:faml,代码行数:12,代码来源:knn.hpp
示例13: TableView_scrollToTop
/** void QTableView::scrollToTop()
* bind/QTableView.h:14
*/
static int TableView_scrollToTop(lua_State *L) {
try {
TableView *self = *((TableView **)dub_checksdata(L, 1, "mimas.TableView"));
self->scrollToTop();
return 0;
} catch (std::exception &e) {
lua_pushfstring(L, "scrollToTop: %s", e.what());
} catch (...) {
lua_pushfstring(L, "scrollToTop: Unknown exception");
}
return dub_error(L);
}
开发者ID:lubyk,项目名称:mimas,代码行数:15,代码来源:mimas_TableView.cpp
示例14: TableView_activateWindow
/** void QWidget::activateWindow()
* bind/QWidget.h:35
*/
static int TableView_activateWindow(lua_State *L) {
try {
TableView *self = *((TableView **)dub_checksdata(L, 1, "mimas.TableView"));
self->activateWindow();
return 0;
} catch (std::exception &e) {
lua_pushfstring(L, "activateWindow: %s", e.what());
} catch (...) {
lua_pushfstring(L, "activateWindow: Unknown exception");
}
return dub_error(L);
}
开发者ID:lubyk,项目名称:mimas,代码行数:15,代码来源:mimas_TableView.cpp
示例15: TableView_windowTitle
/** QString QWidget::windowTitle()
* bind/QWidget.h:40
*/
static int TableView_windowTitle(lua_State *L) {
try {
TableView *self = *((TableView **)dub_checksdata(L, 1, "mimas.TableView"));
lua_pushstring(L, self->windowTitle().toUtf8());
return 1;
} catch (std::exception &e) {
lua_pushfstring(L, "windowTitle: %s", e.what());
} catch (...) {
lua_pushfstring(L, "windowTitle: Unknown exception");
}
return dub_error(L);
}
开发者ID:lubyk,项目名称:mimas,代码行数:15,代码来源:mimas_TableView.cpp
示例16: TableView_isFullScreen
/** bool QWidget::isFullScreen()
* bind/QWidget.h:36
*/
static int TableView_isFullScreen(lua_State *L) {
try {
TableView *self = *((TableView **)dub_checksdata(L, 1, "mimas.TableView"));
lua_pushboolean(L, self->isFullScreen());
return 1;
} catch (std::exception &e) {
lua_pushfstring(L, "isFullScreen: %s", e.what());
} catch (...) {
lua_pushfstring(L, "isFullScreen: Unknown exception");
}
return dub_error(L);
}
开发者ID:lubyk,项目名称:mimas,代码行数:15,代码来源:mimas_TableView.cpp
示例17: TableView_height
/** int QWidget::height()
* bind/QWidget.h:15
*/
static int TableView_height(lua_State *L) {
try {
TableView *self = *((TableView **)dub_checksdata(L, 1, "mimas.TableView"));
lua_pushnumber(L, self->height());
return 1;
} catch (std::exception &e) {
lua_pushfstring(L, "height: %s", e.what());
} catch (...) {
lua_pushfstring(L, "height: Unknown exception");
}
return dub_error(L);
}
开发者ID:lubyk,项目名称:mimas,代码行数:15,代码来源:mimas_TableView.cpp
示例18: TableView_setFocus
/** void QWidget::setFocus()
* bind/QWidget.h:20
*/
static int TableView_setFocus(lua_State *L) {
try {
TableView *self = *((TableView **)dub_checksdata(L, 1, "mimas.TableView"));
self->setFocus(Qt::OtherFocusReason);
return 0;
} catch (std::exception &e) {
lua_pushfstring(L, "setFocus: %s", e.what());
} catch (...) {
lua_pushfstring(L, "setFocus: Unknown exception");
}
return dub_error(L);
}
开发者ID:lubyk,项目名称:mimas,代码行数:15,代码来源:mimas_TableView.cpp
示例19: TableView_resizeColumnsToContents
/** void QTableView::resizeColumnsToContents()
* bind/QTableView.h:17
*/
static int TableView_resizeColumnsToContents(lua_State *L) {
try {
TableView *self = *((TableView **)dub_checksdata(L, 1, "mimas.TableView"));
self->resizeColumnsToContents();
return 0;
} catch (std::exception &e) {
lua_pushfstring(L, "resizeColumnsToContents: %s", e.what());
} catch (...) {
lua_pushfstring(L, "resizeColumnsToContents: Unknown exception");
}
return dub_error(L);
}
开发者ID:lubyk,项目名称:mimas,代码行数:15,代码来源:mimas_TableView.cpp
示例20: TableView_setStyleSheet
/** void QWidget::setStyleSheet(const char *text)
* bind/QWidget.h:52
*/
static int TableView_setStyleSheet(lua_State *L) {
try {
TableView *self = *((TableView **)dub_checksdata(L, 1, "mimas.TableView"));
const char *text = dub_checkstring(L, 2);
self->setStyleSheet(text);
return 0;
} catch (std::exception &e) {
lua_pushfstring(L, "setStyleSheet: %s", e.what());
} catch (...) {
lua_pushfstring(L, "setStyleSheet: Unknown exception");
}
return dub_error(L);
}
开发者ID:lubyk,项目名称:mimas,代码行数:16,代码来源:mimas_TableView.cpp
注:本文中的TableView类示例由纯净天空整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论