xtd 0.2.0
Loading...
Searching...
No Matches
browser_info_flags.h
Go to the documentation of this file.
1
4#pragma once
5#include <cstddef>
6
7#if !defined(BIF_RETURNONLYFSDIRS)
14constexpr size_t BIF_RETURNONLYFSDIRS = 0x00000001;
21constexpr size_t BIF_DONTGOBELOWDOMAIN = 0x00000002;
28constexpr size_t BIF_STATUSTEXT = 0x00000004;
35constexpr size_t BIF_RETURNFSANCESTORS = 0x00000008;
42constexpr size_t BIF_EDITBOX = 0x00000010;
49constexpr size_t BIF_VALIDATE = 0x00000020;
50
57constexpr size_t BIF_NEWDIALOGSTYLE = 0x00000040;
58
66
73constexpr size_t BIF_BROWSEINCLUDEURLS = 0x00000080;
80constexpr size_t BIF_UAHINT = 0x00000100;
87constexpr size_t BIF_NONEWFOLDERBUTTON = 0x00000200;
94constexpr size_t BIF_NOTRANSLATETARGETS = 0x00000400;
95
102constexpr size_t BIF_BROWSEFORCOMPUTER = 0x00001000;
109constexpr size_t BIF_BROWSEFORPRINTER = 0x00002000;
116constexpr size_t BIF_BROWSEINCLUDEFILES = 0x00004000;
123constexpr size_t BIF_SHAREABLE = 0x00008000;
130constexpr size_t BIF_BROWSEFILEJUNCTIONS = 0x00010000;
131#endif
constexpr size_t BIF_EDITBOX
Include an edit control in the browse dialog box that allows the user to type the name of an item.
Definition browser_info_flags.h:42
constexpr size_t BIF_SHAREABLE
The browse dialog box can display sharable resources on remote systems. This is intended for applicat...
Definition browser_info_flags.h:123
constexpr size_t BIF_STATUSTEXT
Include a status area in the dialog box. The callback function can set the status text by sending mes...
Definition browser_info_flags.h:28
constexpr size_t BIF_DONTGOBELOWDOMAIN
Do not include network folders below the domain level in the dialog box's tree view control.
Definition browser_info_flags.h:21
constexpr size_t BIF_UAHINT
When combined with BIF_NEWDIALOGSTYLE, adds a usage hint to the dialog box, in place of the edit box....
Definition browser_info_flags.h:80
constexpr size_t BIF_NOTRANSLATETARGETS
When the selected item is a shortcut, return the PIDL of the shortcut itself rather than its target.
Definition browser_info_flags.h:94
constexpr size_t BIF_RETURNONLYFSDIRS
Only return file system directories. If the user selects folders that are not part of the file system...
Definition browser_info_flags.h:14
constexpr size_t BIF_NONEWFOLDERBUTTON
Do not include the New Folder button in the browse dialog box.
Definition browser_info_flags.h:87
constexpr size_t BIF_BROWSEINCLUDEURLS
The browse dialog box can display URLs. The BIF_USENEWUI and BIF_BROWSEINCLUDEFILES flags must also b...
Definition browser_info_flags.h:73
constexpr size_t BIF_BROWSEINCLUDEFILES
The browse dialog box displays files as well as folders.
Definition browser_info_flags.h:116
constexpr size_t BIF_RETURNFSANCESTORS
Include a status area in the dialog box. The callback function can set the status text by sending mes...
Definition browser_info_flags.h:35
constexpr size_t BIF_BROWSEFORPRINTER
Only allow the selection of printers. If the user selects anything other than a printer,...
Definition browser_info_flags.h:109
constexpr size_t BIF_BROWSEFILEJUNCTIONS
Allow folder junctions such as a library or a compressed file with a .zip file name extension to be b...
Definition browser_info_flags.h:130
constexpr size_t BIF_VALIDATE
If the user types an invalid name into the edit box, the browse dialog box calls the application's Br...
Definition browser_info_flags.h:49
constexpr size_t BIF_BROWSEFORCOMPUTER
Only return computers. If the user selects anything other than a computer, the OK button is grayed.
Definition browser_info_flags.h:102
constexpr size_t BIF_USENEWUI
Use the new user interface, including an edit box. This flag is equivalent to BIF_EDITBOX | BIF_NEWDI...
Definition browser_info_flags.h:65
constexpr size_t BIF_NEWDIALOGSTYLE
Use the new user interface. Setting this flag provides the user with a larger dialog box that can be ...
Definition browser_info_flags.h:57