2012-10-29 17:41:37 -04:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2012 Felix Geyer <debfx@fobos.de>
|
|
|
|
*
|
|
|
|
* 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 or (at your option)
|
|
|
|
* version 3 of the License.
|
|
|
|
*
|
|
|
|
* 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, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef KEEPASSX_EDITWIDGETPROPERTIES_H
|
|
|
|
#define KEEPASSX_EDITWIDGETPROPERTIES_H
|
|
|
|
|
2018-02-19 09:23:22 -05:00
|
|
|
#include <QItemSelection>
|
2018-02-06 10:37:06 -05:00
|
|
|
#include <QPointer>
|
2018-03-31 16:01:30 -04:00
|
|
|
#include <QStandardItemModel>
|
2013-10-03 09:18:16 -04:00
|
|
|
#include <QWidget>
|
2012-10-29 17:41:37 -04:00
|
|
|
|
2018-10-01 10:26:24 -04:00
|
|
|
class CustomData;
|
|
|
|
class TimeInfo;
|
|
|
|
class QUuid;
|
2012-10-29 17:41:37 -04:00
|
|
|
|
2018-03-31 16:01:30 -04:00
|
|
|
namespace Ui
|
|
|
|
{
|
2012-10-29 17:41:37 -04:00
|
|
|
class EditWidgetProperties;
|
|
|
|
}
|
|
|
|
|
|
|
|
class EditWidgetProperties : public QWidget
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2015-07-24 12:28:12 -04:00
|
|
|
explicit EditWidgetProperties(QWidget* parent = nullptr);
|
2022-04-11 19:33:11 -04:00
|
|
|
~EditWidgetProperties() override;
|
2012-10-29 17:41:37 -04:00
|
|
|
|
2018-03-22 17:56:05 -04:00
|
|
|
void setFields(const TimeInfo& timeInfo, const QUuid& uuid);
|
2018-10-01 10:26:24 -04:00
|
|
|
void setCustomData(CustomData* customData);
|
2018-02-06 10:37:06 -05:00
|
|
|
|
|
|
|
private slots:
|
2018-10-01 10:26:24 -04:00
|
|
|
void update();
|
2018-02-06 10:37:06 -05:00
|
|
|
void removeSelectedPluginData();
|
2018-02-19 09:23:22 -05:00
|
|
|
void toggleRemoveButton(const QItemSelection& selected);
|
2012-10-29 17:41:37 -04:00
|
|
|
|
|
|
|
private:
|
|
|
|
const QScopedPointer<Ui::EditWidgetProperties> m_ui;
|
|
|
|
|
2018-02-06 10:37:06 -05:00
|
|
|
QPointer<CustomData> m_customData;
|
|
|
|
QPointer<QStandardItemModel> m_customDataModel;
|
2018-10-01 10:26:24 -04:00
|
|
|
|
2012-10-29 17:41:37 -04:00
|
|
|
Q_DISABLE_COPY(EditWidgetProperties)
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // KEEPASSX_EDITWIDGETPROPERTIES_H
|