Use Qt standard shortcuts for printing, bold, italic, and underline.

In theory these will automatically get localized, since they're using
Qt's official enums.
This commit is contained in:
sawinglogz 2020-01-22 20:10:43 -05:00
parent c4d16b7169
commit 94e39c2733
4 changed files with 6 additions and 10 deletions

View File

@ -122,6 +122,10 @@ Daily::Daily(QWidget *parent,gGraphView * shared)
qDebug() << "Creating new Daily object";
ui->setupUi(this);
ui->JournalNotesBold->setShortcut(QKeySequence::Bold);
ui->JournalNotesItalic->setShortcut(QKeySequence::Italic);
ui->JournalNotesUnderline->setShortcut(QKeySequence::Underline);
// Remove Incomplete Extras Tab
//ui->tabWidget->removeTab(3);

View File

@ -1049,9 +1049,6 @@ QToolButton:pressed {
<property name="text">
<string> i </string>
</property>
<property name="shortcut">
<string notr="true">Ctrl+I</string>
</property>
</widget>
</item>
<item>
@ -1065,9 +1062,6 @@ QToolButton:pressed {
<property name="text">
<string>B</string>
</property>
<property name="shortcut">
<string notr="true">Ctrl+B</string>
</property>
</widget>
</item>
<item>
@ -1080,9 +1074,6 @@ QToolButton:pressed {
<property name="text">
<string>u</string>
</property>
<property name="shortcut">
<string notr="true">Ctrl+U</string>
</property>
</widget>
</item>
<item>

View File

@ -132,6 +132,7 @@ void MainWindow::SetupGUI()
ui->action_About->setMenuRole(QAction::AboutRole);
ui->action_Preferences->setMenuRole(QAction::PreferencesRole);
#endif
ui->actionPrint_Report->setShortcuts(QKeySequence::Print);
ui->actionLine_Cursor->setChecked(AppSetting->lineCursorMode());
ui->actionPie_Chart->setChecked(AppSetting->showPieChart());

View File

@ -3248,7 +3248,7 @@ p, li { white-space: pre-wrap; }
<string>Show Pie Chart on Daily page</string>
</property>
<property name="shortcut">
<string>Ctrl+P</string>
<string>F3</string>
</property>
</action>
<action name="action_Standard_Graph_Order">