Harlinn.Windows 0.1
Loading...
Searching...
No Matches
Harlinn::Windows::FileSaveDialog Class Reference

#include <HWFileDialog.h>

Inheritance diagram for Harlinn::Windows::FileSaveDialog:
[legend]
Collaboration diagram for Harlinn::Windows::FileSaveDialog:
[legend]

Public Types

typedef FileDialog Base
 
- Public Types inherited from Harlinn::Windows::FileDialog
typedef ModalWindow Base
 
- Public Types inherited from Harlinn::Windows::ModalWindow
typedef Unknown Base
 
- Public Types inherited from Harlinn::Common::Core::Unknown
using InterfaceType = IUnknown
 Every derived class defines InterfaceType as the type of the interface wrapped by the derived class.
 

Public Member Functions

FileSaveDialogSetSaveAsItem (IShellItem *psi)
 
FileSaveDialogSetProperties (IPropertyStore *pStore)
 
FileSaveDialogSetCollectedProperties (IPropertyDescriptionList *pList, bool appendDefault)
 
PropertyStore GetProperties ()
 
FileSaveDialogApplyProperties (IShellItem *psi, IPropertyStore *pStore, HWND hwnd, IFileOperationProgressSink *pSink)
 
- Public Member Functions inherited from Harlinn::Windows::FileDialog
virtual HW_EXPORT bool Show (HWND owner=0)
 
FileDialogSetFileTypes (UINT cFileTypes, const COMDLG_FILTERSPEC *rgFilterSpec)
 
FileDialogSetFileTypeIndex (UINT iFileType)
 
UINT GetFileTypeIndex ()
 
DWORD Advise (IFileDialogEvents *pfde)
 
DWORD Advise (const FileDialogEvents &fileDialogEvents)
 
FileDialogUnadvise (DWORD dwCookie)
 
FileDialogSetOptions (FILEOPENDIALOGOPTIONS fos)
 
FILEOPENDIALOGOPTIONS GetOptions ()
 
FileDialogSetDefaultFolder (IShellItem *psi)
 
FileDialogSetFolder (IShellItem *psi)
 
ShellItem GetFolder ()
 
ShellItem GetCurrentSelection ()
 
FileDialogSetFileName (LPCWSTR pszName)
 
WideString GetFileName ()
 
FileDialogSetTitle (LPCWSTR pszTitle)
 
FileDialogSetOkButtonLabel (LPCWSTR pszText)
 
FileDialogSetFileNameLabel (LPCWSTR pszLabel)
 
ShellItem GetResult ()
 
FileDialogAddPlace (IShellItem *psi, FDAP fdap=FDAP_BOTTOM)
 
FileDialogSetDefaultExtension (LPCWSTR pszDefaultExtension)
 
FileDialogClose (HRESULT hr)
 
FileDialogSetClientGuid (REFGUID guid)
 
FileDialogClearClientData ()
 
FileDialogSetFilter (IShellItemFilter *pFilter)
 
- Public Member Functions inherited from Harlinn::Windows::ModalWindow
HW_EXPORT bool Show (const Control &theOwner)
 
- Public Member Functions inherited from Harlinn::Common::Core::Unknown
constexpr Unknown () noexcept
 The default constructor ensures that the internal pointer to IUnknown is set to nullptr.
 
 Unknown (IUnknown *unknown, bool addref=false) noexcept
 Constructs a new Unknown, taking ownership of the interface pointer held by unknown.
 
 Unknown (REFIID iid, const Unknown &unknown, bool throwIfNoInterface=true)
 Initializes the new object to the interface identified by the iid parameter by querying the interface held by unknown for the requested interface.
 
 Unknown (const Unknown &other) noexcept
 Copy constructor, calls AddRef on the interface pointer held by other.
 
 Unknown (Unknown &&other) noexcept
 Move constructor takes ownership of the interface pointer held by other.
 
 ~Unknown () noexcept
 Destructor, calling Release on the wrapped interface.
 
constexpr operator bool () const noexcept
 Returns true if this object references an interface.
 
Unknownoperator= (const Unknown &other) noexcept
 Copy assignment, which does nothing if other holds the same interface pointer as this object; and if not, calls Release on the currently held interface pointer, then copying the interface pointer from other, calling AddRef on the newly assigned interface pointer.
 
Unknownoperator= (Unknown &&other) noexcept
 Move assignment exchanges the current interface pointer, with the interface pointer held by other.
 
void swap (Unknown &other) noexcept
 Exchanges the current interface pointer, with the interface pointer held by other.
 
void ResetPtr (IUnknown *other=nullptr, bool addRef=false) noexcept
 Calls Release on the currently held interface pointer if the interface pointer held by other points to a different interface.
 
Unknownoperator= (nullptr_t)
 Assigning nullptr to the object, releases the currently held interface pointer, and sets the interface pointer to nullptr.
 
IUnknown * Detach ()
 Returns the currently held interface pointer, setting the interface pointer of the object to nullptr.
 
template<typename T >
requires std::is_base_of_v<Unknown, T >
T As () const
 Creates an instance of the interface wrapper class T, by querying the interface pointer for the interface type wrapped by T.
 
template<typename T >
requires std::is_base_of_v<Unknown, T>
bool Is () const noexcept
 Returns true if the interface can successfully be queried for the interface wrapped by T.
 
template<typename T >
requires std::is_base_of_v<IUnknown, T>
ComPtr< TAs () const
 Creates an instance of the interface smart pointer ComPtr<T> for the interface T, by querying the interface pointer for the interface type T.
 
