kde-extraapps/kdeplasma-addons/applets/unitconverter/unitconverter.h
Ivailo Monev 1becd97689 kdeplasma-addons: remove redundant uniconverter applet description label
Signed-off-by: Ivailo Monev <xakepa10@gmail.com>
2022-06-06 16:52:05 +03:00

79 lines
2.9 KiB
C++

/*****************************************************************************
* Copyright (C) 2008 by Gerhard Gappmeier <gerhard.gappmeier@ascolab.com> *
* Copyright (C) 2009 by Petri Damstén <damu@iki.fi> *
* *
* 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 2 of the License, or *
* (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program; if not, write to the *
* Free Software Foundation, Inc., *
* 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. *
*****************************************************************************/
#ifndef UNITCONVERTER_H
#define UNITCONVERTER_H
#include <Plasma/PopupApplet>
#include <Plasma/ComboBox>
#include <Plasma/LineEdit>
class ComboBox : public Plasma::ComboBox
{
Q_OBJECT
public:
ComboBox(QGraphicsWidget* parent = 0);
signals:
void mousePressed();
protected:
virtual void mousePressEvent(QGraphicsSceneMouseEvent* event);
};
// Define our plasma Applet
class UnitConverter : public Plasma::PopupApplet
{
Q_OBJECT
public:
// Basic Create/Destroy
UnitConverter(QObject *parent, const QVariantList &args);
~UnitConverter();
virtual void init();
virtual QGraphicsWidget *graphicsWidget();
public slots:
void configChanged();
private slots:
void sltValueChanged(const QString &sNewValue);
void sltValueChangedReverse(const QString &sNewValue);
void sltUnitChanged(int index);
void sltCategoryChanged(int index);
private:
void calculate();
void calculateReverse();
private:
QGraphicsWidget *m_widget;
Plasma::ComboBox *m_pCmbCategory;
Plasma::ComboBox *m_pCmbUnit1;
Plasma::ComboBox *m_pCmbUnit2;
Plasma::LineEdit *m_pTxtValue1;
Plasma::LineEdit *m_pTxtValue2;
bool m_bCalculateReverse;
};
// This is the command that links your applet to the .desktop file
K_EXPORT_PLASMA_APPLET(unitconverter, UnitConverter)
#endif // _UNITCONVERTER_H_