|
|
|
|
@ -34,7 +34,7 @@ infoDialog::infoDialog( QWidget* parent ) |
|
|
|
|
QVBoxLayout *topLayout1 = new QVBoxLayout( page1, 0, 6 ); |
|
|
|
|
TextLabel1 = new QTextEdit(page1); |
|
|
|
|
TextLabel1->setReadOnly(true); |
|
|
|
|
QToolTip::add( TextLabel1, i18n("Information on the currently loaded DVI-file.") ); |
|
|
|
|
TextLabel1->setToolTip( i18n("Information on the currently loaded DVI-file.") ); |
|
|
|
|
topLayout1->addWidget( TextLabel1 ); |
|
|
|
|
|
|
|
|
|
QFrame *page2 = addPage( i18n("Fonts") ); |
|
|
|
|
@ -43,7 +43,7 @@ infoDialog::infoDialog( QWidget* parent ) |
|
|
|
|
TextLabel2->setReadOnly(true); |
|
|
|
|
TextLabel2->setMinimumWidth(fontMetrics().maxWidth()*40); |
|
|
|
|
TextLabel2->setMinimumHeight(fontMetrics().height()*10); |
|
|
|
|
QToolTip::add( TextLabel2, i18n("Information on currently loaded fonts.") ); |
|
|
|
|
TextLabel2->setToolTip( i18n("Information on currently loaded fonts.") ); |
|
|
|
|
TextLabel2->setWhatsThis( i18n("This text field shows detailed information about the currently loaded fonts. " |
|
|
|
|
"This is useful for experts who want to locate problems in the setup of TeX or KDVI.") ); |
|
|
|
|
topLayout2->addWidget( TextLabel2 ); |
|
|
|
|
@ -53,7 +53,7 @@ infoDialog::infoDialog( QWidget* parent ) |
|
|
|
|
TextLabel3 = new QTextEdit(page3); |
|
|
|
|
TextLabel3->setReadOnly(true); |
|
|
|
|
TextLabel3->setText( i18n("No output from any external program received.") ); |
|
|
|
|
QToolTip::add( TextLabel3, i18n("Output of external programs.") ); |
|
|
|
|
TextLabel3->setToolTip( i18n("Output of external programs.") ); |
|
|
|
|
TextLabel3->setWhatsThis( i18n("KDVI uses external programs, such as MetaFont, dvipdfm or dvips. " |
|
|
|
|
"This text field shows the output of these programs. " |
|
|
|
|
"That is useful for experts who want to find problems in the setup of TeX or KDVI.") ); |
|
|
|
|
|