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 {
22 none = 0b0,
26 show_skip_button = 0b10,
28 show_elapsed_time = 0b100,
30 show_estimated_time = 0b1000,
32 show_remaining_time = 0b10000,
35 };
36 }
37}
38
40flags_attribute_(xtd::forms, progress_box_options);
41
44};
#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
progress_box_options
Specifies options on a xtd::forms::progress_box.
Definition progress_box_options.h:20
@ 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:36