template<typename T >
requires std::is_base_of_v<IUnknown, T>
bool Is () const noexcept
 This function can be used to detect if an object supports a particular COM interface derived from IUnknown.
 
template<typename T = IUnknown>
TGetInterfacePointer () const noexcept
 Retrieves a pointer to the interface wrapped by this object.
 
bool QueryInterface (REFIID riid, void **itf) const
 Queries a COM object for a pointer to one of its interface; identifying the interface by a reference to its interface identifier (IID).
 
template<typename T >
requires std::is_base_of_v<IUnknown, T>
bool QueryInterface (T **itf) const
 Queries the interface for an interface pointer of type T.
 
constexpr bool operator== (const Unknown &other) const noexcept
 Returns true if the interface pointer held by this object is the same as the interface pointer held by the other object.
 
constexpr bool operator!= (const Unknown &other) const noexcept
 Returns true if the interface pointer held by this object is not the same as the interface pointer held by the other object.
 
constexpr bool operator== (const IUnknown *other) const noexcept
 Returns true if the interface pointer held by this object is the same as the interface pointer held by other.
 
constexpr bool operator!= (const IUnknown *other) const noexcept
 Returns true if the interface pointer held by this object is not the same as the interface pointer held by other.
 

Static Public Member Functions

static HW_EXPORT std::shared_ptr< FileSaveDialogCreate ()
 
- Static Public Member Functions inherited from Harlinn::Common::Core::Unknown
template<typename T = Unknown>
requires std::is_base_of_v<Unknown, T>
static T CoCreateInstanceFromClassId (const CLSID &clsid, DWORD classContext=CLSCTX_INPROC_SERVER)
 Creates and default-initializes a single object of the class associated with a specified CLSID.
 
template<typename T = Unknown>
requires std::is_base_of_v<Unknown, T>
static T CoCreateInstanceFromClassId (const wchar_t *clsid, DWORD classContext=CLSCTX_INPROC_SERVER)
 
template<typename T = Unknown>
requires std::is_base_of_v<Unknown, T>
static T CoCreateInstanceFromClassId (const WideString &clsid, DWORD classContext=CLSCTX_INPROC_SERVER)
 
template<typename T = Unknown>
requires std::is_base_of_v<Unknown, T>
static T CoCreateInstanceFromProgId (const wchar_t *progId, DWORD classContext=CLSCTX_INPROC_SERVER)
 
template<typename T = Unknown>
requires std::is_base_of_v<Unknown, T>
static T CoCreateInstanceFromProgId (const WideString &progId, DWORD classContext=CLSCTX_INPROC_SERVER)
 
template<typename T = Unknown>
requires std::is_base_of_v<Unknown, T>
static T CoCreateInstanceFromDll (const ModuleHandle &dll, const CLSID &clsid)
 

Additional Inherited Members

- Public Attributes inherited from Harlinn::Windows::FileDialog
boost::signals2::signal< void(FileDialog *sender, bool &accept) > OnFileOk
 
boost::signals2::signal< void(FileDialog *sender, const ShellItem &newFolder, bool &allow) > OnFolderChanging
 
boost::signals2::signal< void(FileDialog *sender) > OnFolderChange
 
boost::signals2::signal< void(FileDialog *sender) > OnSelectionChange
 
boost::signals2::signal< void(FileDialog *sender, const ShellItem &shellItem, FDE_SHAREVIOLATION_RESPONSE &response) > OnShareViolation
 
boost::signals2::signal< void(FileDialog *sender) > OnTypeChange
 
boost::signals2::signal< void(FileDialog *sender, const ShellItem &shellItem, FDE_OVERWRITE_RESPONSE &response) > OnOverwrite
 
- Protected Member Functions inherited from Harlinn::Windows::FileDialog
virtual HW_EXPORT void DoOnFileOk (bool &accept)
 
virtual HW_EXPORT void DoOnFolderChanging (const ShellItem &newFolder, bool &allow)
 
virtual HW_EXPORT void DoOnFolderChange ()
 
virtual HW_EXPORT void DoOnSelectionChange ()
 
virtual HW_EXPORT void DoOnShareViolation (const ShellItem &shellItem, FDE_SHAREVIOLATION_RESPONSE &response)
 
virtual HW_EXPORT void DoOnTypeChange ()
 
virtual HW_EXPORT void DoOnOverwrite (const ShellItem &shellItem, FDE_OVERWRITE_RESPONSE &response)
 
- Protected Attributes inherited from Harlinn::Common::Core::Unknown
IUnknown * unknown_
 

Member Typedef Documentation

◆ Base

Member Function Documentation

◆ ApplyProperties()

FileSaveDialog & Harlinn::Windows::FileSaveDialog::ApplyProperties ( IShellItem * psi,
IPropertyStore * pStore,
HWND hwnd,
IFileOperationProgressSink * pSink )
inline

◆ Create()

std::shared_ptr< FileSaveDialog > Harlinn::Windows::FileSaveDialog::Create ( )
static

◆ GetProperties()

PropertyStore Harlinn::Windows::FileSaveDialog::GetProperties ( )
inline

◆ SetCollectedProperties()

FileSaveDialog & Harlinn::Windows::FileSaveDialog::SetCollectedProperties ( IPropertyDescriptionList * pList,
bool appendDefault )
inline

◆ SetProperties()

FileSaveDialog & Harlinn::Windows::FileSaveDialog::SetProperties ( IPropertyStore * pStore)
inline

◆ SetSaveAsItem()

FileSaveDialog & Harlinn::Windows::FileSaveDialog::SetSaveAsItem ( IShellItem * psi)
inline

The documentation for this class was generated from the following files: