~ubuntu-branches/ubuntu/raring/virtualbox-ose/raring

« back to all changes in this revision

Viewing changes to src/VBox/Frontends/VirtualBox/src/settings/machine/UIMachineSettingsUSBFilterDetails.h

  • Committer: Bazaar Package Importer
  • Author(s): Felix Geyer
  • Date: 2011-01-30 23:27:25 UTC
  • mfrom: (0.3.12 upstream)
  • Revision ID: james.westby@ubuntu.com-20110130232725-2ouajjd2ggdet0zd
Tags: 4.0.2-dfsg-1ubuntu1
* Merge from Debian unstable, remaining changes:
  - Add Apport hook.
    - debian/virtualbox-ose.files/source_virtualbox-ose.py
    - debian/virtualbox-ose.install
  - Drop *-source packages.
* Drop ubuntu-01-fix-build-gcc45.patch, fixed upstream.
* Drop ubuntu-02-as-needed.patch, added to the Debian package.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/** @file
 
2
 *
 
3
 * VBox frontends: Qt4 GUI ("VirtualBox"):
 
4
 * UIMachineSettingsUSBFilterDetails class declaration
 
5
 */
 
6
 
 
7
/*
 
8
 * Copyright (C) 2008-2010 Oracle Corporation
 
9
 *
 
10
 * This file is part of VirtualBox Open Source Edition (OSE), as
 
11
 * available from http://www.virtualbox.org. This file is free software;
 
12
 * you can redistribute it and/or modify it under the terms of the GNU
 
13
 * General Public License (GPL) as published by the Free Software
 
14
 * Foundation, in version 2 as it comes in the "COPYING" file of the
 
15
 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
 
16
 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
 
17
 */
 
18
 
 
19
#ifndef __UIMachineSettingsUSBFilterDetails_h__
 
20
#define __UIMachineSettingsUSBFilterDetails_h__
 
21
 
 
22
#include "UIMachineSettingsUSBFilterDetails.gen.h"
 
23
#include "QIWithRetranslateUI.h"
 
24
#include "QIDialog.h"
 
25
#include "UIMachineSettingsUSB.h"
 
26
 
 
27
class UIMachineSettingsUSBFilterDetails : public QIWithRetranslateUI2<QIDialog>,
 
28
                                       public Ui::UIMachineSettingsUSBFilterDetails
 
29
{
 
30
    Q_OBJECT;
 
31
 
 
32
public:
 
33
 
 
34
    UIMachineSettingsUSBFilterDetails(UISettingsPageType type, QWidget *pParent = 0);
 
35
 
 
36
protected:
 
37
 
 
38
    void retranslateUi();
 
39
 
 
40
private:
 
41
 
 
42
    /* Private member vars */
 
43
    UISettingsPageType m_type;
 
44
};
 
45
 
 
46
#endif /* __UIMachineSettingsUSBFilterDetails_h__ */
 
47