#include <GfxButton.h>
Public Member Functions | |
| GfxButton (const char *title, double x1, double y1, double x2, double y2) | |
| virtual | ~GfxButton () |
| virtual void | ExecuteEvent (int event, int px, int py) |
Public Attributes | |
| SigC::Signal0< void > | clicked |
Contact: bv@bnl.gov
Created on: Tue Dec 31 11:48:26 2002
Definition at line 23 of file GfxButton.h.
|
||||||||||||||||||||||||
|
Definition at line 3 of file GfxButton.cxx. 00004 : TButton(title,"",x1,y1,x2,y2)
00005 {
00006 }
|
|
|
Definition at line 8 of file GfxButton.cxx. 00009 {
00010 }
|
|
||||||||||||||||
|
Definition at line 12 of file GfxButton.cxx. References clicked. 00013 {
00014 this->TButton::ExecuteEvent(event,px,py);
00015
00016 switch (event) {
00017 case kButton1Up:
00018 clicked.emit();
00019 break;
00020 }
00021 }
|
|
|
Definition at line 33 of file GfxButton.h. Referenced by ExecuteEvent(). |
1.3.9.1