[Overview][Constants][Types][Classes][Procedures and functions][Index] |
[Properties (by Name)] [Methods (by Name)] [Events (by Name)]
File Open or File Save dialog.
Source position: fpg_dialogs.pas line 157
type TfpgFileDialog = class(TfpgBaseDialog) |
||
public |
||
FileName: string; |
|
The filename selected by the user. |
constructor Create(); override; |
||
destructor Destroy; override; |
||
function RunOpenFile; |
|
Open the dialog as a File Open dialog. |
function RunSaveFile; |
|
Open the dialog as File Save dialog. |
property Filter: string; [rw] |
|
File mask filters available in the dialog. |
property FontDesc: string; [rw] |
||
property InitialDir: string; [rw] |
||
property ShowHidden: Boolean; [rw] |
|
If set to True the dialog will list hidden files as well. |
end; |
|
File Open or File Save dialog. |
|
| | ||
|
An abstract dialog which forms the basis of other dialogs. |
|
| | ||
| | ||
|
TfpgBaseForm is the base class from which to derive a window such as a form or dialog |
|
| | ||
|
This forms the basis of any visual widget in fpGUI |
|
| | ||
|
Encapsulates a top level or child window |
|
| | ||
|
Maps to a backend specific base class |
|
| | ||
|
Implements XLib specific windowing functionality |
|
| | ||
|
Abstract class use for representing a Window or Widget |
|
| | ||
|
A descendant of the FPC TComponent class |
|
| | ||
TComponent |
||
? | ||
TObject |
This dialog acts as both the File Open or File Save dialog used in fpGUI applications. The specific one needed can be launched by the TfpgFileDialog.RunOpenFile or the TfpgFileDialog.RunSaveFile methods.