14 lines
358 B
C
14 lines
358 B
C
// ideToolbox.h -- DVX BASIC form designer toolbox window
|
|
|
|
#ifndef IDE_TOOLBOX_H
|
|
#define IDE_TOOLBOX_H
|
|
|
|
#include "ideDesigner.h"
|
|
|
|
// Create the toolbox floating window. Returns the WindowT pointer.
|
|
WindowT *tbxCreate(AppContextT *ctx, DsgnStateT *ds);
|
|
|
|
// Destroy the toolbox window.
|
|
void tbxDestroy(AppContextT *ctx, WindowT *win);
|
|
|
|
#endif // IDE_TOOLBOX_H
|