#include "ops.h"
#include "dlgtypes.h"
#include "convert.h"
Go to the source code of this file.
Classes | |
class | DialogOp |
The abstract DialogOp class is used as the base class for all Dialog box classes in Camelot. It provides methods required to create dialogs and to communicate with gadgets. More... | |
class | DialogTabOp |
The abstract DialogTabOp class is used as the base class for all tabbed Dialog box classes in Camelot. It is a simple specialisation of a DialogOp. More... | |
Functions | |
BOOL | UpdateStringGadgetValue (DialogOp *Dialog, UINT32 Gadget, StringBase *NewString) |
Similar to SetStringGadgetValue but compares the contents of the gadget in the dialogue before the update and dosen't bother if the new value is the same as the current one. This reduces dialogue flicker. See also: DialogOp::SetStringGadgetValue. |
|
Similar to SetStringGadgetValue but compares the contents of the gadget in the dialogue before the update and dosen't bother if the new value is the same as the current one. This reduces dialogue flicker. See also: DialogOp::SetStringGadgetValue.
Definition at line 3607 of file dialogop.cpp. 03608 { 03609 return Dialog->UpdateStringGadgetValue(Gadget, NewString); 03610 }
|