Remove hardcoded stylesheets from lobby
Stop doing the "tagget stylesheets" monstrosity
This commit is contained in:
parent
354fbd239c
commit
679dcca079
@ -33,7 +33,7 @@ public:
|
|||||||
void append_chatmessage(QString f_name, QString f_message);
|
void append_chatmessage(QString f_name, QString f_message);
|
||||||
void append_error(QString f_message);
|
void append_error(QString f_message);
|
||||||
void set_player_count(int players_online, int max_players);
|
void set_player_count(int players_online, int max_players);
|
||||||
void set_stylesheet(QWidget *widget, QString target_tag);
|
void set_stylesheet(QWidget *widget);
|
||||||
void set_stylesheets();
|
void set_stylesheets();
|
||||||
void set_fonts();
|
void set_fonts();
|
||||||
void set_font(QWidget *widget, QString p_identifier);
|
void set_font(QWidget *widget, QString p_identifier);
|
||||||
|
@ -142,36 +142,21 @@ void Lobby::set_widgets()
|
|||||||
tr("Allows you to change various aspects of the client."));
|
tr("Allows you to change various aspects of the client."));
|
||||||
|
|
||||||
set_size_and_pos(ui_server_list, "server_list");
|
set_size_and_pos(ui_server_list, "server_list");
|
||||||
ui_server_list->setStyleSheet("background-color: rgba(0, 0, 0, 0);"
|
|
||||||
"font: bold;");
|
|
||||||
|
|
||||||
set_size_and_pos(ui_server_search, "server_search");
|
set_size_and_pos(ui_server_search, "server_search");
|
||||||
ui_server_search->setStyleSheet("background-color: rgba(0, 0, 0, 0);");
|
|
||||||
|
|
||||||
set_size_and_pos(ui_player_count, "player_count");
|
set_size_and_pos(ui_player_count, "player_count");
|
||||||
ui_player_count->setText(tr("Offline"));
|
ui_player_count->setText(tr("Offline"));
|
||||||
ui_player_count->setStyleSheet("font: bold;"
|
|
||||||
"color: white;"
|
|
||||||
"qproperty-alignment: AlignCenter;");
|
|
||||||
|
|
||||||
set_size_and_pos(ui_description, "description");
|
set_size_and_pos(ui_description, "description");
|
||||||
ui_description->setReadOnly(true);
|
ui_description->setReadOnly(true);
|
||||||
ui_description->setStyleSheet("background-color: rgba(0, 0, 0, 0);"
|
|
||||||
"color: white;");
|
|
||||||
|
|
||||||
set_size_and_pos(ui_chatbox, "chatbox");
|
set_size_and_pos(ui_chatbox, "chatbox");
|
||||||
ui_chatbox->setReadOnly(true);
|
ui_chatbox->setReadOnly(true);
|
||||||
ui_chatbox->setStyleSheet(
|
|
||||||
"QTextBrowser{background-color: rgba(0, 0, 0, 0);}");
|
|
||||||
|
|
||||||
set_size_and_pos(ui_chatname, "chatname");
|
set_size_and_pos(ui_chatname, "chatname");
|
||||||
ui_chatname->setStyleSheet("background-color: rgba(0, 0, 0, 0);"
|
|
||||||
"selection-background-color: rgba(0, 0, 0, 0);");
|
|
||||||
|
|
||||||
set_size_and_pos(ui_chatmessage, "chatmessage");
|
set_size_and_pos(ui_chatmessage, "chatmessage");
|
||||||
ui_chatmessage->setStyleSheet(
|
|
||||||
"background-color: rgba(0, 0, 0, 0);"
|
|
||||||
"selection-background-color: rgba(0, 0, 0, 0);");
|
|
||||||
|
|
||||||
ui_loading_background->resize(this->width(), this->height());
|
ui_loading_background->resize(this->width(), this->height());
|
||||||
ui_loading_background->set_image("loadingbackground");
|
ui_loading_background->set_image("loadingbackground");
|
||||||
@ -181,8 +166,6 @@ void Lobby::set_widgets()
|
|||||||
ui_loading_text->setReadOnly(true);
|
ui_loading_text->setReadOnly(true);
|
||||||
ui_loading_text->setAlignment(Qt::AlignCenter);
|
ui_loading_text->setAlignment(Qt::AlignCenter);
|
||||||
ui_loading_text->setFrameStyle(QFrame::NoFrame);
|
ui_loading_text->setFrameStyle(QFrame::NoFrame);
|
||||||
ui_loading_text->setStyleSheet("background-color: rgba(0, 0, 0, 0);"
|
|
||||||
"color: rgba(255, 128, 0, 255);");
|
|
||||||
ui_loading_text->append(tr("Loading"));
|
ui_loading_text->append(tr("Loading"));
|
||||||
|
|
||||||
set_size_and_pos(ui_progress_bar, "progress_bar");
|
set_size_and_pos(ui_progress_bar, "progress_bar");
|
||||||
@ -223,24 +206,17 @@ void Lobby::set_fonts()
|
|||||||
set_font(ui_server_list, "server_list");
|
set_font(ui_server_list, "server_list");
|
||||||
}
|
}
|
||||||
|
|
||||||
void Lobby::set_stylesheet(QWidget *widget, QString target_tag)
|
void Lobby::set_stylesheet(QWidget *widget)
|
||||||
{
|
{
|
||||||
QString f_file = "lobby_stylesheets.css";
|
QString f_file = "lobby_stylesheets.css";
|
||||||
QString style_sheet_string =
|
QString style_sheet_string = ao_app->get_stylesheet(f_file);
|
||||||
ao_app->get_tagged_stylesheet(target_tag, f_file);
|
|
||||||
if (style_sheet_string != "")
|
if (style_sheet_string != "")
|
||||||
widget->setStyleSheet(style_sheet_string);
|
widget->setStyleSheet(style_sheet_string);
|
||||||
}
|
}
|
||||||
|
|
||||||
void Lobby::set_stylesheets()
|
void Lobby::set_stylesheets()
|
||||||
{
|
{
|
||||||
set_stylesheet(ui_player_count, "[PLAYER COUNT]");
|
set_stylesheet(this);
|
||||||
set_stylesheet(ui_description, "[DESCRIPTION]");
|
|
||||||
set_stylesheet(ui_chatbox, "[CHAT BOX]");
|
|
||||||
set_stylesheet(ui_chatname, "[CHAT NAME]");
|
|
||||||
set_stylesheet(ui_chatmessage, "[CHAT MESSAGE]");
|
|
||||||
set_stylesheet(ui_loading_text, "[LOADING TEXT]");
|
|
||||||
set_stylesheet(ui_server_list, "[SERVER LIST]");
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void Lobby::set_font(QWidget *widget, QString p_identifier)
|
void Lobby::set_font(QWidget *widget, QString p_identifier)
|
||||||
|
Loading…
Reference in New Issue
Block a user