mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-06-25 16:13:54 -07:00
simplify hex hint
This commit is contained in:
parent
a7faa5c139
commit
cb5b8d34b2
2 changed files with 4 additions and 10 deletions
|
|
@ -806,7 +806,7 @@ MessagesSettingsPage::MessagesSettingsPage()
|
||||||
|
|
||||||
mentionColor = new QLineEdit();
|
mentionColor = new QLineEdit();
|
||||||
mentionColor->setClearButtonEnabled(enable);
|
mentionColor->setClearButtonEnabled(enable);
|
||||||
mentionColor->setPlaceholderText(tr("HEX Color Code"));
|
mentionColor->setPlaceholderText(tr("Color Code"));
|
||||||
mentionColor->setText(SettingsCache::instance().getChatMentionColor());
|
mentionColor->setText(SettingsCache::instance().getChatMentionColor());
|
||||||
updateMentionPreview();
|
updateMentionPreview();
|
||||||
connect(mentionColor, SIGNAL(textChanged(QString)), this, SLOT(updateColor(QString)));
|
connect(mentionColor, SIGNAL(textChanged(QString)), this, SLOT(updateColor(QString)));
|
||||||
|
|
@ -832,7 +832,6 @@ MessagesSettingsPage::MessagesSettingsPage()
|
||||||
chatGrid->addWidget(&invertMentionForeground, 0, 1);
|
chatGrid->addWidget(&invertMentionForeground, 0, 1);
|
||||||
chatGrid->addWidget(mentionColor, 0, 2);
|
chatGrid->addWidget(mentionColor, 0, 2);
|
||||||
chatGrid->addWidget(&chatMentionCompleterCheckbox, 1, 0, 1, 2);
|
chatGrid->addWidget(&chatMentionCompleterCheckbox, 1, 0, 1, 2);
|
||||||
chatGrid->addWidget(&hexLabel, 1, 2);
|
|
||||||
chatGrid->addWidget(&ignoreUnregUsersMainChat, 2, 0, 1, 3);
|
chatGrid->addWidget(&ignoreUnregUsersMainChat, 2, 0, 1, 3);
|
||||||
chatGrid->addWidget(&ignoreUnregUserMessages, 3, 0, 1, 3);
|
chatGrid->addWidget(&ignoreUnregUserMessages, 3, 0, 1, 3);
|
||||||
chatGrid->addWidget(&messagePopups, 4, 0, 1, 3);
|
chatGrid->addWidget(&messagePopups, 4, 0, 1, 3);
|
||||||
|
|
@ -843,7 +842,7 @@ MessagesSettingsPage::MessagesSettingsPage()
|
||||||
|
|
||||||
highlightColor = new QLineEdit();
|
highlightColor = new QLineEdit();
|
||||||
highlightColor->setClearButtonEnabled(enable);
|
highlightColor->setClearButtonEnabled(enable);
|
||||||
highlightColor->setPlaceholderText(tr("HEX Color Code"));
|
highlightColor->setPlaceholderText(tr("Color Code"));
|
||||||
highlightColor->setText(SettingsCache::instance().getChatHighlightColor());
|
highlightColor->setText(SettingsCache::instance().getChatHighlightColor());
|
||||||
updateHighlightPreview();
|
updateHighlightPreview();
|
||||||
connect(highlightColor, SIGNAL(textChanged(QString)), this, SLOT(updateHighlightColor(QString)));
|
connect(highlightColor, SIGNAL(textChanged(QString)), this, SLOT(updateHighlightColor(QString)));
|
||||||
|
|
@ -852,7 +851,6 @@ MessagesSettingsPage::MessagesSettingsPage()
|
||||||
highlightNotice->addWidget(customAlertString, 0, 0);
|
highlightNotice->addWidget(customAlertString, 0, 0);
|
||||||
highlightNotice->addWidget(&invertHighlightForeground, 0, 1);
|
highlightNotice->addWidget(&invertHighlightForeground, 0, 1);
|
||||||
highlightNotice->addWidget(highlightColor, 0, 2);
|
highlightNotice->addWidget(highlightColor, 0, 2);
|
||||||
highlightNotice->addWidget(&hexHighlightLabel, 1, 2);
|
|
||||||
highlightNotice->addWidget(&customAlertStringLabel, 1, 0, 1, 2);
|
highlightNotice->addWidget(&customAlertStringLabel, 1, 0, 1, 2);
|
||||||
highlightGroupBox = new QGroupBox;
|
highlightGroupBox = new QGroupBox;
|
||||||
highlightGroupBox->setLayout(highlightNotice);
|
highlightGroupBox->setLayout(highlightNotice);
|
||||||
|
|
@ -996,13 +994,11 @@ void MessagesSettingsPage::retranslateUi()
|
||||||
messageShortcuts->setTitle(tr("In-game message macros"));
|
messageShortcuts->setTitle(tr("In-game message macros"));
|
||||||
ignoreUnregUsersMainChat.setText(tr("Ignore chat room messages sent by unregistered users"));
|
ignoreUnregUsersMainChat.setText(tr("Ignore chat room messages sent by unregistered users"));
|
||||||
ignoreUnregUserMessages.setText(tr("Ignore private messages sent by unregistered users"));
|
ignoreUnregUserMessages.setText(tr("Ignore private messages sent by unregistered users"));
|
||||||
invertMentionForeground.setText(tr("Invert text color"));
|
invertMentionForeground.setText(tr("Invert text color (HEX)"));
|
||||||
invertHighlightForeground.setText(tr("Invert text color"));
|
invertHighlightForeground.setText(tr("Invert text color (HEX)"));
|
||||||
messagePopups.setText(tr("Enable desktop notifications for private messages"));
|
messagePopups.setText(tr("Enable desktop notifications for private messages"));
|
||||||
mentionPopups.setText(tr("Enable desktop notification for mentions"));
|
mentionPopups.setText(tr("Enable desktop notification for mentions"));
|
||||||
roomHistory.setText(tr("Enable room message history on join"));
|
roomHistory.setText(tr("Enable room message history on join"));
|
||||||
hexLabel.setText(tr("(Color is hexadecimal)"));
|
|
||||||
hexHighlightLabel.setText(tr("(Color is hexadecimal)"));
|
|
||||||
customAlertStringLabel.setText(tr("Separate words with a space, alphanumeric characters only"));
|
customAlertStringLabel.setText(tr("Separate words with a space, alphanumeric characters only"));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -206,8 +206,6 @@ private:
|
||||||
QLineEdit *mentionColor;
|
QLineEdit *mentionColor;
|
||||||
QLineEdit *highlightColor;
|
QLineEdit *highlightColor;
|
||||||
QLineEdit *customAlertString;
|
QLineEdit *customAlertString;
|
||||||
QLabel hexLabel;
|
|
||||||
QLabel hexHighlightLabel;
|
|
||||||
QLabel customAlertStringLabel;
|
QLabel customAlertStringLabel;
|
||||||
|
|
||||||
void storeSettings();
|
void storeSettings();
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue