xtd 0.2.0
Loading...
Searching...
No Matches
progress_box_options.h
Go to the documentation of this file.
1
4#pragma once
5#include <xtd/enum>
6
8namespace xtd {
10 namespace forms {
24 none = 0b0,
28 show_skip_button = 0b10,
30 show_elapsed_time = 0b100,
32 show_estimated_time = 0b1000,
34 show_remaining_time = 0b10000,
37 };
38 }
39}
40
42flags_attribute_(xtd::forms, progress_box_options);
43
46};
#define flags_attribute_(namespace_name, enum_type)
Provides the set attribute struct for enumerations helper.
Definition flags_attribute.h:34
std::vector< xtd::collections::generic::key_value_pair< enum_t, xtd::string > > enum_collection
Represents a pair of an enum_t value and a string of an enum of type enum_t.
Definition enum_collection.h:22
progress_box_options
Specifies options on a xtd::forms::progress_box.
Definition progress_box_options.h:22
@ show_skip_button
Whether skip button is shown.
@ show_estimated_time
Whether estimated time is shown.
@ show_remaining_time
Whether remaining time is shown.
@ show_elapsed_time
Whether elapsed time is shown.
@ all
All flags except none.
@ show_cancel_button
Whether cancel button is shown.
@ 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:38