xtd 0.2.0
Loading...
Searching...
No Matches
save_file_dialog.h
Go to the documentation of this file.
1
4#pragma once
5#include "file_dialog.h"
6#include <xtd/io/file>
7
9namespace xtd {
11 namespace forms {
29 public:
31
34 save_file_dialog() = default;
36
38
42 std::fstream open_file() const noexcept;
44
45 private:
46 bool run_file_dialog(intptr hwnd_owner) override;
47 void run_file_sheet(intptr owner) override;
48 };
49 }
50}
Displays a dialog box from which the user can select a file.
Definition file_dialog.h:43
Prompts the user to select a location for saving a file. This class cannot be inherited.
Definition save_file_dialog.h:28
save_file_dialog()=default
Initializes a new instance of the save_file_dialog class.
std::fstream open_file() const noexcept
Opens the file with read/write permission selected by the user.
Contains xtd::forms::file_dialog dialog.
#define forms_export_
Define shared library export.
Definition forms_export.h:13
intmax_t intptr
Represent a pointer or a handle.
Definition types.h:153
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