xtd 0.2.0
Loading...
Searching...
No Matches
open_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 {
31 public:
33
36 open_file_dialog() = default;
38
40
44 std::ifstream open_file() const noexcept;
45
49 virtual bool multiselect() const noexcept;
54 virtual open_file_dialog& multiselect(bool value);
56
57 private:
58 bool run_file_dialog(intptr hwnd_owner) override;
59 void run_file_sheet(intptr owner) override;
60 };
61 }
62}
Displays a dialog box from which the user can select a file.
Definition file_dialog.h:45
Displays a standard dialog box that prompts the user to open a file. This class cannot be inherited.
Definition open_file_dialog.h:30
open_file_dialog()=default
Initializes a new instance of the open_file_dialog class.
std::ifstream open_file() const noexcept
Opens the file with read only permission selected by the user.
#define forms_export_
Define shared library export.
Definition forms_export.h:13
intmax_t intptr
Represent a pointer or a handle.
Definition intptr.h:23
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
Contains xtd::forms::file_dialog dialog.