Диалог открытия/сохранения файла.
FileDialog plugin v1.3
upload.ee
disk.yandex.ru
FileDialog plugin
- Author
- Message
-
Offline
- Posts: 25
- Joined: Thu May 05, 2022 5:38 am
FileDialog plugin
Last edited by dothen on Mon Aug 31, 2026 6:15 pm, edited 3 times in total.
-
Offline
- Posts: 24
- Joined: Sat Jul 05, 2008 11:30 am
- Location: Odesa, Ukraine
Re: FileDialog plugin
Thanks for the plugin.
The vanilla "Open..." command (Command(4103)) being put in the toolbar comes as a button with a dropdown submenu (that consists of the recent files list and the "Delete non-existent" command).
It would be great if your plugin could repeat the said behavior of the vanilla command.
The vanilla "Open..." command (Command(4103)) being put in the toolbar comes as a button with a dropdown submenu (that consists of the recent files list and the "Delete non-existent" command).
It would be great if your plugin could repeat the said behavior of the vanilla command.
-
Offline
- Posts: 24
- Joined: Sat Jul 05, 2008 11:30 am
- Location: Odesa, Ukraine
Re: FileDialog plugin
Whether the OP modifies their FileDialog plugin or not, a user can replicate the vanilla "Open file dialog" button behavior by themselves as follows:
A ToolBar entry:
A ContextMenu entry:
Notes:
"Manage recent files list..." and "Change this menu..." entries aren't a part of the default submenu and have been added for convenience; feel free to just remove/comment those if you don't like the idea of them being there.
A ToolBar entry:
Code: Select all
# Open file dialog
# Akelpad2 style: with Recent Files submenu
"Open...|Recent Files..." Call("FileDialog::FileOpenDialog") Icon(2) Menu("RECENT")
# Vanilla: with Recent Files submenu
# "" Command(4103) Icon(2)
Code: Select all
"RECENT"
{
# Special menu item: recent files list
RECENTFILES
SEPARATOR
# Silently delete records of non-existent files
"Delete non-existent" Command(5001)
SEPARATOR
# Manage recent files list
"Manage recent files list..." Call("RecentFiles::Manage")
SEPARATOR
# Edit this menu
"Change this menu..." Call("ContextMenu::Main",1,0,"RECENT")
}
"Manage recent files list..." and "Change this menu..." entries aren't a part of the default submenu and have been added for convenience; feel free to just remove/comment those if you don't like the idea of them being there.
-
Offline
- Posts: 25
- Joined: Thu May 05, 2022 5:38 am
Re: FileDialog plugin
Сделал настройки в FileDialog.ini
-
Offline
- Posts: 25
- Joined: Thu May 05, 2022 5:38 am
Re: FileDialog plugin
FileDialog plugin v1.0
+ Выбор кодировки
+ Путь в заголовке диалога
+ Очистка поля ввода имени файла
+ Выбор кодировки
+ Путь в заголовке диалога
+ Очистка поля ввода имени файла
