xtd 0.2.0
Loading...
Searching...
No Matches
xtd::forms::progress_box Class Referencefinal
Inheritance diagram for xtd::forms::progress_box:
xtd::static_object

Definition

Represents a common dialog box that displays a progress dialog.

Header
#include <xtd/forms/progress_box>
Namespace
xtd::forms
Library
xtd.forms
Appearance
Windows macOS Gnome
Light  
 
 
 
 
 
Dark  
 
 
 
 
 
Examples
The following code example demonstrates the use of xtd::forms::progress_box dialog.
#include <xtd/forms/application>
#include <xtd/forms/button>
#include <xtd/forms/form>
#include <xtd/forms/progress_box>
#include <xtd/threading/thread>
using namespace xtd;
using namespace xtd::forms;
class form1 : public form {
public:
form1() {
text("Progress box example");
client_size({ 400, 200 });
download_button.parent(*this)
.text("Download")
.location({ 10, 10 })
.size({ 150, 35 })
.click += [this] {
progress_box::show(*this, "Downloading", "Please wait...", 0, 0, 100, progress_box_options::show_cancel_button | progress_box_options::show_skip_button);
for (auto index = progress_box::minimum(); index <= progress_box::maximum(); ++index) {
threading::thread::sleep(100_ms); // Do some work...
progress_box::update(index, "Downloading", xtd::ustring::format("{}/{}", index, progress_box::maximum()));
if (progress_box::skipped()) index++;
if (progress_box::cancelled()) break;
}
progress_box::hide();
};
}
private:
button download_button;
};
auto main()->int {
application::run(form1 {});
}
static void run()
Begins running a standard application message loop on the current thread, without a form.
Represents a Windows button control.
Definition button.h:47
Represents a window or dialog box that makes up an application's user interface.
Definition form.h:52
static ustring format(const ustring &fmt, args_t &&... args)
Writes the text representation of the specified arguments list, to string using the specified format ...
Definition ustring.h:1131
size_t size
Represents a size of any object in bytes.
Definition types.h:197
@ text
The xtd::forms::status_bar_panel displays text in the standard font.
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

Public Static Properties

static bool cancelled ()
 Check if the progress dialog is canceled.
 
static bool skipped ()
 Check if the progress dialog is skipped.
 
static int32 minimum ()
 Gets the minimum value of the range of the progress dialog.
 
static int32 maximum ()
 Gets the maximum value of the range of the progress dialog.
 

Public Static Methods

static void hide ()
 Hides a progress box in front.
 
static void show (const xtd::ustring &title)
 Displays a progress box.
 
static void show (const xtd::ustring &title, const progress_box_options options)
 Displays a progress box.
 
static void show (const xtd::ustring &title, const xtd::ustring &message)
 Displays a progress box.
 
static void show (const xtd::ustring &title, const xtd::ustring &message, const progress_box_options options)
 Displays a progress box.
 
static void show (const xtd::ustring &title, const xtd::ustring &message, const int32 initial_value)
 Displays a progress box.
 
static void show (const xtd::ustring &title, const xtd::ustring &message, const int32 initial_value, const progress_box_options options)
 Displays a progress box.
 
static void show (const xtd::ustring &title, const xtd::ustring &message, const int32 initial_value, const int32 minimum)
 Displays a progress box.
 
static void show (const xtd::ustring &title, const xtd::ustring &message, const int32 initial_value, const int32 minimum, const progress_box_options options)
 Displays a progress box.
 
static void show (const xtd::ustring &title, const xtd::ustring &message, const int32 initial_value, const int32 minimum, const int32 maximum)
 Displays a progress box.
 
static void show (const xtd::ustring &title, const xtd::ustring &message, const int32 initial_value, const int32 minimum, const int32 maximum, const progress_box_options options)
 Displays a progress box.
 
static void show (const xtd::ustring &title, const xtd::ustring &message, const int32 initial_value, const int32 minimum, const int32 maximum, const bool marquee, const size_t marquee_animation_speed)
 Displays a progress box.
 
static void show (const xtd::ustring &title, const xtd::ustring &message, const int32 initial_value, const int32 minimum, const int32 maximum, const bool marquee, const size_t marquee_animation_speed, const progress_box_options options)
 Displays a progress box.
 
