diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-06-02 23:07:22 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-06-02 23:22:42 +0900 |
commit | 8ac0e970e4464d9f8f73c0fb34a178ff135be8c3 (patch) | |
tree | b95884617b9a37accc843676d5d42be4116a3f54 /doc/html/chart-chartform-cpp.html | |
parent | 68b81013e8668f50fc18b7e26a520ec93a7a1251 (diff) | |
download | tqt3-8ac0e970e4464d9f8f73c0fb34a178ff135be8c3.tar.gz tqt3-8ac0e970e4464d9f8f73c0fb34a178ff135be8c3.zip |
Rename ntqwidget* related files to equivalent tqwidget*
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/html/chart-chartform-cpp.html')
-rw-r--r-- | doc/html/chart-chartform-cpp.html | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/doc/html/chart-chartform-cpp.html b/doc/html/chart-chartform-cpp.html index cbb61428c..35557c9a9 100644 --- a/doc/html/chart-chartform-cpp.html +++ b/doc/html/chart-chartform-cpp.html @@ -75,7 +75,7 @@ const <a href="ntqstring.html">TQString</a> APP_KEY = "/Chart/"; <a name="f148"></a>ChartForm::ChartForm( const <a href="ntqstring.html">TQString</a>& filename ) : <a href="ntqmainwindow.html">TQMainWindow</a>( 0, 0, WDestructiveClose ) { - <a href="ntqwidget.html#setIcon">setIcon</a>( TQPixmap( options_piechart ) ); + <a href="tqwidget.html#setIcon">setIcon</a>( TQPixmap( options_piechart ) ); <a href="ntqaction.html">TQAction</a> *fileNewAction; <a href="ntqaction.html">TQAction</a> *fileOpenAction; @@ -250,15 +250,15 @@ const <a href="ntqstring.html">TQString</a> APP_KEY = "/Chart/"; <a name="x2873"></a> <a href="tqobject.html#connect">connect</a>( chartGroup, TQ_SIGNAL( <a href="qactiongroup.html#selected">selected</a>(TQAction*) ), this, TQ_SLOT( updateChartType(TQAction*) ) ); - <a href="ntqwidget.html#resize">resize</a>( windowWidth, windowHeight ); + <a href="tqwidget.html#resize">resize</a>( windowWidth, windowHeight ); if ( windowX != -1 || windowY != -1 ) - <a href="ntqwidget.html#move">move</a>( windowX, windowY ); + <a href="tqwidget.html#move">move</a>( windowX, windowY ); m_canvas = new <a href="tqcanvas.html">TQCanvas</a>( this ); -<a name="x2876"></a> m_canvas-><a href="tqcanvas.html#resize">resize</a>( <a href="ntqwidget.html#width">width</a>(), height() ); +<a name="x2876"></a> m_canvas-><a href="tqcanvas.html#resize">resize</a>( <a href="tqwidget.html#width">width</a>(), height() ); m_canvasView = new CanvasView( m_canvas, &m_elements, this ); <a href="ntqmainwindow.html#setCentralWidget">setCentralWidget</a>( m_canvasView ); - m_canvasView-><a href="ntqwidget.html#show">show</a>(); + m_canvasView-><a href="tqwidget.html#show">show</a>(); if ( !filename.<a href="ntqstring.html#isEmpty">isEmpty</a>() ) load( filename ); @@ -284,7 +284,7 @@ ChartForm::~ChartForm() void <a name="f149"></a>ChartForm::init() { - <a href="ntqwidget.html#setCaption">setCaption</a>( "Chart" ); + <a href="tqwidget.html#setCaption">setCaption</a>( "Chart" ); m_filename = TQString::null; m_changed = FALSE; @@ -308,7 +308,7 @@ void <a name="f149"></a>ChartForm::init() } } -<a name="x2896"></a>void ChartForm::<a href="ntqwidget.html#closeEvent">closeEvent</a>( <a href="qcloseevent.html">TQCloseEvent</a> * ) +<a name="x2896"></a>void ChartForm::<a href="tqwidget.html#closeEvent">closeEvent</a>( <a href="qcloseevent.html">TQCloseEvent</a> * ) { fileQuit(); } @@ -513,7 +513,7 @@ void <a name="f163"></a>ChartForm::optionsSetOptions() { OptionsForm *optionsForm = new OptionsForm( this ); optionsForm->chartTypeComboBox->setCurrentItem( m_chartType ); - optionsForm-><a href="ntqwidget.html#setFont">setFont</a>( m_font ); + optionsForm-><a href="tqwidget.html#setFont">setFont</a>( m_font ); switch ( m_addValues ) { case NO: optionsForm->noRadioButton->setChecked( TRUE ); @@ -529,7 +529,7 @@ void <a name="f163"></a>ChartForm::optionsSetOptions() if ( optionsForm-><a href="ntqdialog.html#exec">exec</a>() ) { setChartType( ChartType( optionsForm->chartTypeComboBox->currentItem()) ); -<a name="x2897"></a> m_font = optionsForm-><a href="ntqwidget.html#font">font</a>(); +<a name="x2897"></a> m_font = optionsForm-><a href="tqwidget.html#font">font</a>(); if ( optionsForm->noRadioButton->isChecked() ) m_addValues = NO; else if ( optionsForm->yesRadioButton->isChecked() ) |