17 lines
451 B
C
17 lines
451 B
C
// ideProperties.h -- DVX BASIC form designer properties window
|
|
|
|
#ifndef IDE_PROPERTIES_H
|
|
#define IDE_PROPERTIES_H
|
|
|
|
#include "ideDesigner.h"
|
|
|
|
// Create the properties floating window.
|
|
WindowT *prpCreate(AppContextT *ctx, DsgnStateT *ds);
|
|
|
|
// Destroy the properties window.
|
|
void prpDestroy(AppContextT *ctx, WindowT *win);
|
|
|
|
// Refresh the properties list for the currently selected control.
|
|
void prpRefresh(DsgnStateT *ds);
|
|
|
|
#endif // IDE_PROPERTIES_H
|