X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/371a5b4e62eb415107e045588f614fa49e866e78..e14d10b039e68a701a447043a4031cf43e9fa90b:/include/wx/volume.h diff --git a/include/wx/volume.h b/include/wx/volume.h index 6d095f09f7..e0dcb78f9b 100644 --- a/include/wx/volume.h +++ b/include/wx/volume.h @@ -24,10 +24,6 @@ #if wxUSE_FSVOLUME -#if wxUSE_GUI - #include "wx/iconbndl.h" // for wxIconArray -#endif // wxUSE_GUI - // the volume flags enum { @@ -56,22 +52,7 @@ enum wxFSVolumeKind wxFS_VOL_MAX }; -#if wxUSE_GUI - -#include "wx/icon.h" - -enum wxFSIconType -{ - wxFS_VOL_ICO_SMALL = 0, - wxFS_VOL_ICO_LARGE, - wxFS_VOL_ICO_SEL_SMALL, - wxFS_VOL_ICO_SEL_LARGE, - wxFS_VOL_ICO_MAX -}; - -#endif // wxUSE_GUI - -class WXDLLEXPORT wxFSVolume +class WXDLLIMPEXP_BASE wxFSVolumeBase { public: // return the array containing the names of the volumes @@ -88,8 +69,8 @@ public: // create the volume object with this name (should be one of those returned // by GetVolumes()). - wxFSVolume(); - wxFSVolume(const wxString& name); + wxFSVolumeBase(); + wxFSVolumeBase(const wxString& name); bool Create(const wxString& name); // accessors @@ -112,22 +93,61 @@ public: wxString GetName() const { return m_volName; } wxString GetDisplayName() const { return m_dispName; } -#if wxUSE_GUI - wxIcon GetIcon(wxFSIconType type) const; -#endif - // TODO: operatios (Mount(), Unmount(), Eject(), ...)? -private: +protected: + // the internal volume name wxString m_volName; + + // the volume name as it is displayed to the user wxString m_dispName; + + // have we been initialized correctly? + bool m_isOk; +}; + #if wxUSE_GUI + +#include "wx/icon.h" +#include "wx/iconbndl.h" // only for wxIconArray + +enum wxFSIconType +{ + wxFS_VOL_ICO_SMALL = 0, + wxFS_VOL_ICO_LARGE, + wxFS_VOL_ICO_SEL_SMALL, + wxFS_VOL_ICO_SEL_LARGE, + wxFS_VOL_ICO_MAX +}; + +// wxFSVolume adds GetIcon() to wxFSVolumeBase +class wxFSVolume : public wxFSVolumeBase +{ +public: + wxFSVolume() : wxFSVolumeBase() { InitIcons(); } + wxFSVolume(const wxString& name) : wxFSVolumeBase(name) { InitIcons(); } + + wxIcon GetIcon(wxFSIconType type) const; + +private: + void InitIcons(); + + // the different icons for this volume (created on demand) wxIconArray m_icons; -#endif - bool m_isOk; +}; + +#else // !wxUSE_GUI +// wxFSVolume is the same thing as wxFSVolume in wxBase +class wxFSVolume : public wxFSVolumeBase +{ +public: + wxFSVolume() : wxFSVolumeBase() { } + wxFSVolume(const wxString& name) : wxFSVolumeBase(name) { } }; +#endif // wxUSE_GUI/!wxUSE_GUI + #endif // wxUSE_FSVOLUME #endif // _WX_FSVOLUME_H_