From d796c9dd933ab96ec83b9a634feedd5d32e1ba3f Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Tue, 8 Nov 2011 12:31:36 -0600 Subject: Test conversion to TQt3 from Qt3 8c6fc1f8e35fd264dd01c582ca5e7549b32ab731 --- doc/html/chart-optionsform-h.html | 102 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 102 insertions(+) create mode 100644 doc/html/chart-optionsform-h.html (limited to 'doc/html/chart-optionsform-h.html') diff --git a/doc/html/chart-optionsform-h.html b/doc/html/chart-optionsform-h.html new file mode 100644 index 000000000..4d35bb7fa --- /dev/null +++ b/doc/html/chart-optionsform-h.html @@ -0,0 +1,102 @@ + + + + + +chart/optionsform.h Example File + + + + + + + +
+ +Home + | +All Classes + | +Main Classes + | +Annotated + | +Grouped Classes + | +Functions +

chart/optionsform.h Example File

+ + +
#ifndef OPTIONSFORM_H
+#define OPTIONSFORM_H
+
+#include <qdialog.h>
+
+class TQButtonGroup;
+class TQComboBox;
+class TQFrame;
+class TQGridLayout;
+class TQHBoxLayout;
+class TQLabel;
+class TQPushButton;
+class TQRadioButton;
+class TQSpinBox;
+class TQVBoxLayout;
+
+
+class OptionsForm : public TQDialog
+{
+    Q_OBJECT
+public:
+    OptionsForm( TQWidget* parent = 0, const char* name = "options form",
+                 bool modal = FALSE, WFlags f = 0 );
+    ~OptionsForm() {}
+
+    TQFont font() const { return m_font; }
+    void setFont( TQFont font );
+
+    TQLabel *chartTypeTextLabel;
+    TQComboBox *chartTypeComboBox;
+    TQPushButton *fontPushButton;
+    TQLabel *fontTextLabel;
+    TQFrame *addValuesFrame;
+    TQButtonGroup *addValuesButtonGroup;
+    TQRadioButton *noRadioButton;
+    TQRadioButton *yesRadioButton;
+    TQRadioButton *asPercentageRadioButton;
+    TQLabel *decimalPlacesTextLabel;
+    TQSpinBox *decimalPlacesSpinBox;
+    TQPushButton *okPushButton;
+    TQPushButton *cancelPushButton;
+
+protected slots:
+    void chooseFont();
+
+protected:
+    TQVBoxLayout *optionsFormLayout;
+    TQHBoxLayout *chartTypeLayout;
+    TQHBoxLayout *fontLayout;
+    TQVBoxLayout *addValuesFrameLayout;
+    TQVBoxLayout *addValuesButtonGroupLayout;
+    TQHBoxLayout *decimalPlacesLayout;
+    TQHBoxLayout *buttonsLayout;
+
+private:
+    TQFont m_font;
+};
+
+#endif
+
+
+


+ +
Copyright © 2007 +TrolltechTrademarks +
TQt 3.3.8
+
+ -- cgit v1.2.1