Qt Virtual Chart Table (QVCT)
CDeviceSampleEditView.hpp
Go to the documentation of this file.
1 // INDENTING (emacs/vi): -*- mode:c++; tab-width:2; c-basic-offset:2; intent-tabs-mode:nil; -*- ex: set tabstop=2 expandtab:
2 
3 /*
4  * Qt Virtual Chart Table (QVCT)
5  * Copyright (C) 2012 Cedric Dufour <http://cedric.dufour.name>
6  * Author: Cedric Dufour <http://cedric.dufour.name>
7  *
8  * The Qt Virtual Chart Table (QVCT) is free software:
9  * you can redistribute it and/or modify it under the terms of the GNU General
10  * Public License as published by the Free Software Foundation, Version 3.
11  *
12  * The Qt Virtual Chart Table (QVCT) is distributed in the hope
13  * that it will be useful, but WITHOUT ANY WARRANTY; without even the implied
14  * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
15  *
16  * See the GNU General Public License for more details.
17  */
18 
19 #ifndef QVCT_CDEVICESAMPLEEDITVIEW_HPP
20 #define QVCT_CDEVICESAMPLEEDITVIEW_HPP
21 
22 // QT
23 #include <QLineEdit>
24 #include <QWidget>
25 
26 // QVCT
28 class CDeviceSample;
29 
30 
32 
38 {
39  Q_OBJECT
40 
41  //------------------------------------------------------------------------------
42  // FIELDS
43  //------------------------------------------------------------------------------
44 
45 private:
47  QLineEdit* pqLineEditHost;
49  QLineEdit* pqLineEditPort;
50 
51 
52  //------------------------------------------------------------------------------
53  // CONSTRUCTORS / DESTRUCTOR
54  //------------------------------------------------------------------------------
55 
56 public:
57  CDeviceSampleEditView( CDeviceSample* _poDeviceSample );
58  virtual ~CDeviceSampleEditView() {};
59 
60 private:
62  void constructLayout();
63 
64 
65  //------------------------------------------------------------------------------
66  // METHODS: QDialog (override)
67  //------------------------------------------------------------------------------
68 
69 public slots:
70  virtual void accept();
71 
72 };
73 
74 #endif // QVCT_CDEVICESAMPLEEDITVIEW_HPP
[UI] Route container's edit view
void constructLayout()
Constructs the layout of the user-interface.
QLineEdit * pqLineEditPort
[UI:LineEdit] Port
CDeviceSampleEditView(CDeviceSample *_poDeviceSample)
QLineEdit * pqLineEditHost
[UI:LineEdit] Host
SAMPLE_DRIVER.
[UI] Generic overlay object's edit view