~vbursian/research-assistant/intervers

« back to all changes in this revision

Viewing changes to RAGUI/SetScalesDlg.h

  • Committer: Viktor Bursian
  • Date: 2013-06-06 15:10:08 UTC
  • Revision ID: vbursian@gmail.com-20130606151008-6641eh62f0lgx8jt
Tags: version_0.3.0
version 0.3.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
////////////////////////////////////////////////////////////////////////////////
2
 
/*! @file SetScalesDlg.h   Редактирование шкал графика.
3
 
- Part of RAGUI - Research Assistant Graphical User Interface.
4
 
- Uses  QtGui v.4.6  -  http://qt.nokia.com/
5
 
- Uses  RANet - Research Assistant Net Library (based on ANSI C++).
6
 
- Copyright(C) 2010, Viktor E. Bursian, St.Petersburg, Russia.
7
 
                     Viktor.Bursian@mail.ioffe.ru
8
 
*///////////////////////////////////////////////////////////////////////////////
9
 
#ifndef SetScalesDlg_H
10
 
#define SetScalesDlg_H
11
 
#include <QDialog>
12
 
//#include "Range.h"
13
 
//#include "PhysValueField.h"
14
 
#include <QDoubleSpinBox>
15
 
#include <QComboBox>
16
 
namespace RA {
17
 
//------------------------------------------------------------------------------
18
 
 
19
 
class sSetScalesDlg : public QDialog
20
 
{
21
 
  Q_OBJECT
22
 
  public:
23
 
    explicit                  sSetScalesDlg (QWidget *  parent = NULL);
24
 
 
25
 
  public: //fields
26
 
    QComboBox *               field_OrdinateMetricPrefix;
27
 
    QDoubleSpinBox *          field_OrdinateFrom;
28
 
    QDoubleSpinBox *          field_OrdinateTo;
29
 
    QComboBox *               field_AbscissMetricPrefix;
30
 
    QDoubleSpinBox *          field_AbscissFrom;
31
 
    QDoubleSpinBox *          field_AbscissTo;
32
 
};
33
 
 
34
 
//------------------------------------------------------------------------------
35
 
}; //namespace RA
36
 
#endif //SetScalesDlg_H
37