Blame view

GUI/SW2/SRC/src/gnucap/dialogs/DlgGcpCfgGEN.hpp 4.18 KB
886c558b   Steve Greedy   SACAMOS Public Re...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
//**************************************************************************************************
//                                        DlgGcpCfgGEN.hpp                                         *
//                                       ------------------                                        *
// Description : This dialogue is used to enter values associated with a GNU-Cap generator command *
//                line. It is used for Transient and Fourier analysis.                             *
// Started     : 2004-02-27                                                                        *
// Last Update : 2015-01-05                                                                        *
// Copyright   : (C) 2004-2016 MSWaters                                                            *
//**************************************************************************************************

//**************************************************************************************************
//                                                                                                 *
//      This program is free software; you can redistribute it and/or modify it under the          *
//      terms of the GNU General Public License as published by the Free Software Foundation;      *
//      either version 3 of the License, or (at your option) any later version.                    *
//                                                                                                 *
//**************************************************************************************************

#ifndef DLGGCPCFGGEN_HPP
#define DLGGCPCFGGEN_HPP

// Application Includes

#include "TypeDefs.hpp"
#include "utility/PnlValue.hpp"
#include "gnucap/commands/CmdGnuCapGEN.hpp"

// wxWidgets Includes

#include <wx/tokenzr.h>

//**************************************************************************************************

class DlgGcpCfgGEN : public wxDialog
{
  private :

    // Value panel controls for overall source characteristics
    PnlValue  m_oPnlAmplitude;
    PnlValue  m_oPnlOffset;

    // Value panel controls for a sinusoidal source
    PnlValue  m_oPnlSinFreq;
    PnlValue  m_oPnlSinPhase;

    // Value panel controls for a pulse source
    PnlValue  m_oPnlPulInitial;
    PnlValue  m_oPnlPulMin;
    PnlValue  m_oPnlPulMax;
    PnlValue  m_oPnlPulDelay;
    PnlValue  m_oPnlPulRise;
    PnlValue  m_oPnlPulWidth;
    PnlValue  m_oPnlPulFall;
    PnlValue  m_oPnlPulPeriod;

    // Button controls
    wxButton  m_oBtnOk;
    wxButton  m_oBtnClear;
    wxButton  m_oBtnCancel;

    // Generator command object
    CmdGnuCapGEN  m_oCmdGEN;

    // Object initialization functions
    void  Initialize( void );
    void  Create    ( void );
    void  ToolTips  ( void );
    void  DoLayout  ( void );

    void  SetValues( CmdGnuCapGEN & roCmdGEN );
    void  GetValues( CmdGnuCapGEN & roCmdGEN );

  public :

          DlgGcpCfgGEN( wxWindow * poWin );
         ~DlgGcpCfgGEN( );

    bool  bClear( void );

    bool  bSetValues( CmdGnuCapGEN & roCmdGEN );
    bool  bGetValues( CmdGnuCapGEN & roCmdGEN );

    // Event handlers
    void  OnBtnOk    ( wxCommandEvent & roEvtCmd );
    void  OnBtnClear ( wxCommandEvent & roEvtCmd );
    void  OnBtnCancel( wxCommandEvent & roEvtCmd );

    // In order to be able to react to a menu command, it must be given a
    // unique identifier such as a const or an enum.
    enum eDlgItemID
    {
      ID_PNL_AMPLITUDE = 0,
      ID_PNL_OFFSET,
      ID_PNL_SIN_FREQ,
      ID_PNL_SIN_PHASE,
      ID_PNL_PUL_INITIAL,
      ID_PNL_PUL_MIN,
      ID_PNL_PUL_MAX,
      ID_PNL_PUL_DELAY,
      ID_PNL_PUL_RISE,
      ID_PNL_PUL_WIDTH,
      ID_PNL_PUL_FALL,
      ID_PNL_PUL_PERIOD,

      ID_BTN_OK,
      ID_BTN_CLEAR,
      ID_BTN_CANCEL,

      ID_UNUSED,      // Assigned to controls for which events are not used

      ID_PNL_FST = ID_PNL_AMPLITUDE,
      ID_PNL_LST = ID_PNL_PUL_PERIOD,

      ID_FST = ID_PNL_AMPLITUDE,
      ID_LST = ID_BTN_CANCEL
    };

    // Leave this as the last line as private access is envoked by macro
    wxDECLARE_EVENT_TABLE( );
};

//**************************************************************************************************

#endif // DLGGCPCFGGEN_HPP