Files @ 58db5f6bf2b1
Branch filter:

Location: tempo-plotter/customcheckablebutton.cpp - annotation

Hasan Yavuz Özderya
initial commit, port selection, open/close is working, received data is written to stdout
#include "customcheckablebutton.h"

CustomCheckableButton::CustomCheckableButton(QWidget *parent) :
    QPushButton(parent)
{
    this->setCheckable(true);
}

void CustomCheckableButton::nextCheckState()
{
    /* Do nothing! Check state will be altered by parent. */
}