VBoxPathSelector.h revision 9191feb882e40c9444f0002bf527cd819092d94d
/** @file
*
* VBox frontends: Qt GUI ("VirtualBox"):
* VirtualBox Qt extensions: VBoxFilePathSelectorWidget class declaration
*/
/*
* Copyright (C) 2008 Sun Microsystems, Inc.
*
* This file is part of VirtualBox Open Source Edition (OSE), as
* available from http://www.virtualbox.org. This file is free software;
* 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.
*
* Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
* Clara, CA 95054 USA or visit http://www.sun.com if you need
* additional information or have any questions.
*/
#ifndef __VBoxFilePathSelectorWidget_h__
#define __VBoxFilePathSelectorWidget_h__
#include "QIWithRetranslateUI.h"
/* Qt includes */
#include <QWidget>
#ifdef Q_WS_MAC
#define VBOX_USE_COMBOBOX_PATH_SELECTOR
#endif /* Q_WS_MAC */
{
enum SelectorMode
{
PathMode = 0,
};
SelectorMode mode() const;
bool isModified() const;
void selectPath();
void resetPath();
void retranslateUi();
void cbActivated (int aIndex);
void init();
QIcon defaultIcon() const;
/* Private member vars */
#else /* VBOX_USE_COMBOBOX_PATH_SELECTOR */
#endif /* !VBOX_USE_COMBOBOX_PATH_SELECTOR */
};
#endif /* __VBoxFilePathSelectorWidget_h__ */