static void show (const xtd::ustring &title, const xtd::ustring &message, const int32 initial_value, const int32 minimum, const int32 maximum, const bool marquee, const size_t marquee_animation_speed, const std::vector< xtd::ustring > &informations)
 Displays a progress box.
 
static void show (const xtd::ustring &title, const xtd::ustring &message, const int32 initial_value, const int32 minimum, const int32 maximum, const bool marquee, const size_t marquee_animation_speed, const std::vector< xtd::ustring > &informations, const progress_box_options options)
 Displays a progress box.
 
static void show (const iwin32_window &owner, const xtd::ustring &title)
 Displays a progress dialog box in front of a specified window.
 
static void show (const iwin32_window &owner, const xtd::ustring &title, const progress_box_options options)
 Displays a progress dialog box in front of a specified window.
 
static void show (const iwin32_window &owner, const xtd::ustring &title, const xtd::ustring &message)
 Displays a progress dialog box in front of a specified window.
 
static void show (const iwin32_window &owner, const xtd::ustring &title, const xtd::ustring &message, const progress_box_options options)
 Displays a progress dialog box in front of a specified window.
 
static void show (const iwin32_window &owner, const xtd::ustring &title, const xtd::ustring &message, const int32 initial_value)
 Displays a progress dialog box in front of a specified window.
 
static void show (const iwin32_window &owner, const xtd::ustring &title, const xtd::ustring &message, const int32 initial_value, const progress_box_options options)
 Displays a progress dialog box in front of a specified window.
 
static void show (const iwin32_window &owner, const xtd::ustring &title, const xtd::ustring &message, const int32 initial_value, const int32 minimum)
 Displays a progress dialog box in front of a specified window.
 
static void show (const iwin32_window &owner, const xtd::ustring &title, const xtd::ustring &message, const int32 initial_value, const int32 minimum, const progress_box_options options)
 Displays a progress dialog box in front of a specified window.
 
static void show (const iwin32_window &owner, const xtd::ustring &title, const xtd::ustring &message, const int32 initial_value, const int32 minimum, const int32 maximum)
 Displays a progress dialog box in front of a specified window.
 
static void show (const iwin32_window &owner, const xtd::ustring &title, const xtd::ustring &message, const int32 initial_value, const int32 minimum, const int32 maximum, const progress_box_options options)
 Displays a progress dialog box in front of a specified window.
 
static void show (const iwin32_window &owner, const xtd::ustring &title, const xtd::ustring &message, const int32 initial_value, const int32 minimum, const int32 maximum, const bool marquee, const size_t marquee_animation_speed)
 Displays a progress dialog box in front of a specified window.
 
static void show (const iwin32_window &owner, const xtd::ustring &title, const xtd::ustring &message, const int32 initial_value, const int32 minimum, const int32 maximum, const bool marquee, const size_t marquee_animation_speed, const progress_box_options options)
 Displays a progress dialog box in front of a specified window.
 
static void show (const iwin32_window &owner, const xtd::ustring &title, const xtd::ustring &message, const int32 initial_value, const int32 minimum, const int32 maximum, const bool marquee, const size_t marquee_animation_speed, const std::vector< xtd::ustring > &informations)
 Displays a progress dialog box in front of a specified window.
 
static void show (const iwin32_window &owner, const xtd::ustring &title, const xtd::ustring &message, const int32 initial_value, const int32 minimum, const int32 maximum, const bool marquee, const size_t marquee_animation_speed, const std::vector< xtd::ustring > &informations, const progress_box_options options)
 Displays a progress dialog box in front of a specified window.
 
static void update (const progress_box_options options)
 Updates progress box.
 
static void update (const int32 value)
 Updates progress box.
 
static void update (const int32 value, const xtd::ustring &title)
 Updates progress box.
 
static void update (const int32 value, const xtd::ustring &title, const xtd::ustring &message)
 Updates progress box.
 
static void update (const int32 value, const xtd::ustring &title, const xtd::ustring &message, const int32 minimum)
 Updates progress box.
 
