File indexing completed on 2024-09-07 04:36:20
0001 #ifndef Fireworks_FWInterface_FWPSetCellEditor_h
0002 #define Fireworks_FWInterface_FWPSetCellEditor_h
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015
0016
0017
0018
0019
0020
0021 #include "TGTextEntry.h"
0022 #include "Fireworks/FWInterface/src/FWPSetTableManager.h"
0023
0024 class FWPSetCellEditor : public TGTextEntry {
0025 public:
0026 FWPSetCellEditor(const TGWindow* w, const char* txt) : TGTextEntry(w, txt) {}
0027 ~FWPSetCellEditor() override {}
0028 bool HandleKey(Event_t* event) override;
0029 bool apply(FWPSetTableManager::PSetData& data, FWPSetTableManager::PSetData& parent);
0030 };
0031
0032 #endif