Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:11:46

0001 #ifndef Fireworks_FWInterface_FWPSetCellEditor_h
0002 #define Fireworks_FWInterface_FWPSetCellEditor_h
0003 // -*- C++ -*-
0004 //
0005 // Package:     FWInterface
0006 // Class  :     FWPSetCellEditor
0007 //
0008 /**\class FWPSetCellEditor FWPSetCellEditor.h Fireworks/FWInterface/interface/FWPSetCellEditor.h
0009 
0010  Description: [one line class summary]
0011 
0012  Usage:
0013     <usage>
0014 
0015 */
0016 //
0017 // Original Author:
0018 //         Created:  Mon Feb 28 20:45:02 CET 2011
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