xtd 0.2.0
Loading...
Searching...
No Matches
save_file_box_options.h
Go to the documentation of this file.
1
4#pragma once
5#include <xtd/enum>
6
8namespace xtd {
10 namespace forms {
22 none = 0b0,
26 dereference_link = 0b10,
28 validate_names = 0b100,
30 restore_directory = 0b1000,
32 enable_auto_upgrade = 0b10000,
34 show_hidden_files = 0b100000,
36 show_help = 0b1000000,
38 show_preview = 0b10000000,
43 };
44 }
45}
46
48flags_attribute_(xtd::forms, save_file_box_options);
49
52};
#define flags_attribute_(namespace_name, enum_type)
Provides the set attribute struct for enumerations helper.
Definition flags_attribute.h:34
std::vector< std::pair< enum_t, xtd::ustring > > enum_collection
Represents a pair of an enum_t value and a string of an enum of type enum_t.
Definition enum_collection.h:19
save_file_box_options
Specifies options on a xtd::forms::save_file_box.
Definition save_file_box_options.h:20
@ validate_names
Whether the dialog box accepts only valid file names.
@ enable_auto_upgrade
Whether this xtd::forms::file_dialog instance should automatically upgrade appearance and behavior wh...
@ dereference_link
Whether the dialog box returns the location of the file referenced by the shortcut (....
@ show_hidden_files
Whether hidden files are displayed in the file dialog box.
@ check_file_exists
Whether the dialog box displays a warning if the user specifies a file name that does not exist.
@ restore_directory
Whether the dialog box restores the directory to the previously selected directory before closing.
@ show_preview
Whether preview file is displayed in the file dialog box.
@ support_multi_dotted_extensions
Whether the dialog box supports displaying and saving files that have multiple file name extensions.
@ validate_names
Whether the dialog box accepts only valid file names.
@ enable_auto_upgrade
Whether this xtd::forms::file_dialog instance should automatically upgrade appearance and behavior wh...
@ dereference_link
Whether the dialog box returns the location of the file referenced by the shortcut (....
@ show_hidden_files
Whether hidden files are displayed in the file dialog box.
@ all
All flags except none.
@ check_file_exists
Whether the dialog box displays a warning if the user specifies a file name that does not exist.
@ restore_directory
Whether the dialog box restores the directory to the previously selected directory before closing.
@ show_preview
Whether preview file is displayed in the file dialog box.
@ support_multi_dotted_extensions
Whether the dialog box supports displaying and saving files that have multiple file name extensions.
@ show_help
Whether the Help button is displayed in the file dialog box.
@ show_help
A Help button appears in the color dialog box.
@ all
All flags except none.
The xtd::forms namespace contains classes for creating Windows-based applications that take full adva...
Definition xtd_about_box.h:12
The xtd namespace contains all fundamental classes to access Hardware, Os, System,...
Definition xtd_about_box.h:10
Provides the registration struct for enumerations.
Definition enum_register.h:36