/** @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; * 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. * * 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 class QFileIconProvider; class QAction; class VBoxFilePathSelectorWidget: public QIWithRetranslateUI { Q_OBJECT; public: enum Mode { Mode_Folder = 0, Mode_File }; VBoxFilePathSelectorWidget (QWidget *aParent); ~VBoxFilePathSelectorWidget(); void setMode (Mode aMode); Mode mode() const; void setResetEnabled (bool aEnabled); bool isResetEnabled () const; bool isModified() const; bool isPathSelected() const; QString path() const; public slots: void setPath (const QString &aPath, bool aRefreshText = true); void setHomeDir (const QString &aHomeDir); protected: void resizeEvent (QResizeEvent *aEvent); void focusInEvent (QFocusEvent *aEvent); void focusOutEvent (QFocusEvent *aEvent); bool eventFilter (QObject *aObj, QEvent *aEv); void retranslateUi(); private slots: void onActivated (int aIndex); void onTextEdited (const QString &aPath); void copyToClipboard(); void refreshText(); private: void changePath (const QString &aPath, bool aRefreshText = true); void selectPath(); QIcon defaultIcon() const; QString fullPath (bool aAbsolute = true) const; QString shrinkText (int aWidth) const; /* Private member vars */ QFileIconProvider *mIconProvider; QAction *mCopyAction; Mode mMode; QString mPath; QString mHomeDir; QString mNoneStr; QString mNoneTip; bool mIsEditableMode; bool mIsMouseAwaited; bool mModified; }; #endif /* __VBoxFilePathSelectorWidget_h__ */