661 } |
661 } |
662 |
662 |
663 return val; |
663 return val; |
664 } |
664 } |
665 |
665 |
666 // ========================================================================================================================= |
666 // =============================================================================================== |
667 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * |
667 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * |
668 // ========================================================================================================================= |
668 // =============================================================================================== |
669 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * |
669 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * |
670 // ========================================================================================================================= |
670 // =============================================================================================== |
671 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * |
671 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * |
672 // ========================================================================================================================= |
672 // =============================================================================================== |
673 KeySequenceDialog::KeySequenceDialog (QKeySequence seq, QWidget* parent, Qt::WindowFlags f) : |
673 KeySequenceDialog::KeySequenceDialog (QKeySequence seq, QWidget* parent, Qt::WindowFlags f) : |
674 QDialog (parent, f), seq (seq) |
674 QDialog (parent, f), seq (seq) |
675 { lb_output = new QLabel; |
675 { lb_output = new QLabel; |
676 IMPLEMENT_DIALOG_BUTTONS |
676 IMPLEMENT_DIALOG_BUTTONS |
677 |
677 |
678 setWhatsThis ("Into this dialog you can input a key sequence for use as a " |
678 setWhatsThis (tr ("Into this dialog you can input a key sequence for use as a " |
679 "shortcut in LDForge. Use OK to confirm the new shortcut and Cancel to " |
679 "shortcut in LDForge. Use OK to confirm the new shortcut and Cancel to " |
680 "dismiss."); |
680 "dismiss.")); |
681 |
681 |
682 QVBoxLayout* layout = new QVBoxLayout; |
682 QVBoxLayout* layout = new QVBoxLayout; |
683 layout->addWidget (lb_output); |
683 layout->addWidget (lb_output); |
684 layout->addWidget (bbx_buttons); |
684 layout->addWidget (bbx_buttons); |
685 setLayout (layout); |
685 setLayout (layout); |