static void update (const int32 value, const xtd::ustring &title, const xtd::ustring &message, const int32 minimum, const int32 maximum)
 Updates progress box.
 
static void update (const int32 value, const xtd::ustring &title, const xtd::ustring &message, const int32 minimum, const int32 maximum, const bool marquee)
 Updates progress box.
 
static void update (const int32 value, const xtd::ustring &title, const xtd::ustring &message, const int32 minimum, const int32 maximum, const bool marquee, const size_t marquee_animation_speed)
 Updates progress box.
 
static void update (const int32 value, const xtd::ustring &title, const xtd::ustring &message, const int32 minimum, const int32 maximum, const bool marquee, const size_t marquee_animation_speed, const std::vector< xtd::ustring > &informations)
 Updates progress box.
 

Member Function Documentation

◆ cancelled()

static bool xtd::forms::progress_box::cancelled ( )
static

Check if the progress dialog is canceled.

Returns
true if the progress dialog is canceled

◆ hide()

static void xtd::forms::progress_box::hide ( )
static

Hides a progress box in front.

◆ maximum()

static int32 xtd::forms::progress_box::maximum ( )
static

Gets the maximum value of the range of the progress dialog.

Returns
The maximum value of the range. The default is 100.

◆ minimum()

static int32 xtd::forms::progress_box::minimum ( )
static

Gets the minimum value of the range of the progress dialog.

Returns
The minimum value of the range. The default is 0.

◆ show() [1/28]

static void xtd::forms::progress_box::show ( const iwin32_window owner,
const xtd::ustring title 
)
static

Displays a progress dialog box in front of a specified window.

Parameters
ownerAn If xtd::forms::iwin32_window that represents the owner window of the progress dialog box.
titleAn xtd::ustring that specifies the title of the progress dialog.

◆ show() [2/28]

static void xtd::forms::progress_box::show ( const iwin32_window owner,
const xtd::ustring title,
const progress_box_options  options 
)
static

Displays a progress dialog box in front of a specified window.

Parameters
ownerAn If xtd::forms::iwin32_window that represents the owner window of the progress dialog box.
titleAn xtd::ustring that specifies the title of the progress dialog.
optionsA bitwise combination of enum xtd::forms::progress_box_options to specify additional options to the progress dialog box.

◆ show() [3/28]

static void xtd::forms::progress_box::show ( const iwin32_window owner,
const xtd::ustring title,
const xtd::ustring message 
)
static

Displays a progress dialog box in front of a specified window.

Parameters
ownerAn If xtd::forms::iwin32_window that represents the owner window of the progress dialog box.
titleAn xtd::ustring that specifies the title of the progress dialog.
messageAn xtd::ustring that specifies the message of the progress dialog.

◆ show() [4/28]

static void xtd::forms::progress_box::show ( const iwin32_window owner,
const xtd::ustring title,
const xtd::ustring message,
const int32  initial_value 
)
static

Displays a progress dialog box in front of a specified window.

Parameters
ownerAn If xtd::forms::iwin32_window that represents the owner window of the progress dialog box.
titleAn xtd::ustring that specifies the title of the progress dialog.
messageAn xtd::ustring that specifies the message of the progress dialog.
initial_valueAn integer that indicates the initial value of the progress dialog.

◆ show() [5/28]

static void xtd::forms::progress_box::show ( const iwin32_window owner,
const xtd::ustring title,
const xtd::ustring message,
const int32  initial_value,
const int32  minimum 
)
static

Displays a progress dialog box in front of a specified window.

Parameters
ownerAn If xtd::forms::iwin32_window that represents the owner window of the progress dialog box.
titleAn xtd::ustring that specifies the title of the progress dialog.
messageAn xtd::ustring that specifies the message of the progress dialog.
initial_valueAn integer that indicates the initial value of the progress dialog.
minimumAn integer that indicates the minimum value of the progress dialog.

◆ show() [6/28]

static void xtd::forms::progress_box::show ( const iwin32_window owner,
const xtd::ustring title,
const xtd::ustring message,
const int32  initial_value,
const int32  minimum,
const int32  maximum 
)
static

Displays a progress dialog box in front of a specified window.

