keepassxc/src/gui/EditWidgetProperties.h

60 lines
1.6 KiB
C++
Raw Normal View History

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
#include <QStandardItemModel>
#include <QPointer>
#include <QWidget>
2012-10-29 17:41:37 -04:00
#include "core/CustomData.h"
2012-10-29 17:41:37 -04:00
#include "core/TimeInfo.h"
#include "core/Uuid.h"
namespace Ui {
class EditWidgetProperties;
}
class EditWidgetProperties : public QWidget
{
Q_OBJECT
public:
2015-07-24 12:28:12 -04:00
explicit EditWidgetProperties(QWidget* parent = nullptr);
2012-10-29 17:41:37 -04:00
~EditWidgetProperties();
void setFields(const TimeInfo& timeInfo, const Uuid& uuid);
void setCustomData(const CustomData* customData);
const CustomData* customData() const;
private slots:
void removeSelectedPluginData();
2012-10-29 17:41:37 -04:00
private:
void updateModel();
2012-10-29 17:41:37 -04:00
const QScopedPointer<Ui::EditWidgetProperties> m_ui;
QPointer<CustomData> m_customData;
QPointer<QStandardItemModel> m_customDataModel;
2012-10-29 17:41:37 -04:00
Q_DISABLE_COPY(EditWidgetProperties)
};
#endif // KEEPASSX_EDITWIDGETPROPERTIES_H