summaryrefslogtreecommitdiffstats
path: root/doc/html/chart-chartform-h.html
diff options
context:
space:
mode:
Diffstat (limited to 'doc/html/chart-chartform-h.html')
-rw-r--r--doc/html/chart-chartform-h.html36
1 files changed, 18 insertions, 18 deletions
diff --git a/doc/html/chart-chartform-h.html b/doc/html/chart-chartform-h.html
index 1b0c6155..01586c34 100644
--- a/doc/html/chart-chartform-h.html
+++ b/doc/html/chart-chartform-h.html
@@ -37,8 +37,8 @@ body { background: #ffffff; color: black; }
#include "element.h"
-#include &lt;<a href="qmainwindow-h.html">qmainwindow.h</a>&gt;
-#include &lt;<a href="qstringlist-h.html">qstringlist.h</a>&gt;
+#include &lt;<a href="qmainwindow-h.html">ntqmainwindow.h</a>&gt;
+#include &lt;<a href="qstringlist-h.html">ntqstringlist.h</a>&gt;
class CanvasView;
@@ -50,7 +50,7 @@ class TQPrinter;
class TQString;
-class ChartForm: public <a href="qmainwindow.html">TQMainWindow</a>
+class ChartForm: public <a href="ntqmainwindow.html">TQMainWindow</a>
{
Q_OBJECT
public:
@@ -59,14 +59,14 @@ public:
enum ChartType { PIE, VERTICAL_BAR, HORIZONTAL_BAR };
enum AddValuesType { NO, YES, AS_PERCENTAGE };
- ChartForm( const <a href="qstring.html">TQString</a>&amp; filename );
+ ChartForm( const <a href="ntqstring.html">TQString</a>&amp; filename );
~ChartForm();
int chartType() { return m_chartType; }
void setChanged( bool changed = TRUE ) { m_changed = changed; }
void drawElements();
- <a href="qpopupmenu.html">TQPopupMenu</a> *optionsMenu; // Why public? See canvasview.cpp
+ <a href="ntqpopupmenu.html">TQPopupMenu</a> *optionsMenu; // Why public? See canvasview.cpp
protected:
virtual void closeEvent( <a href="qcloseevent.html">TQCloseEvent</a> * );
@@ -81,7 +81,7 @@ private slots:
void filePrint();
void fileQuit();
void optionsSetData();
- void updateChartType( <a href="qaction.html">TQAction</a> *action );
+ void updateChartType( <a href="ntqaction.html">TQAction</a> *action );
void optionsSetFont();
void optionsSetOptions();
void helpHelp();
@@ -91,34 +91,34 @@ private slots:
private:
void init();
- void load( const <a href="qstring.html">TQString</a>&amp; filename );
+ void load( const <a href="ntqstring.html">TQString</a>&amp; filename );
bool okToClear();
void drawPieChart( const double scales[], double total, int count );
void drawVerticalBarChart( const double scales[], double total, int count );
void drawHorizontalBarChart( const double scales[], double total, int count );
- <a href="qstring.html">TQString</a> valueLabel( const <a href="qstring.html">TQString</a>&amp; label, double value, double total );
- void updateRecentFiles( const <a href="qstring.html">TQString</a>&amp; filename );
+ <a href="ntqstring.html">TQString</a> valueLabel( const <a href="ntqstring.html">TQString</a>&amp; label, double value, double total );
+ void updateRecentFiles( const <a href="ntqstring.html">TQString</a>&amp; filename );
void updateRecentFilesMenu();
void setChartType( ChartType chartType );
- <a href="qpopupmenu.html">TQPopupMenu</a> *fileMenu;
- <a href="qaction.html">TQAction</a> *optionsPieChartAction;
- <a href="qaction.html">TQAction</a> *optionsHorizontalBarChartAction;
- <a href="qaction.html">TQAction</a> *optionsVerticalBarChartAction;
+ <a href="ntqpopupmenu.html">TQPopupMenu</a> *fileMenu;
+ <a href="ntqaction.html">TQAction</a> *optionsPieChartAction;
+ <a href="ntqaction.html">TQAction</a> *optionsHorizontalBarChartAction;
+ <a href="ntqaction.html">TQAction</a> *optionsVerticalBarChartAction;
- <a href="qstring.html">TQString</a> m_filename;
- <a href="qstringlist.html">TQStringList</a> m_recentFiles;
- <a href="qcanvas.html">TQCanvas</a> *m_canvas;
+ <a href="ntqstring.html">TQString</a> m_filename;
+ <a href="ntqstringlist.html">TQStringList</a> m_recentFiles;
+ <a href="ntqcanvas.html">TQCanvas</a> *m_canvas;
CanvasView *m_canvasView;
bool m_changed;
ElementVector m_elements;
- <a href="qprinter.html">TQPrinter</a> *m_printer;
+ <a href="ntqprinter.html">TQPrinter</a> *m_printer;
ChartType m_chartType;
AddValuesType m_addValues;
int m_decimalPlaces;
- <a href="qfont.html">TQFont</a> m_font;
+ <a href="ntqfont.html">TQFont</a> m_font;
};
#endif