forked from TelemetriaCheetah/Programa-GP
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbacklog.cpp
48 lines (37 loc) · 1019 Bytes
/
backlog.cpp
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
#include "backlog.h"
#include "ui_backlog.h"
extern QString estilo_normal;
extern Dados_jogador pz;
Backlog::Backlog(QWidget *parent) :
QMainWindow(parent),
ui(new Ui::Backlog)
{
ui->setupUi(this);
ui->centralwidget->setStyleSheet(estilo_normal);
}
Backlog::~Backlog()
{
delete ui;
}
void Backlog::on_btn_atualiza_clicked()
{
QSqlQuery query;
query.prepare("SELECT * FROM "+pz.getPokerTable()+"_sprint ");
query.exec();
QSqlQueryModel *modal = new QSqlQueryModel();
modal->setQuery(query);
ui->tableView->setModel(modal);
}
void Backlog::on_tableView_doubleClicked(const QModelIndex &index)
{
}
void Backlog::on_btn_planejar_clicked()
{
QModelIndexList selection = ui->tableView->selectionModel()->selectedRows();
for(int i=0; i< selection.count(); i++)
{
QModelIndex index = selection.at(i);
//qDebug() << index.row();
qDebug() << ui->tableView->model()->data(ui->tableView->model()->index(index.row(),4)).toString();
}
}