mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-08-21 20:49:00 -04:00
Confirmation dialog to list entries.
This commit is contained in:
parent
eef51f26f0
commit
ad67eac257
8 changed files with 414 additions and 23 deletions
42
src/http/AccessControlDialog.h
Normal file
42
src/http/AccessControlDialog.h
Normal file
|
@ -0,0 +1,42 @@
|
|||
/**
|
||||
***************************************************************************
|
||||
* @file AccessControlDialog.h
|
||||
*
|
||||
* @brief
|
||||
*
|
||||
* Copyright (C) 2013
|
||||
*
|
||||
* @author Francois Ferrand
|
||||
* @date 4/2013
|
||||
***************************************************************************
|
||||
*/
|
||||
|
||||
#ifndef ACCESSCONTROLDIALOG_H
|
||||
#define ACCESSCONTROLDIALOG_H
|
||||
|
||||
#include <QtGui/QDialog>
|
||||
|
||||
class Entry;
|
||||
|
||||
namespace Ui {
|
||||
class AccessControlDialog;
|
||||
}
|
||||
|
||||
class AccessControlDialog : public QDialog
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
explicit AccessControlDialog(QWidget *parent = 0);
|
||||
~AccessControlDialog();
|
||||
|
||||
void setUrl(const QString & url);
|
||||
void setItems(const QList<Entry *> & items);
|
||||
bool remember() const;
|
||||
void setRemember(bool r);
|
||||
|
||||
private:
|
||||
Ui::AccessControlDialog *ui;
|
||||
};
|
||||
|
||||
#endif // ACCESSCONTROLDIALOG_H
|
Loading…
Add table
Add a link
Reference in a new issue