Changeset 11361 in vbox for trunk/src/VBox/Frontends/VirtualBox4/include
- Timestamp:
- Aug 12, 2008 2:34:05 PM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 34543
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox4/include/VBoxFilePathSelectorWidget.h
r11229 r11361 38 38 public: 39 39 40 enum SelectorMode40 enum Mode 41 41 { 42 PathMode= 0,43 FileMode42 Mode_Folder = 0, 43 Mode_File 44 44 }; 45 45 … … 47 47 ~VBoxFilePathSelectorWidget(); 48 48 49 void setMode ( SelectorMode aMode);50 SelectorMode mode() const;49 void setMode (Mode aMode); 50 Mode mode() const; 51 51 52 52 void setResetEnabled (bool aEnabled); 53 53 bool isResetEnabled () const; 54 54 55 #if 0 56 57 /// @todo enabling this requires to allow to customize the names of the 58 /// "Other..." and "Reset" items too which is not yet done. 59 55 60 void setNoneToolTip (const QString &aText); 56 61 void setSelectToolTip (const QString &aText); 57 62 void setResetToolTip (const QString &aText); 63 64 #endif /* 0 */ 58 65 59 66 bool isModified() const; … … 89 96 QFileIconProvider *mIconProvider; 90 97 QAction *mCopyAction; 91 SelectorMode mMode;98 Mode mMode; 92 99 QString mPath; 93 100 QString mNoneStr;
Note:
See TracChangeset
for help on using the changeset viewer.