VBoxSnapshotDetailsDlg.h revision 72c35f9e53f8cc16d1492f7e02cf5ce9c99cefe6
2270N/A/** @file
2270N/A *
2270N/A * VBox frontends: Qt4 GUI ("VirtualBox"):
2270N/A * VBoxSnapshotDetailsDlg class declaration
2270N/A */
2270N/A
2270N/A/*
2270N/A * Copyright (C) 2006-2008 Sun Microsystems, Inc.
2270N/A *
2270N/A * This file is part of VirtualBox Open Source Edition (OSE), as
2270N/A * available from http://www.virtualbox.org. This file is free software;
2270N/A * you can redistribute it and/or modify it under the terms of the GNU
2270N/A * General Public License (GPL) as published by the Free Software
2270N/A * Foundation, in version 2 as it comes in the "COPYING" file of the
2270N/A * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
2270N/A * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
2270N/A *
2270N/A * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
2270N/A * Clara, CA 95054 USA or visit http://www.sun.com if you need
2270N/A * additional information or have any questions.
2270N/A */
2270N/A
2270N/A#ifndef __VBoxSnapshotDetailsDlg_h__
2270N/A#define __VBoxSnapshotDetailsDlg_h__
3231N/A
6208N/A#include "VBoxSnapshotDetailsDlg.gen.h"
2270N/A#include "QIWithRetranslateUI.h"
2270N/A#include "COMDefs.h"
2270N/A
2270N/Aclass VBoxSnapshotDetailsDlg : public QIWithRetranslateUI<QDialog>,
5339N/A public Ui::VBoxSnapshotDetailsDlg
5339N/A{
5339N/A Q_OBJECT;
2988N/A
5339N/Apublic:
5339N/A
5339N/A VBoxSnapshotDetailsDlg (QWidget *aParent);
5339N/A
5339N/A void getFromSnapshot (const CSnapshot &aSnapshot);
5339N/A void putBackToSnapshot();
5339N/A
5339N/Aprotected:
5339N/A
2988N/A void retranslateUi();
2988N/A
5339N/Aprivate slots:
2717N/A
5339N/A void onNameChanged (const QString &aText);
2270N/A
5339N/Aprivate:
2270N/A
2270N/A CSnapshot mSnapshot;
2270N/A};
2270N/A
2270N/A#endif // __VBoxSnapshotDetailsDlg_h__
2270N/A
2270N/A