Skip to content

Commit 6a8e160

Browse files
author
Caio Tácito Borges da Costa
committed
commit inicial
1 parent a0029e5 commit 6a8e160

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

83 files changed

+3915
-0
lines changed

Diff for: Logo-branco-e-vermelho.png

56.3 KB

Diff for: buttons/anuncios.png

1.42 KB

Diff for: buttons/anuncios_hover.png

1.35 KB

Diff for: buttons/backlog.png

1.56 KB

Diff for: buttons/backlog_hover.png

1.58 KB

Diff for: buttons/backlog_pressed.png

1.57 KB

Diff for: buttons/btn_atualiza.png

1.1 KB

Diff for: buttons/btn_atualiza_hover.png

1.04 KB

Diff for: buttons/btn_atualiza_pressed.png

1.08 KB

Diff for: buttons/btn_prox.png

1.08 KB

Diff for: buttons/btn_prox_hover.png

1.02 KB

Diff for: buttons/btn_prox_pressed.png

1.07 KB

Diff for: buttons/dashboard.png

1.68 KB

Diff for: buttons/dashboard_hover.png

1.57 KB

Diff for: buttons/dashboard_pressed.png

1.67 KB

Diff for: buttons/kanban.png

1.2 KB

Diff for: buttons/kanban_hover.png

1.16 KB

Diff for: buttons/kanban_pressed.png

1.2 KB

Diff for: buttons/kanban_pressed_1.png

1.4 KB

Diff for: buttons/login.png

520 Bytes

Diff for: buttons/login_hover.png

499 Bytes

Diff for: buttons/login_pressed.png

512 Bytes

Diff for: buttons/menu.png

1.04 KB

Diff for: buttons/menu_hover.png

1 KB

Diff for: buttons/menu_pressed.png

1.01 KB

Diff for: buttons/projeto.png

1.17 KB

Diff for: buttons/projeto_hover.png

1.12 KB

Diff for: buttons/projeto_pressed.png

1.18 KB

Diff for: buttons/sair.png

670 Bytes

Diff for: buttons/sair_hover.png

664 Bytes

Diff for: buttons/sair_pressed.png

676 Bytes

Diff for: cartas/c1.png

12.3 KB

Diff for: cartas/c13.png

13.5 KB

Diff for: cartas/c13_hover.png

15 KB

Diff for: cartas/c13_select.png

12.7 KB

Diff for: cartas/c1_hover.png

13.9 KB

Diff for: cartas/c1_select.png

11.6 KB

Diff for: cartas/c2.png

13.3 KB

Diff for: cartas/c2_hover.png

14.8 KB

Diff for: cartas/c2_select.png

12.5 KB

Diff for: cartas/c3.png

12.8 KB

Diff for: cartas/c3_hover.png

14.4 KB

Diff for: cartas/c3_select.png

12.1 KB

Diff for: cartas/c5.png

13 KB

Diff for: cartas/c5_hover.png

14.6 KB

Diff for: cartas/c5_select.png

12.3 KB

Diff for: cartas/c8.png

12.9 KB

Diff for: cartas/c8_hover.png

14.4 KB

Diff for: cartas/c8_select.png

12.2 KB

Diff for: cartas/card_back.png

25.9 KB

Diff for: cartas/cpi.png

12.6 KB

Diff for: cartas/cpi_hover.png

14 KB

Diff for: cartas/cpi_select.png

11.8 KB

Diff for: cartas/cs.png

12.8 KB

Diff for: cartas/cs_hover.png

14.3 KB

Diff for: cartas/cs_select.png

12.2 KB

Diff for: dados_jogador.cpp

+78
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,78 @@
1+
#include "dados_jogador.h"
2+
#include <QtDebug>
3+
Dados_jogador::Dados_jogador()
4+
{
5+
6+
}
7+
8+
void Dados_jogador::setJogador(int a)
9+
{
10+
jogador = a;
11+
}
12+
13+
int Dados_jogador::getJogador()
14+
{
15+
return jogador;
16+
}
17+
18+
void Dados_jogador::setNome(QString a)
19+
{
20+
nome = a;
21+
}
22+
23+
void Dados_jogador::setNick(QString a)
24+
{
25+
nick = a;
26+
}
27+
28+
QString Dados_jogador::getNome()
29+
{
30+
return nome;
31+
}
32+
33+
QString Dados_jogador::getNick()
34+
{
35+
return nick;
36+
}
37+
38+
QString Dados_jogador::getSubequipe()
39+
{
40+
return subequipe;
41+
}
42+
43+
void Dados_jogador::setSubequipe(QString a)
44+
{
45+
subequipe = a;
46+
}
47+
48+
QString Dados_jogador::getPokerTable()
49+
{
50+
return poker_table;
51+
}
52+
53+
void Dados_jogador::setPokerTable(QString a)
54+
{
55+
poker_table = a;
56+
}
57+
58+
void Dados_jogador::setContagem(int a)
59+
{
60+
cont = a;
61+
}
62+
63+
int Dados_jogador::getContagem()
64+
{
65+
return cont;
66+
}
67+
68+
QString Dados_jogador::getSubequipeUsuario()
69+
{
70+
if(subequipe=="elt")
71+
return "Eletrônica";
72+
else if(subequipe=="est")
73+
return "Estrutura";
74+
else if(subequipe=="pwt")
75+
return "Powertrain";
76+
}
77+
78+

Diff for: dados_jogador.h

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
#ifndef DADOS_JOGADOR_H
2+
#define DADOS_JOGADOR_H
3+
4+
#include <QMainWindow>
5+
#include <QTimer>
6+
7+
class Dados_jogador
8+
{
9+
private:
10+
int jogador;
11+
int cont;
12+
QString nome;
13+
QString nick;
14+
QString subequipe;
15+
QString poker_table;
16+
public:
17+
Dados_jogador();
18+
void setJogador(int);
19+
int getJogador();
20+
QString getNome();
21+
void setNome(QString a);
22+
QString getNick();
23+
void setNick(QString a);
24+
QString getSubequipe();
25+
void setSubequipe(QString a);
26+
QString getPokerTable();
27+
void setPokerTable(QString a);
28+
void setContagem(int a);
29+
int getContagem();
30+
QString getSubequipeUsuario();
31+
};
32+
33+
#endif // DADOS_JOGADOR_H

Diff for: erro404.cpp

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
#include "erro404.h"
2+
#include "ui_erro404.h"
3+
4+
erro404::erro404(QWidget *parent) :
5+
QMainWindow(parent),
6+
ui(new Ui::erro404)
7+
{
8+
ui->setupUi(this);
9+
}
10+
11+
erro404::~erro404()
12+
{
13+
delete ui;
14+
}

Diff for: erro404.h

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
#ifndef ERRO404_H
2+
#define ERRO404_H
3+
4+
#include <QMainWindow>
5+
6+
namespace Ui {
7+
class erro404;
8+
}
9+
10+
class erro404 : public QMainWindow
11+
{
12+
Q_OBJECT
13+
14+
public:
15+
explicit erro404(QWidget *parent = nullptr);
16+
~erro404();
17+
18+
private:
19+
Ui::erro404 *ui;
20+
};
21+
22+
#endif // ERRO404_H

0 commit comments

Comments
 (0)