Parameters
ownerAn If xtd::forms::iwin32_window that represents the owner window of the progress dialog box.
titleAn xtd::ustring that specifies the title of the progress dialog.
messageAn xtd::ustring that specifies the message of the progress dialog.
initial_valueAn integer that indicates the initial value of the progress dialog.
minimumAn integer that indicates the minimum value of the progress dialog.
maximumAn integer that indicates the maximum value of the progress dialog.

◆ show() [7/28]

static void xtd::forms::progress_box::show ( const iwin32_window owner,
const xtd::ustring title,
const xtd::ustring message,
const int32  initial_value,
const int32  minimum,
const int32  maximum,
const bool  marquee,
const size_t  marquee_animation_speed 
)
static

Displays a progress dialog box in front of a specified window.

Parameters
ownerAn If xtd::forms::iwin32_window that represents the owner window of the progress dialog box.
titleAn xtd::ustring that specifies the title of the progress dialog.
messageAn xtd::ustring that specifies the message of the progress dialog.
initial_valueAn integer that indicates the initial value of the progress dialog.
minimumAn integer that indicates the minimum value of the progress dialog.
maximumAn integer that indicates the maximum value of the progress dialog.
marqueeA boolean that Indicates progress by continuously scrolling a block across a xtd::forms::progress_bar in a marquee fashion.

◆ show() [8/28]

static void xtd::forms::progress_box::show ( const iwin32_window owner,
const xtd::ustring title,
const xtd::ustring message,
const int32  initial_value,
const int32  minimum,
const int32  maximum,
const bool  marquee,
const size_t  marquee_animation_speed,
const progress_box_options  options 
)
static

Displays a progress dialog box in front of a specified window.

Parameters
ownerAn If xtd::forms::iwin32_window that represents the owner window of the progress dialog box.
titleAn xtd::ustring that specifies the title of the progress dialog.
messageAn xtd::ustring that specifies the message of the progress dialog.
initial_valueAn integer that indicates the initial value of the progress dialog.
minimumAn integer that indicates the minimum value of the progress dialog.
maximumAn integer that indicates the maximum value of the progress dialog.
marqueeA boolean that Indicates progress by continuously scrolling a block across a xtd::forms::progress_bar in a marquee fashion.
optionsA bitwise combination of enum xtd::forms::progress_box_options to specify additional options to the progress dialog box.

◆ show() [9/28]

static void xtd::forms::progress_box::show ( const iwin32_window owner,
const xtd::ustring title,
const xtd::ustring message,
const int32  initial_value,
const int32  minimum,
const int32  maximum,
const bool  marquee,
const size_t  marquee_animation_speed,
const std::vector< xtd::ustring > &  informations 
)
static

Displays a progress dialog box in front of a specified window.

Parameters
ownerAn If xtd::forms::iwin32_window that represents the owner window of the progress dialog box.
titleAn xtd::ustring that specifies the title of the progress dialog.
messageAn xtd::ustring that specifies the message of the progress dialog.
initial_valueAn integer that indicates the initial value of the progress dialog.
minimumAn integer that indicates the minimum value of the progress dialog.
maximumAn integer that indicates the maximum value of the progress dialog.
marqueeA boolean that Indicates progress by continuously scrolling a block across a xtd::forms::progress_bar in a marquee fashion.
marquee_animation_speedAn integer that indicates the time period, in milliseconds, that it takes the progress block to scroll across the progress bar.
informationsAn std::vector of xtd::ustring that specifies the information texts of the progress dialog.

◆ show() [10/28]

static void xtd::forms::progress_box::show ( const iwin32_window owner,
const xtd::ustring title,
const xtd::ustring message,
const int32  initial_value,
const int32  minimum,
const int32  maximum,
const bool  marquee,
const size_t  marquee_animation_speed,
const std::vector< xtd::ustring > &  informations,
const progress_box_options  options 
)
static

Displays a progress dialog box in front of a specified window.

