You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
lxqt-powermanagement-packaging/src/batteryinfodialog.h

30 lines
484 B

#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