~vbursian/research-assistant/intervers

« back to all changes in this revision

Viewing changes to RAGUI/DlgEditScales.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 DlgEditScales.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 DlgEditScales_H
 
10
#define DlgEditScales_H
 
11
#include <QDialog>
 
12
#include <QLineEdit>
 
13
#include "PhysRangeField.h"
 
14
namespace RA {
 
15
//------------------------------------------------------------------------------
 
16
 
 
17
class sScalesDlg : public QDialog
 
18
{
 
19
  Q_OBJECT
 
20
  public:
 
21
    explicit                  sScalesDlg (QWidget *  parent = NULL);
 
22
 
 
23
  public: //fields
 
24
    QLineEdit *               fldOrdinateVariableName;
 
25
    QLineEdit *               fldAbscissVariableName;
 
26
    psPhysRangeField          fldOrdinateRange;
 
27
    psPhysRangeField          fldAbscissRange;
 
28
};
 
29
 
 
30
//------------------------------------------------------------------------------
 
31
}; //namespace RA
 
32
#endif
 
33