Parameters
ownerAn If xtd::forms::iwin32_window that represents the owner window of the progress dialog box.
titleAn xtd::ustring that specifies the title of the progress dialog.
messageAn xtd::ustring that specifies the message of the progress dialog.
initial_valueAn integer that indicates the initial value of the progress dialog.
minimumAn integer that indicates the minimum value of the progress dialog.
maximumAn integer that indicates the maximum value of the progress dialog.
marqueeA boolean that Indicates progress by continuously scrolling a block across a xtd::forms::progress_bar in a marquee fashion.
marquee_animation_speedAn integer that indicates the time period, in milliseconds, that it takes the progress block to scroll across the progress bar.
informationsAn std::vector of xtd::ustring that specifies the information texts of the progress dialog.
optionsA bitwise combination of enum xtd::forms::progress_box_options to specify additional options to the progress dialog box.

◆ show() [11/28]

static void xtd::forms::progress_box::show ( const iwin32_window owner,
const xtd::ustring title,
const xtd::ustring message,
const int32  initial_value,
const int32  minimum,
const int32  maximum,
const progress_box_options  options 
)
static

Displays a progress dialog box in front of a specified window.

Parameters
ownerAn If xtd::forms::iwin32_window that represents the owner window of the progress dialog box.
titleAn xtd::ustring that specifies the title of the progress dialog.
messageAn xtd::ustring that specifies the message of the progress dialog.
initial_valueAn integer that indicates the initial value of the progress dialog.
minimumAn integer that indicates the minimum value of the progress dialog.
maximumAn integer that indicates the maximum value of the progress dialog.
optionsA bitwise combination of enum xtd::forms::progress_box_options to specify additional options to the progress dialog box.

◆ show() [12/28]

static void xtd::forms::progress_box::show ( const iwin32_window owner,
const xtd::ustring title,
const xtd::ustring message,
const int32  initial_value,
const int32  minimum,
const progress_box_options  options 
)
static

Displays a progress dialog box in front of a specified window.

Parameters
ownerAn If xtd::forms::iwin32_window that represents the owner window of the progress dialog box.
titleAn xtd::ustring that specifies the title of the progress dialog.
messageAn xtd::ustring that specifies the message of the progress dialog.
initial_valueAn integer that indicates the initial value of the progress dialog.
minimumAn integer that indicates the minimum value of the progress dialog.
optionsA bitwise combination of enum xtd::forms::progress_box_options to specify additional options to the progress dialog box.

◆ show() [13/28]

static void xtd::forms::progress_box::show ( const iwin32_window owner,
const xtd::ustring title,
const xtd::ustring message,
const int32  initial_value,
const progress_box_options  options 
)
static

Displays a progress dialog box in front of a specified window.

Parameters
ownerAn If xtd::forms::iwin32_window that represents the owner window of the progress dialog box.
titleAn xtd::ustring that specifies the title of the progress dialog.
messageAn xtd::ustring that specifies the message of the progress dialog.
initial_valueAn integer that indicates the initial value of the progress dialog.
optionsA bitwise combination of enum xtd::forms::progress_box_options to specify additional options to the progress dialog box.

◆ show() [14/28]

static void xtd::forms::progress_box::show ( const iwin32_window owner,
const xtd::ustring title,
const xtd::ustring message,
const progress_box_options  options 
)
static

Displays a progress dialog box in front of a specified window.

Parameters
ownerAn If xtd::forms::iwin32_window that represents the owner window of the progress dialog box.
titleAn xtd::ustring that specifies the title of the progress dialog.
messageAn xtd::ustring that specifies the message of the progress dialog.
optionsA bitwise combination of enum xtd::forms::progress_box_options to specify additional options to the progress dialog box.

◆ show() [15/28]

static void xtd::forms::progress_box::show ( const xtd::ustring title)
static

Displays a progress box.

Parameters
titleAn xtd::ustring that specifies the title of the progress dialog.

◆ show() [16/28]

static void xtd::forms::progress_box::show ( const xtd::ustring title,
const progress_box_options  options 
)
static

Displays a progress box.

Parameters
titleAn xtd::ustring that specifies the title of the progress dialog.
optionsA bitwise combination of enum xtd::forms::progress_box_options to specify additional options to the progress dialog box.

◆ show() [17/28]

static void xtd::forms::progress_box::show ( const xtd::ustring title,
const xtd::ustring message 
)
static

