16 lines
445 B
C
16 lines
445 B
C
// ideMenuEditor.h -- DVX BASIC menu editor dialog
|
|
//
|
|
// Modal dialog for designing menu bars on forms. Edits the
|
|
// DsgnMenuItemT array on a DsgnFormT. Returns true if the
|
|
// user clicked OK and the menu data was modified.
|
|
|
|
#ifndef IDE_MENUEDITOR_H
|
|
#define IDE_MENUEDITOR_H
|
|
|
|
#include "ideDesigner.h"
|
|
#include "dvxApp.h"
|
|
|
|
// Show the modal Menu Editor dialog.
|
|
bool mnuEditorDialog(AppContextT *ctx, DsgnFormT *form);
|
|
|
|
#endif // IDE_MENUEDITOR_H
|