2019-07-12 10:37 AM - last edited on 2022-10-04 04:28 PM by Daniel Kassai
2019-07-13 11:58 AM
2019-07-15 09:47 AM
Ralph wrote:
What kind of files are you planning to target? The main project or files exported from it?
Ralph wrote:
And do you want to prevent the user from setting or modifying the name?
2019-07-15 03:36 PM
rCushing wrote:You have possibility to add user interface components integrated into the standard ARCHICAD dialogs to handle your custom element and attribute data.
EDIT: Just to confirm my own research, is it possible to implement my own elements into standard ArchiCAD interface boxes?
2019-07-16 04:54 PM
Tibor wrote:
After the user selected your registered custom file format and clicked to Save, you can invoke any dialog before the saving process, there you can ask the user to select the saving options.
2019-07-16 07:39 PM
rCushing wrote:Take a look at DG::FileDialog, e.g.:
Can you give an example as to how to invoke a dialog during saving? I'm unsure of how to do this, so any help would be gratefully received. Thanks for the suggestion.
DG::FileDialog dialog(DG::FileDialog::Save); dialog.SetTitle(dialogTitle); dialog.Invoke();It has options for setting the starting location for the file navigator, setting the possible saved file types and extracting the location specified by the user.
2019-07-17 08:37 AM
Ralph wrote:Thanks, Ralph!
rCushing wrote:Take a look at DG::FileDialog, e.g.:
Can you give an example as to how to invoke a dialog during saving? I'm unsure of how to do this, so any help would be gratefully received. Thanks for the suggestion.DG::FileDialog dialog(DG::FileDialog::Save); dialog.SetTitle(dialogTitle); dialog.Invoke();It has options for setting the starting location for the file navigator, setting the possible saved file types and extracting the location specified by the user.
2019-07-17 09:25 AM