Displays a progress box.

Parameters
titleAn xtd::ustring that specifies the title of the progress dialog.
messageAn xtd::ustring that specifies the message of the progress dialog.

◆ show() [18/28]

static void xtd::forms::progress_box::show ( const xtd::ustring title,
const xtd::ustring message,
const int32  initial_value 
)
static

Displays a progress box.

Parameters
titleAn xtd::ustring that specifies the title of the progress dialog.
messageAn xtd::ustring that specifies the message of the progress dialog.
initial_valueAn integer that indicates the initial value of the progress dialog.

◆ show() [19/28]

static void xtd::forms::progress_box::show ( const xtd::ustring title,
const xtd::ustring message,
const int32  initial_value,
const int32  minimum 
)
static

Displays a progress box.

Parameters
titleAn xtd::ustring that specifies the title of the progress dialog.
messageAn xtd::ustring that specifies the message of the progress dialog.
initial_valueAn integer that indicates the initial value of the progress dialog.
minimumAn integer that indicates the minimum value of the progress dialog.

◆ show() [20/28]

static void xtd::forms::progress_box::show ( const xtd::ustring title,
const xtd::ustring message,
const int32  initial_value,
const int32  minimum,
const int32  maximum 
)
static

Displays a progress box.

Parameters
titleAn xtd::ustring that specifies the title of the progress dialog.
messageAn xtd::ustring that specifies the message of the progress dialog.
initial_valueAn integer that indicates the initial value of the progress dialog.
minimumAn integer that indicates the minimum value of the progress dialog.
maximumAn integer that indicates the maximum value of the progress dialog.

◆ show() [21/28]

static void xtd::forms::progress_box::show ( const xtd::ustring title,
const xtd::ustring message,
const int32  initial_value,
const int32  minimum,
const int32  maximum,
const bool  marquee,
const size_t  marquee_animation_speed 
)
static

Displays a progress box.

Parameters
titleAn xtd::ustring that specifies the title of the progress dialog.
messageAn xtd::ustring that specifies the message of the progress dialog.
initial_valueAn integer that indicates the initial value of the progress dialog.
minimumAn integer that indicates the minimum value of the progress dialog.
maximumAn integer that indicates the maximum value of the progress dialog.
marqueeA boolean that Indicates progress by continuously scrolling a block across a xtd::forms::progress_bar in a marquee fashion.

◆ show() [22/28]

static void xtd::forms::progress_box::show ( const xtd::ustring title,
const xtd::ustring message,
const int32  initial_value,
const int32  minimum,
const int32  maximum,
const bool  marquee,
const size_t  marquee_animation_speed,
const progress_box_options  options 
)
static

Displays a progress box.

Parameters
titleAn xtd::ustring that specifies the title of the progress dialog.
messageAn xtd::ustring that specifies the message of the progress dialog.
initial_valueAn integer that indicates the initial value of the progress dialog.
minimumAn integer that indicates the minimum value of the progress dialog.
maximumAn integer that indicates the maximum value of the progress dialog.
marqueeA boolean that Indicates progress by continuously scrolling a block across a xtd::forms::progress_bar in a marquee fashion.
optionsA bitwise combination of enum xtd::forms::progress_box_options to specify additional options to the progress dialog box.

◆ show() [23/28]

static void xtd::forms::progress_box::show ( const xtd::ustring title,
const xtd::ustring message,
const int32  initial_value,
const int32  minimum,
const int32  maximum,
const bool  marquee,
const size_t  marquee_animation_speed,
const std::vector< xtd::ustring > &  informations 
)
static

Displays a progress box.

Parameters
titleAn xtd::ustring that specifies the title of the progress dialog.
messageAn xtd::ustring that specifies the message of the progress dialog.
initial_valueAn integer that indicates the initial value of the progress dialog.
minimumAn integer that indicates the minimum value of the progress dialog.
maximumAn integer that indicates the maximum value of the progress dialog.
marqueeA boolean that Indicates progress by continuously scrolling a block across a xtd::forms::progress_bar in a marquee fashion.
marquee_animation_speedAn integer that indicates the time period, in milliseconds, that it takes the progress block to scroll across the progress bar.
informationsAn std::vector of xtd::ustring that specifies the information texts of the progress dialog.

