Gui: Rename 'Output window' to 'Report view'

Closes #7659
This commit is contained in:
luz paz
2022-11-07 20:18:36 -05:00
committed by Chris Hennes
parent 549774e953
commit 30b918dac8
6 changed files with 10 additions and 10 deletions

View File

@@ -11,7 +11,7 @@
</rect>
</property>
<property name="windowTitle">
<string>Output window</string>
<string>Report view</string>
</property>
<layout class="QGridLayout" name="gridLayout_3">
<item row="0" column="0">

View File

@@ -32,7 +32,7 @@ namespace Dialog {
class Ui_DlgReportView;
/** The DlgReportViewImp class implements the available settings for the
* report output window to change.
* Report View to change.
* \author Werner Mayer
*/
class DlgReportViewImp : public PreferencePage

View File

@@ -163,7 +163,7 @@ Py::Object PythonStderr::isatty()
void OutputStdout::init_type()
{
behaviors().name("OutputStdout");
behaviors().doc("Redirection of stdout to FreeCAD's output window");
behaviors().doc("Redirection of stdout to FreeCAD's report view");
// you must have overwritten the virtual functions
behaviors().supportRepr();
add_varargs_method("write",&OutputStdout::write,"write()");
@@ -228,7 +228,7 @@ Py::Object OutputStdout::isatty()
void OutputStderr::init_type()
{
behaviors().name("OutputStderr");
behaviors().doc("Redirection of stdout to FreeCAD's output window");
behaviors().doc("Redirection of stdout to FreeCAD's report view");
// you must have overwritten the virtual functions
behaviors().supportRepr();
add_varargs_method("write",&OutputStderr::write,"write()");

View File

@@ -86,7 +86,7 @@ public:
/**
* Python class for redirection of stdout to FreeCAD's output
* console window. This allows to report all Python output to
* the output window which simplifies debugging scripts.
* the report view which simplifies debugging scripts.
* @see PythonStdout
* @see PythonStderr
* @author Werner Mayer
@@ -109,7 +109,7 @@ public:
/**
* Python class for redirection of stderr to FreeCAD's output
* console window. This allows to report all Python errors to
* the output window which simplifies error tracking.
* the report view which simplifies error tracking.
* @see PythonStdout
* @see PythonStderr
* @author Werner Mayer

View File

@@ -69,7 +69,7 @@ ReportView::ReportView( QWidget* parent )
tabLayout->addWidget( tabWidget, 0, 0 );
// create the output window
// create the output window for 'Report view'
tabOutput = new ReportOutput();
tabOutput->setWindowTitle(tr("Output"));
tabOutput->setWindowIcon(BitmapFactory().pixmap("MacroEditor"));
@@ -571,7 +571,7 @@ void ReportOutput::contextMenuEvent ( QContextMenuEvent * e )
errAct->setChecked(bErr);
auto showOnMenu = new QMenu (optionMenu);
showOnMenu->setTitle(tr("Show output window on"));
showOnMenu->setTitle(tr("Show Report view on"));
optionMenu->addMenu(showOnMenu);
QAction* showNormAct = showOnMenu->addAction(tr("Normal messages"), this, SLOT(onToggleShowReportViewOnNormalMessage()));

View File

@@ -59,7 +59,7 @@ protected:
private:
QTabWidget* tabWidget;
ReportOutput* tabOutput; /**< Output window */
ReportOutput* tabOutput; /**< Output 'Report view' window */
PythonConsole* tabPython; /**< Python console */
};
@@ -118,7 +118,7 @@ private:
//@}
};
/** Output window to show messages.
/** Output window 'Report view' to show messages.
* @see Base::ILogger
* @see QTextEdit
* \author Werner Mayer