lxqt-powermanagement-packaging/src/batteryinfodialog.h
Alf Gaida 68207d1ebb Cherry-picked upstream version 0.9.0+20150914.
Fixed debian/.gitignore
Switched to experimental because of LXQt namespace change
Added minimum version for liblxqt0-dev (>= 0.9.0+20150911)
2015-09-25 18:01:56 +02:00

38 lines
711 B
C++

/*
* Copyright (c) 2014 Christian Surlykke
*
* This file is part of the LXQt project. <http://lxqt.org>
* It is distributed under the LGPL 2.1 or later license.
* Please refer to the LICENSE file for a copy of the license.
*/
#ifndef BATTERYINFODIALOG_H
#define BATTERYINFODIALOG_H
#include "batteryinfoframe.h"
#include <QDialog>
#include <QList>
#include <Solid/Battery>
namespace Ui {
class BatteryInfoDialog;
}
class BatteryInfoDialog : public QDialog
{
Q_OBJECT
public:
explicit BatteryInfoDialog(QList<Solid::Battery*> batteries, QWidget *parent = 0);
~BatteryInfoDialog();
public slots:
void toggleShow();
private:
Ui::BatteryInfoDialog *ui;
};
#endif // BATTERYINFODIALOG_H