#ifndef UI_WIDGET_H
#define UI_WIDGET_H

#include <QVBoxLayout>
#include <QtCore/QVariant>
#include <QtGui/QAction>
#include <QtGui/QApplication>
#include <QtGui/QButtonGroup>
#include <QtGui/QHeaderView>
#include <QtGui/QToolButton>
#include <QtGui/QWidget>
#include "kled.h"

QT_BEGIN_NAMESPACE

class Ui_Widget
{
public:
    QToolButton *toolButton;
    KLed *kled;

	

    void setupUi(QWidget *Widget)
    {
        if (Widget->objectName().isEmpty())
            Widget->setObjectName(QString::fromUtf8("Widget"));
        Widget->resize(400, 300);
        toolButton = new QToolButton(Widget);
        toolButton->setObjectName(QString::fromUtf8("toolButton"));
        toolButton->setGeometry(QRect(230, 120, 26, 25));
        kled = new KLed(Widget);
        kled->setObjectName(QString::fromUtf8("kled"));
        kled->setGeometry(QRect(130, 130, 16, 16));

        retranslateUi(Widget);
        QObject::connect(toolButton, SIGNAL(pressed()),kled, SLOT(off()));

        QMetaObject::connectSlotsByName(Widget);
    } // setupUi

    void retranslateUi(QWidget *Widget)
    {
        Widget->setWindowTitle(QApplication::translate("Widget", "Widget", 0, QApplication::UnicodeUTF8));
        toolButton->setText(QApplication::translate("Widget", "...", 0, QApplication::UnicodeUTF8));
        Q_UNUSED(Widget);

    } // retranslateUi

};

namespace Ui {
    class Widget: public Ui_Widget {};
     namespace Ui {

   }

} // 	namespace Ui

QT_END_NAMESPACE

#endif