◆ show() [24/28]

static void xtd::forms::progress_box::show ( const xtd::ustring title,
const xtd::ustring message,
const int32  initial_value,
const int32  minimum,
const int32  maximum,
const bool  marquee,
const size_t  marquee_animation_speed,
const std::vector< xtd::ustring > &  informations,
const progress_box_options  options 
)
static

Displays a progress box.

Parameters
titleAn xtd::ustring that specifies the title of the progress dialog.
messageAn xtd::ustring that specifies the message of the progress dialog.
initial_valueAn integer that indicates the initial value of the progress dialog.
minimumAn integer that indicates the minimum value of the progress dialog.
maximumAn integer that indicates the maximum value of the progress dialog.
marqueeA boolean that Indicates progress by continuously scrolling a block across a xtd::forms::progress_bar in a marquee fashion.
marquee_animation_speedAn integer that indicates the time period, in milliseconds, that it takes the progress block to scroll across the progress bar.
informationsAn std::vector of xtd::ustring that specifies the information texts of the progress dialog.
optionsA bitwise combination of enum xtd::forms::progress_box_options to specify additional options to the progress dialog box.

◆ show() [25/28]

static void xtd::forms::progress_box::show ( const xtd::ustring title,
const xtd::ustring message,
const int32  initial_value,
const int32  minimum,
const int32  maximum,
const progress_box_options  options 
)
static

Displays a progress box.

Parameters
titleAn xtd::ustring that specifies the title of the progress dialog.
messageAn xtd::ustring that specifies the message of the progress dialog.
initial_valueAn integer that indicates the initial value of the progress dialog.
minimumAn integer that indicates the minimum value of the progress dialog.
maximumAn integer that indicates the maximum value of the progress dialog.
optionsA bitwise combination of enum xtd::forms::progress_box_options to specify additional options to the progress dialog box.

◆ show() [26/28]

static void xtd::forms::progress_box::show ( const xtd::ustring title,
const xtd::ustring message,
const int32  initial_value,
const int32  minimum,
const progress_box_options  options 
)
static

Displays a progress box.

Parameters
titleAn xtd::ustring that specifies the title of the progress dialog.
messageAn xtd::ustring that specifies the message of the progress dialog.
initial_valueAn integer that indicates the initial value of the progress dialog.
minimumAn integer that indicates the minimum value of the progress dialog.
optionsA bitwise combination of enum xtd::forms::progress_box_options to specify additional options to the progress dialog box.

◆ show() [27/28]

static void xtd::forms::progress_box::show ( const xtd::ustring title,
const xtd::ustring message,
const int32  initial_value,
const progress_box_options  options 
)
static

Displays a progress box.

Parameters
titleAn xtd::ustring that specifies the title of the progress dialog.
messageAn xtd::ustring that specifies the message of the progress dialog.
initial_valueAn integer that indicates the initial value of the progress dialog.
optionsA bitwise combination of enum xtd::forms::progress_box_options to specify additional options to the progress dialog box.

◆ show() [28/28]

static void xtd::forms::progress_box::show ( const xtd::ustring title,
const xtd::ustring message,
const progress_box_options  options 
)
static

Displays a progress box.

Parameters
titleAn xtd::ustring that specifies the title of the progress dialog.
messageAn xtd::ustring that specifies the message of the progress dialog.
optionsA bitwise combination of enum xtd::forms::progress_box_options to specify additional options to the progress dialog box.

◆ skipped()

static bool xtd::forms::progress_box::skipped ( )
static

Check if the progress dialog is skipped.

Returns
true if the progress dialog is skipped

◆ update() [1/9]

static void xtd::forms::progress_box::update ( const int32  value)
static

Updates progress box.

Parameters
valueAn integer that indicates the value of the progress dialog.

◆ update() [2/9]

static void xtd::forms::progress_box::update ( const int32  value,
const xtd::ustring title 
)
static

Updates progress box.

Parameters
valueAn integer that indicates the value of the progress dialog.
titleAn xtd::ustring that specifies the title of the progress dialog.

