Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014 #ifndef TGO4SETSCALEVALUES_H
00015 #define TGO4SETSCALEVALUES_H
00016
00017 #include <QWidget>
00018 #include "ui_TGo4SetScaleValues.h"
00019 class TGo4ViewPanel;
00020 class TPad;
00021
00022 class TGo4SetScaleValues : public QWidget, public Ui::TGo4SetScaleValues {
00023 Q_OBJECT
00024
00025 protected:
00026 bool fbDoingRefresh;
00027
00028 public:
00029 TGo4SetScaleValues( QWidget* parent = 0, const char* name = 0, Qt::WindowFlags fl = 0 );
00030
00031 void refreshView(bool force);
00032
00033 public slots:
00034
00035 virtual void panelSlot(TGo4ViewPanel* panel, TPad* pad, int signalid);
00036
00037 virtual void ApplyValues();
00038
00039 virtual void AutoscaleChanged(bool on);
00040 };
00041
00042 #endif