~arcachofo/simulide/1.1.0

« back to all changes in this revision

Viewing changes to src/gui/circuitwidget/components/logic/bincounter.cpp

  • Committer: arcachofo
  • Date: 2021-01-01 14:23:42 UTC
  • Revision ID: arcachofo@simulide.com-20210101142342-ozfljnll44g5lbl3
Initial Commit 0.5.15-RC3

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/***************************************************************************
 
2
 *   Copyright (C) 2016 by santiago González                               *
 
3
 *   santigoro@gmail.com                                                   *
 
4
 *                                                                         *
 
5
 *   This program is free software; you can redistribute it and/or modify  *
 
6
 *   it under the terms of the GNU General Public License as published by  *
 
7
 *   the Free Software Foundation; either version 3 of the License, or     *
 
8
 *   (at your option) any later version.                                   *
 
9
 *                                                                         *
 
10
 *   This program is distributed in the hope that it will be useful,       *
 
11
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
 
12
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
 
13
 *   GNU General Public License for more details.                          *
 
14
 *                                                                         *
 
15
 *   You should have received a copy of the GNU General Public License     *
 
16
 *   along with this program; if not, see <http://www.gnu.org/licenses/>.  *
 
17
 *                                                                         *
 
18
 ***************************************************************************/
 
19
 
 
20
#include "bincounter.h"
 
21
#include "pin.h"
 
22
 
 
23
static const char* BinCounter_properties[] = {
 
24
    QT_TRANSLATE_NOOP("App::Property","Max Value")
 
25
};
 
26
 
 
27
Component *BinCounter::construct(QObject *parent, QString type, QString id)
 
28
{
 
29
    return new BinCounter(parent, type, id);
 
30
}
 
31
 
 
32
LibraryItem* BinCounter::libraryItem()
 
33
{
 
34
    return new LibraryItem(
 
35
        tr( "Counter" ),
 
36
        tr ("Logic/Arithmetic"),
 
37
        "2to1.png",
 
38
        "Counter",
 
39
        BinCounter::construct );
 
40
}
 
41
 
 
42
BinCounter::BinCounter(QObject *parent, QString type, QString id) 
 
43
          : LogicComponent( parent, type, id )
 
44
          , eBinCounter( id )
 
45
{
 
46
    Q_UNUSED( BinCounter_properties );
 
47
    
 
48
    m_width  = 3;
 
49
    m_height = 3;
 
50
 
 
51
    QStringList pinList;
 
52
    pinList
 
53
      << "IL01>"
 
54
      << "IL02 R"
 
55
      << "OR01Q"
 
56
    ;
 
57
    init( pinList );
 
58
    
 
59
    eLogicDevice::createClockPin( m_inPin[0] );      // Input Clock
 
60
    eLogicDevice::createInput( m_inPin[1] );         // Input Reset
 
61
    eLogicDevice::createOutput( m_outPin[0] );       // Output Q
 
62
 
 
63
    setResetInv( true );                             // Invert Reset Pin
 
64
}
 
65
 
 
66
BinCounter::~BinCounter(){}
 
67
 
 
68
#include "moc_bincounter.cpp"