◆ update() [3/9]

static void xtd::forms::progress_box::update ( const int32  value,
const xtd::ustring title,
const xtd::ustring message 
)
static

Updates progress box.

Parameters
valueAn integer that indicates the value of the progress dialog.
titleAn xtd::ustring that specifies the title of the progress dialog.
messageAn xtd::ustring that specifies the message of the progress dialog.

◆ update() [4/9]

static void xtd::forms::progress_box::update ( const int32  value,
const xtd::ustring title,
const xtd::ustring message,
const int32  minimum 
)
static

Updates progress box.

Parameters
valueAn integer that indicates the value of the progress dialog.
titleAn xtd::ustring that specifies the title of the progress dialog.
messageAn xtd::ustring that specifies the message of the progress dialog.
minimumAn integer that indicates the minimum value of the progress dialog.

◆ update() [5/9]

static void xtd::forms::progress_box::update ( const int32  value,
const xtd::ustring title,
const xtd::ustring message,
const int32  minimum,
const int32  maximum 
)
static

Updates progress box.

Parameters
valueAn integer that indicates the value of the progress dialog.
titleAn xtd::ustring that specifies the title of the progress dialog.
messageAn xtd::ustring that specifies the message of the progress dialog.
minimumAn integer that indicates the minimum value of the progress dialog.
maximumAn integer that indicates the maximum value of the progress dialog.

◆ update() [6/9]

static void xtd::forms::progress_box::update ( const int32  value,
const xtd::ustring title,
const xtd::ustring message,
const int32  minimum,
const int32  maximum,
const bool  marquee 
)
static

Updates progress box.

Parameters
valueAn integer that indicates the value of the progress dialog.
titleAn xtd::ustring that specifies the title of the progress dialog.
messageAn xtd::ustring that specifies the message of the progress dialog.
minimumAn integer that indicates the minimum value of the progress dialog.
maximumAn integer that indicates the maximum value of the progress dialog.
marqueeA boolean that Indicates progress by continuously scrolling a block across a xtd::forms::progress_bar in a marquee fashion.

◆ update() [7/9]

static void xtd::forms::progress_box::update ( const int32  value,
const xtd::ustring title,
const xtd::ustring message,
const int32  minimum,
const int32  maximum,
const bool  marquee,
const size_t  marquee_animation_speed 
)
static

Updates progress box.

Parameters
valueAn integer that indicates the value of the progress dialog.
titleAn xtd::ustring that specifies the title of the progress dialog.
messageAn xtd::ustring that specifies the message of the progress dialog.
minimumAn integer that indicates the minimum value of the progress dialog.
maximumAn integer that indicates the maximum value of the progress dialog.
marqueeA boolean that Indicates progress by continuously scrolling a block across a xtd::forms::progress_bar in a marquee fashion.
marquee_animation_speedAn integer that indicates the time period, in milliseconds, that it takes the progress block to scroll across the progress bar.

◆ update() [8/9]

static void xtd::forms::progress_box::update ( const int32  value,
const xtd::ustring title,
const xtd::ustring message,
const int32  minimum,
const int32  maximum,
const bool  marquee,
const size_t  marquee_animation_speed,
const std::vector< xtd::ustring > &  informations 
)
static

Updates progress box.

Parameters
valueAn integer that indicates the value of the progress dialog.
titleAn xtd::ustring that specifies the title of the progress dialog.
messageAn xtd::ustring that specifies the message of the progress dialog.
minimumAn integer that indicates the minimum value of the progress dialog.
maximumAn integer that indicates the maximum value of the progress dialog.
marqueeA boolean that Indicates progress by continuously scrolling a block across a xtd::forms::progress_bar in a marquee fashion.
marquee_animation_speedAn integer that indicates the time period, in milliseconds, that it takes the progress block to scroll across the progress bar.
informationsAn std::vector of xtd::ustring that specifies the information texts of the progress dialog.

◆ update() [9/9]

static void xtd::forms::progress_box::update ( const progress_box_options  options)
static

Updates progress box.

Parameters
optionsA bitwise combination of enum xtd::forms::progress_box_options to specify additional options to the progress dialog box.

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