UIApplianceImportEditorWidget.h revision 34e1dc7e93df8a6f2116345c36e74293aa98a66b
/** @file
*
* VBox frontends: Qt4 GUI ("VirtualBox"):
* UIApplianceImportEditorWidget class declaration
*/
/*
* Copyright (C) 2009-2011 Oracle Corporation
*
* This file is part of VirtualBox Open Source Edition (OSE), as
* available from http://www.virtualbox.org. This file is free software;
* you can redistribute it and/or modify it under the terms of the GNU
* General Public License (GPL) as published by the Free Software
* Foundation, in version 2 as it comes in the "COPYING" file of the
* VirtualBox OSE distribution. VirtualBox OSE is distributed in the
* hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
*/
#ifndef __UIApplianceImportEditorWidget_h__
#define __UIApplianceImportEditorWidget_h__
/* VBox includes */
#include "UIApplianceEditorWidget.h"
class UIApplianceImportEditorWidget: public UIApplianceEditorWidget
{
Q_OBJECT;
public:
UIApplianceImportEditorWidget(QWidget *pParent);
bool setFile(const QString &strFile);
void prepareImport();
bool import();
QList<QPair<QString, QString> > licenseAgreements() const;
};
#endif /* __UIApplianceImportEditorWidget_h__ */