mirror of
https://gitlab.com/comunic/comunicterm
synced 2024-12-26 05:28:54 +00:00
Refactor project
This commit is contained in:
parent
1cbd35e0b8
commit
981d58bcb9
@ -9,10 +9,12 @@ SOURCES += \
|
|||||||
main.cpp \
|
main.cpp \
|
||||||
api_request.cpp \
|
api_request.cpp \
|
||||||
apiresponse.cpp \
|
apiresponse.cpp \
|
||||||
loginscreen.cpp
|
loginscreen.cpp \
|
||||||
|
ui_utils.cpp
|
||||||
|
|
||||||
HEADERS += \
|
HEADERS += \
|
||||||
config.h \
|
config.h \
|
||||||
api_request.h \
|
api_request.h \
|
||||||
apiresponse.h \
|
apiresponse.h \
|
||||||
loginscreen.h
|
loginscreen.h \
|
||||||
|
ui_utils.h
|
||||||
|
@ -5,6 +5,7 @@
|
|||||||
#include <iostream>
|
#include <iostream>
|
||||||
|
|
||||||
#include "loginscreen.h"
|
#include "loginscreen.h"
|
||||||
|
#include "ui_utils.h"
|
||||||
|
|
||||||
using namespace std;
|
using namespace std;
|
||||||
|
|
||||||
@ -48,22 +49,14 @@ void LoginScreen::getCredentials(string &email, string &pass)
|
|||||||
|
|
||||||
erase();
|
erase();
|
||||||
|
|
||||||
printw("ComunicTerm"); /* Print Hello World */
|
ui_utils::print_base_screen(stdscr);
|
||||||
|
|
||||||
|
|
||||||
// Get screen size
|
|
||||||
int row, col;
|
int row, col;
|
||||||
getmaxyx(stdscr, row, col);
|
getmaxyx(stdscr, row, col);
|
||||||
|
|
||||||
const string msg = "Light client";
|
|
||||||
mvprintw(0, (col-static_cast<int>(msg.length())), msg.c_str());
|
|
||||||
refresh();
|
|
||||||
|
|
||||||
|
|
||||||
int startX = (row-4*2)/2;
|
int startX = (row-4*2)/2;
|
||||||
int startY = (col-50)/2;
|
int startY = (col-50)/2;
|
||||||
|
|
||||||
|
|
||||||
mvprintw(startX, startY, "Please login to your Comunic account:");
|
mvprintw(startX, startY, "Please login to your Comunic account:");
|
||||||
|
|
||||||
|
|
||||||
|
23
ui_utils.cpp
Normal file
23
ui_utils.cpp
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
#include <ui_utils.h>
|
||||||
|
|
||||||
|
#include <string>
|
||||||
|
|
||||||
|
using namespace std;
|
||||||
|
|
||||||
|
void ui_utils::print_base_screen(WINDOW *w)
|
||||||
|
{
|
||||||
|
printw("ComunicTerm"); /* Print Hello World */
|
||||||
|
|
||||||
|
|
||||||
|
// Get screen size
|
||||||
|
int row, col;
|
||||||
|
getmaxyx(w, row, col);
|
||||||
|
|
||||||
|
const string msg = "Light client";
|
||||||
|
mvprintw(0, (col-static_cast<int>(msg.length())), msg.c_str());
|
||||||
|
refresh();
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user