GSI Object Oriented Online Offline (Go4)
GO4-6.3.0
|
Graphic Qt Widget based Canvas. More...
#include <QRootCanvas.h>
Public Slots | |
void | cd (Int_t subpadnumber=0) |
virtual void | Browse (TBrowser *b) |
void | Clear (Option_t *option="") |
void | Close (Option_t *option="") |
virtual void | Draw (Option_t *option="") |
virtual TObject * | DrawClone (Option_t *option="") |
virtual TObject * | DrawClonePad () |
virtual void | EditorBar () |
void | EnterLeave (TPad *prevSelPad, TObject *prevSelObj) |
void | FeedbackMode (Bool_t set) |
void | Flush () |
void | UseCurrentStyle () |
void | ForceUpdate () |
const char * | GetDISPLAY () |
TContextMenu * | GetContextMenu () |
Int_t | GetDoubleBuffer () |
Int_t | GetEvent () |
Int_t | GetEventX () |
Int_t | GetEventY () |
Color_t | GetHighLightColor () |
TVirtualPad * | GetPadSave () |
TObject * | GetSelected () |
Option_t * | GetSelectedOpt () |
TVirtualPad * | GetSelectedPad () |
Bool_t | GetShowEventStatus () |
Bool_t | GetAutoExec () |
Size_t | GetXsizeUser () |
Size_t | GetYsizeUser () |
Size_t | GetXsizeReal () |
Size_t | GetYsizeReal () |
Int_t | GetCanvasID () |
Int_t | GetWindowTopX () |
Int_t | GetWindowTopY () |
UInt_t | GetWindowWidth () |
UInt_t | GetWindowHeight () |
UInt_t | GetWw () |
UInt_t | GetWh () |
virtual void | GetCanvasPar (Int_t &wtopx, Int_t &wtopy, UInt_t &ww, UInt_t &wh) |
virtual void | HandleInput (EEventType button, Int_t x, Int_t y) |
Bool_t | HasMenuBar () |
void | Iconify () |
Bool_t | IsBatch () |
Bool_t | IsRetained () |
virtual void | ls (Option_t *option="") |
void | Modified (Bool_t=1) |
void | MoveOpaque (Int_t set=1) |
Bool_t | OpaqueMoving () |
Bool_t | OpaqueResizing () |
virtual void | Paint (Option_t *option="") |
virtual TPad * | Pick (Int_t px, Int_t py, TObjLink *&pickobj) |
virtual TPad * | Pick (Int_t px, Int_t py, TObject *prevSelObj) |
virtual void | Resize (Option_t *option="") |
void | ResizeOpaque (Int_t set=1) |
void | SaveSource (const char *filename="", Option_t *option="") |
virtual void | SetCursor (ECursor cursor) |
virtual void | SetDoubleBuffer (Int_t mode=1) |
void | SetWindowPosition (Int_t x, Int_t y) |
void | SetWindowSize (UInt_t ww, UInt_t wh) |
void | SetCanvasSize (UInt_t ww, UInt_t wh) |
void | SetHighLightColor (Color_t col) |
void | SetSelected (TObject *obj) |
void | SetSelectedPad (TPad *pad) |
void | Show () |
virtual void | Size (Float_t xsizeuser=0, Float_t ysizeuser=0) |
void | SetBatch (Bool_t batch=kTRUE) |
void | SetRetained (Bool_t retained=kTRUE) |
void | SetTitle (const char *title="") |
virtual void | ToggleEventStatus () |
virtual void | ToggleAutoExec () |
virtual void | Update () |
void | buildEditorWindow () |
void | executeMenu (int id) |
void | processRepaintTimer () |
Signals | |
void | SelectedPadChanged (TPad *) |
void | PadClicked (TPad *, int, int) |
void | PadDoubleClicked (TPad *, int, int) |
void | MenuCommandExecuted (TObject *, const char *) |
void | CanvasStatusEvent (const char *) |
void | CanvasDropEvent (QDropEvent *, TPad *) |
void | CanvasLeaveEvent () |
void | CanvasUpdated () |
Public Member Functions | |
QRootCanvas (QWidget *parent=nullptr) | |
virtual | ~QRootCanvas () |
TCanvas * | getCanvas () |
int | getRootWid () |
void | setMaskDoubleClick (bool on=true) |
bool | showEventStatus () const |
void | setShowEventStatus (bool s) |
void | setEditorFrame (QFrame *fr) |
bool | isEditorAllowed () |
bool | isEditorVisible () |
void | toggleEditor () |
void | resizeEditor () |
void | activateEditor (TPad *pad, TObject *obj) |
void | cleanupEditor () |
void | setStatusBar (QStatusBar *bar) |
void | showStatusMessage (const char *msg) |
void | setStatusBarVisible (bool flag) |
bool | isStatusBarVisible () |
Protected Member Functions | |
void | dropEvent (QDropEvent *Event) override |
void | dragEnterEvent (QDragEnterEvent *e) override |
void | mousePressEvent (QMouseEvent *e) override |
void | mouseReleaseEvent (QMouseEvent *e) override |
void | resizeEvent (QResizeEvent *e) override |
void | paintEvent (QPaintEvent *e) override |
void | mouseDoubleClickEvent (QMouseEvent *e) override |
void | mouseMoveEvent (QMouseEvent *e) override |
void | wheelEvent (QWheelEvent *e) override |
void | leaveEvent (QEvent *e) override |
void | closeEvent (QCloseEvent *e) override |
double | scaledPosition (int p) |
QPoint | scaledMousePoint (QMouseEvent *ev) |
QPaintEngine * | paintEngine () const override |
void | methodDialog (TObject *object, TMethod *method) |
QAction * | addMenuAction (QMenu *menu, QSignalMapper *map, const QString &text, int id) |
void | activateRepaint (int act) |
Protected Attributes | |
TCanvas * | fCanvas {nullptr} |
Int_t | fRootWindowId {0} |
WId | fQtWindowId |
QTimer * | fRepaintTimer {nullptr} |
int | fRepaintMode {0} |
QFrame * | fEditorFrame {nullptr} |
TVirtualPadEditor * | fxPeditor {nullptr} |
QRootWindow * | fxRooteditor {nullptr} |
TH1 * | fDummyHisto {nullptr} |
QStatusBar * | fStatusBar {nullptr} |
Private Types | |
enum | { act_Update = 1, act_Resize = 2 } |
Private Attributes | |
bool | fMaskDoubleClick {false} |
double | fMousePosX {0} |
double | fMousePosY {0} |
TObject * | fMenuObj {nullptr} |
TList * | fMenuMethods {nullptr} |
bool | fxShowEventStatus {false} |
double | fQtScalingfactor {0} |
Graphic Qt Widget based Canvas.
This canvas uses Qt eventloop to handle user input
Definition at line 57 of file QRootCanvas.h.
|
private |
Enumerator | |
---|---|
act_Update | |
act_Resize |
Definition at line 61 of file QRootCanvas.h.
QRootCanvas::QRootCanvas | ( | QWidget * | parent = nullptr | ) |
Definition at line 66 of file QRootCanvas.cpp.
References fCanvas, fDummyHisto, fEditorFrame, fMenuMethods, fMenuObj, fMousePosX, fMousePosY, fQtScalingfactor, fQtWindowId, fRepaintMode, fRepaintTimer, fRootWindowId, fStatusBar, fxPeditor, fxRooteditor, and processRepaintTimer().
|
virtual |
Definition at line 120 of file QRootCanvas.cpp.
References fCanvas, fDummyHisto, fMenuMethods, fRepaintTimer, fxPeditor, and getCanvas().
void QRootCanvas::activateEditor | ( | TPad * | pad, |
TObject * | obj | ||
) |
Definition at line 1226 of file QRootCanvas.cpp.
References fxPeditor, getCanvas(), and isEditorVisible().
Referenced by TGo4ViewPanel::ActivateInGedEditor().
|
protected |
Definition at line 420 of file QRootCanvas.cpp.
References fRepaintMode, and fRepaintTimer.
Referenced by paintEvent(), resizeEvent(), and Update().
|
protected |
Definition at line 1037 of file QRootCanvas.cpp.
References QRootApplication::IsRootCanvasMenuEnabled().
Referenced by mousePressEvent().
|
virtualslot |
Definition at line 527 of file QRootCanvas.cpp.
References fCanvas.
|
slot |
Definition at line 1275 of file QRootCanvas.cpp.
References fEditorFrame, and fxRooteditor.
Referenced by TGo4ViewPanel::CompleteInitialization().
|
signal |
Referenced by dropEvent(), QUserPanel::QUserPanel(), and TGo4ViewPanel::TGo4ViewPanel().
|
signal |
Referenced by leaveEvent(), and TGo4ViewPanel::TGo4ViewPanel().
|
signal |
Referenced by mouseMoveEvent().
|
signal |
Referenced by processRepaintTimer(), and TGo4ViewPanel::TGo4ViewPanel().
|
slot |
Definition at line 522 of file QRootCanvas.cpp.
References fCanvas.
void QRootCanvas::cleanupEditor | ( | ) |
Definition at line 1237 of file QRootCanvas.cpp.
References fDummyHisto, fxPeditor, and getCanvas().
Referenced by TGo4ViewPanel::CleanupGedEditor().
|
slot |
Definition at line 532 of file QRootCanvas.cpp.
References fCanvas.
|
slot |
Definition at line 537 of file QRootCanvas.cpp.
References fCanvas.
|
overrideprotected |
Definition at line 873 of file QRootCanvas.cpp.
References fCanvas.
|
overrideprotected |
Definition at line 498 of file QRootCanvas.cpp.
|
virtualslot |
Definition at line 542 of file QRootCanvas.cpp.
References fCanvas.
|
virtualslot |
Definition at line 547 of file QRootCanvas.cpp.
References fCanvas.
|
virtualslot |
Definition at line 552 of file QRootCanvas.cpp.
References fCanvas.
|
overrideprotected |
Definition at line 504 of file QRootCanvas.cpp.
References CanvasDropEvent(), Pick(), and scaledPosition().
|
virtualslot |
Definition at line 557 of file QRootCanvas.cpp.
References fCanvas.
|
slot |
Definition at line 562 of file QRootCanvas.cpp.
References fCanvas.
|
slot |
test: do this in any case!
Definition at line 1063 of file QRootCanvas.cpp.
References fCanvas, fMenuMethods, fMenuObj, fMousePosX, fMousePosY, MenuCommandExecuted(), and methodDialog().
Referenced by mousePressEvent().
|
slot |
Definition at line 567 of file QRootCanvas.cpp.
References fCanvas.
|
slot |
Definition at line 572 of file QRootCanvas.cpp.
References fCanvas.
|
slot |
Definition at line 582 of file QRootCanvas.cpp.
References fCanvas.
|
slot |
Definition at line 647 of file QRootCanvas.cpp.
References fCanvas.
|
inline |
Definition at line 67 of file QRootCanvas.h.
Referenced by activateEditor(), cleanupEditor(), TGo4ViewPanel::GetCanvas(), TGo4ViewPanel::TGo4ViewPanel(), and ~QRootCanvas().
|
slot |
Definition at line 672 of file QRootCanvas.cpp.
References fCanvas.
|
virtualslot |
Definition at line 707 of file QRootCanvas.cpp.
References fCanvas.
|
slot |
Definition at line 592 of file QRootCanvas.cpp.
References fCanvas.
|
slot |
Definition at line 587 of file QRootCanvas.cpp.
References fCanvas.
|
slot |
Definition at line 597 of file QRootCanvas.cpp.
References fCanvas.
|
slot |
Definition at line 602 of file QRootCanvas.cpp.
References fCanvas.
|
slot |
Definition at line 607 of file QRootCanvas.cpp.
References fCanvas.
|
slot |
Definition at line 612 of file QRootCanvas.cpp.
References fCanvas.
|
slot |
Definition at line 617 of file QRootCanvas.cpp.
References fCanvas.
|
slot |
Definition at line 622 of file QRootCanvas.cpp.
References fCanvas.
|
inline |
Definition at line 68 of file QRootCanvas.h.
|
slot |
Definition at line 627 of file QRootCanvas.cpp.
References fCanvas.
|
slot |
Definition at line 632 of file QRootCanvas.cpp.
References fCanvas.
|
slot |
Definition at line 637 of file QRootCanvas.cpp.
References fCanvas.
|
slot |
Definition at line 642 of file QRootCanvas.cpp.
References fCanvas.
|
slot |
Definition at line 702 of file QRootCanvas.cpp.
References fCanvas.
|
slot |
Definition at line 692 of file QRootCanvas.cpp.
References fCanvas.
|
slot |
Definition at line 677 of file QRootCanvas.cpp.
References fCanvas.
|
slot |
Definition at line 682 of file QRootCanvas.cpp.
References fCanvas.
|
slot |
Definition at line 687 of file QRootCanvas.cpp.
References fCanvas.
|
slot |
Definition at line 697 of file QRootCanvas.cpp.
References fCanvas.
|
slot |
Definition at line 662 of file QRootCanvas.cpp.
References fCanvas.
|
slot |
Definition at line 652 of file QRootCanvas.cpp.
References fCanvas.
|
slot |
Definition at line 667 of file QRootCanvas.cpp.
References fCanvas.
|
slot |
Definition at line 657 of file QRootCanvas.cpp.
References fCanvas.
|
virtualslot |
Definition at line 712 of file QRootCanvas.cpp.
References fCanvas, and scaledPosition().
Referenced by TGo4ViewPanel::RedrawPanel().
|
slot |
Definition at line 717 of file QRootCanvas.cpp.
References fCanvas.
|
slot |
Definition at line 722 of file QRootCanvas.cpp.
References fCanvas.
|
slot |
Definition at line 727 of file QRootCanvas.cpp.
References fCanvas.
bool QRootCanvas::isEditorAllowed | ( | ) |
Definition at line 1174 of file QRootCanvas.cpp.
References QRootApplication::IsRootCanvasMenuEnabled().
Referenced by TGo4ViewPanel::StartRootEditor(), and TGo4ViewPanel::TGo4ViewPanel().
bool QRootCanvas::isEditorVisible | ( | ) |
Definition at line 1168 of file QRootCanvas.cpp.
References fEditorFrame.
Referenced by activateEditor(), resizeEditor(), TGo4ViewPanel::StartRootEditor(), TGo4ViewPanel::TGo4ViewPanel(), and toggleEditor().
|
slot |
Definition at line 732 of file QRootCanvas.cpp.
References fCanvas.
bool QRootCanvas::isStatusBarVisible | ( | ) |
Definition at line 1260 of file QRootCanvas.cpp.
References fStatusBar.
Referenced by TGo4ViewPanel::SetPadDefaults(), and TGo4ViewPanel::ShowEventStatus().
|
overrideprotected |
Definition at line 473 of file QRootCanvas.cpp.
References CanvasLeaveEvent(), and fCanvas.
|
virtualslot |
Definition at line 737 of file QRootCanvas.cpp.
References fCanvas.
|
signal |
Referenced by executeMenu(), methodDialog(), and TGo4ViewPanel::TGo4ViewPanel().
|
protected |
Definition at line 883 of file QRootCanvas.cpp.
References QRootDialog::addArg(), fCanvas, QRootDialog::getArg(), and MenuCommandExecuted().
Referenced by executeMenu().
|
slot |
Definition at line 742 of file QRootCanvas.cpp.
References fCanvas.
Referenced by TGo4ViewPanel::CanvasUpdate().
|
overrideprotected |
Definition at line 387 of file QRootCanvas.cpp.
References fCanvas, fMaskDoubleClick, PadDoubleClicked(), and scaledMousePoint().
|
overrideprotected |
Definition at line 167 of file QRootCanvas.cpp.
References CanvasStatusEvent(), fCanvas, fStatusBar, fxShowEventStatus, and scaledMousePoint().
|
overrideprotected |
Definition at line 237 of file QRootCanvas.cpp.
References addMenuAction(), executeMenu(), fCanvas, fMenuMethods, fMenuObj, fMousePosX, fMousePosY, PadClicked(), scaledMousePoint(), and SelectedPadChanged().
|
overrideprotected |
Definition at line 362 of file QRootCanvas.cpp.
References fCanvas, and scaledMousePoint().
|
slot |
Definition at line 747 of file QRootCanvas.cpp.
References fCanvas.
|
slot |
Definition at line 752 of file QRootCanvas.cpp.
References fCanvas.
|
slot |
Definition at line 757 of file QRootCanvas.cpp.
References fCanvas.
|
signal |
signal emitted when mouse clicks on pad
Referenced by mousePressEvent(), and TGo4ViewPanel::TGo4ViewPanel().
|
signal |
signal emitted when user produce left mouse double-click on pad
Referenced by mouseDoubleClickEvent(), and TGo4ViewPanel::TGo4ViewPanel().
|
virtualslot |
Definition at line 762 of file QRootCanvas.cpp.
References fCanvas.
|
inlineoverrideprotected |
Definition at line 205 of file QRootCanvas.h.
|
overrideprotected |
Definition at line 433 of file QRootCanvas.cpp.
References act_Update, activateRepaint(), and fRepaintMode.
|
virtualslot |
|
virtualslot |
Definition at line 772 of file QRootCanvas.cpp.
References fCanvas.
|
slot |
Definition at line 446 of file QRootCanvas.cpp.
References act_Resize, CanvasUpdated(), fCanvas, fQtWindowId, fRepaintMode, and fRootWindowId.
Referenced by QRootCanvas().
|
virtualslot |
Definition at line 777 of file QRootCanvas.cpp.
References fCanvas.
Referenced by TGo4ViewPanel::CompleteInitialization().
void QRootCanvas::resizeEditor | ( | ) |
Definition at line 1216 of file QRootCanvas.cpp.
References fxPeditor, fxRooteditor, isEditorVisible(), QRootWindow::ScaledHeight(), and QRootWindow::ScaledWidth().
Referenced by TGo4ViewPanel::ResizeGedEditor().
|
overrideprotected |
Definition at line 428 of file QRootCanvas.cpp.
References act_Resize, and activateRepaint().
|
slot |
Definition at line 782 of file QRootCanvas.cpp.
References fCanvas.
|
slot |
Definition at line 787 of file QRootCanvas.cpp.
References fCanvas.
|
protected |
Definition at line 155 of file QRootCanvas.cpp.
References scaledPosition().
Referenced by mouseDoubleClickEvent(), mouseMoveEvent(), mousePressEvent(), and mouseReleaseEvent().
|
inlineprotected |
returns scaled point coordinate, for high dpi case
Definition at line 201 of file QRootCanvas.h.
Referenced by dropEvent(), HandleInput(), scaledMousePoint(), and wheelEvent().
|
signal |
signal which will be emitted when root selected pad is changed via clicking the mid-mouse button (M. al-Turany)
Referenced by mousePressEvent(), and TGo4ViewPanel::TGo4ViewPanel().
|
slot |
Definition at line 842 of file QRootCanvas.cpp.
References fCanvas.
|
slot |
Definition at line 812 of file QRootCanvas.cpp.
References fCanvas.
|
virtualslot |
Definition at line 792 of file QRootCanvas.cpp.
References fCanvas.
|
virtualslot |
Definition at line 797 of file QRootCanvas.cpp.
References fCanvas.
|
inline |
Definition at line 74 of file QRootCanvas.h.
Referenced by TGo4ViewPanel::TGo4ViewPanel().
|
slot |
Definition at line 817 of file QRootCanvas.cpp.
References fCanvas.
|
inline |
Definition at line 69 of file QRootCanvas.h.
Referenced by TGo4ViewPanel::RefreshButtons().
|
slot |
Definition at line 847 of file QRootCanvas.cpp.
References fCanvas.
|
slot |
Definition at line 822 of file QRootCanvas.cpp.
References fCanvas.
|
slot |
Definition at line 827 of file QRootCanvas.cpp.
References fCanvas.
void QRootCanvas::setShowEventStatus | ( | bool | s | ) |
Definition at line 486 of file QRootCanvas.cpp.
References fxShowEventStatus.
Referenced by setStatusBarVisible().
|
inline |
Definition at line 82 of file QRootCanvas.h.
References go4init::msg.
Referenced by TGo4ViewPanel::TGo4ViewPanel().
void QRootCanvas::setStatusBarVisible | ( | bool | flag | ) |
Definition at line 1265 of file QRootCanvas.cpp.
References fStatusBar, and setShowEventStatus().
Referenced by TGo4ViewPanel::ShowEventStatus(), and TGo4ViewPanel::TGo4ViewPanel().
|
slot |
Definition at line 852 of file QRootCanvas.cpp.
References fCanvas.
|
slot |
Definition at line 802 of file QRootCanvas.cpp.
References fCanvas.
|
slot |
Definition at line 807 of file QRootCanvas.cpp.
References fCanvas.
|
slot |
Definition at line 832 of file QRootCanvas.cpp.
References fCanvas.
bool QRootCanvas::showEventStatus | ( | ) | const |
Definition at line 491 of file QRootCanvas.cpp.
References fxShowEventStatus.
void QRootCanvas::showStatusMessage | ( | const char * | msg | ) |
Definition at line 1255 of file QRootCanvas.cpp.
References fStatusBar.
Referenced by TGo4ViewPanel::DisplayPadStatus().
|
virtualslot |
Definition at line 837 of file QRootCanvas.cpp.
References fCanvas.
|
virtualslot |
Definition at line 862 of file QRootCanvas.cpp.
References fCanvas.
void QRootCanvas::toggleEditor | ( | ) |
Definition at line 1183 of file QRootCanvas.cpp.
References fEditorFrame, fxPeditor, fxRooteditor, isEditorVisible(), QRootWindow::SetEditable(), and QRootWindow::SetResizeOnPaint().
Referenced by TGo4ViewPanel::StartRootEditor().
|
virtualslot |
Definition at line 857 of file QRootCanvas.cpp.
References fCanvas.
|
virtualslot |
Definition at line 867 of file QRootCanvas.cpp.
References act_Update, and activateRepaint().
Referenced by TGo4ViewPanel::CanvasUpdate().
|
slot |
Definition at line 577 of file QRootCanvas.cpp.
References fCanvas.
|
overrideprotected |
Definition at line 215 of file QRootCanvas.cpp.
References fCanvas, and scaledPosition().
|
protected |
Definition at line 212 of file QRootCanvas.h.
Referenced by Browse(), cd(), Clear(), Close(), closeEvent(), Draw(), DrawClone(), DrawClonePad(), EditorBar(), EnterLeave(), executeMenu(), FeedbackMode(), Flush(), ForceUpdate(), GetAutoExec(), GetCanvasID(), GetCanvasPar(), GetContextMenu(), GetDISPLAY(), GetDoubleBuffer(), GetEvent(), GetEventX(), GetEventY(), GetHighLightColor(), GetPadSave(), GetSelected(), GetSelectedOpt(), GetSelectedPad(), GetShowEventStatus(), GetWh(), GetWindowHeight(), GetWindowTopX(), GetWindowTopY(), GetWindowWidth(), GetWw(), GetXsizeReal(), GetXsizeUser(), GetYsizeReal(), GetYsizeUser(), HandleInput(), HasMenuBar(), Iconify(), IsBatch(), IsRetained(), leaveEvent(), ls(), methodDialog(), Modified(), mouseDoubleClickEvent(), mouseMoveEvent(), mousePressEvent(), mouseReleaseEvent(), MoveOpaque(), OpaqueMoving(), OpaqueResizing(), Paint(), Pick(), processRepaintTimer(), QRootCanvas(), Resize(), ResizeOpaque(), SaveSource(), SetBatch(), SetCanvasSize(), SetCursor(), SetDoubleBuffer(), SetHighLightColor(), SetRetained(), SetSelected(), SetSelectedPad(), SetTitle(), SetWindowPosition(), SetWindowSize(), Show(), Size(), ToggleAutoExec(), ToggleEventStatus(), UseCurrentStyle(), wheelEvent(), and ~QRootCanvas().
|
protected |
Definition at line 221 of file QRootCanvas.h.
Referenced by cleanupEditor(), QRootCanvas(), and ~QRootCanvas().
|
protected |
Definition at line 218 of file QRootCanvas.h.
Referenced by buildEditorWindow(), isEditorVisible(), QRootCanvas(), and toggleEditor().
|
private |
Definition at line 226 of file QRootCanvas.h.
Referenced by mouseDoubleClickEvent().
|
private |
Definition at line 231 of file QRootCanvas.h.
Referenced by executeMenu(), mousePressEvent(), QRootCanvas(), and ~QRootCanvas().
|
private |
Definition at line 230 of file QRootCanvas.h.
Referenced by executeMenu(), mousePressEvent(), and QRootCanvas().
|
private |
Definition at line 227 of file QRootCanvas.h.
Referenced by executeMenu(), mousePressEvent(), and QRootCanvas().
|
private |
Definition at line 228 of file QRootCanvas.h.
Referenced by executeMenu(), mousePressEvent(), and QRootCanvas().
|
private |
Definition at line 234 of file QRootCanvas.h.
Referenced by QRootCanvas().
|
protected |
Definition at line 214 of file QRootCanvas.h.
Referenced by processRepaintTimer(), and QRootCanvas().
|
protected |
Definition at line 216 of file QRootCanvas.h.
Referenced by activateRepaint(), paintEvent(), processRepaintTimer(), and QRootCanvas().
|
protected |
Definition at line 215 of file QRootCanvas.h.
Referenced by activateRepaint(), QRootCanvas(), and ~QRootCanvas().
|
protected |
Definition at line 213 of file QRootCanvas.h.
Referenced by processRepaintTimer(), and QRootCanvas().
|
protected |
Definition at line 223 of file QRootCanvas.h.
Referenced by isStatusBarVisible(), mouseMoveEvent(), QRootCanvas(), setStatusBarVisible(), and showStatusMessage().
|
protected |
Definition at line 219 of file QRootCanvas.h.
Referenced by activateEditor(), cleanupEditor(), QRootCanvas(), resizeEditor(), toggleEditor(), and ~QRootCanvas().
|
protected |
Definition at line 220 of file QRootCanvas.h.
Referenced by buildEditorWindow(), QRootCanvas(), resizeEditor(), and toggleEditor().
|
private |
Definition at line 232 of file QRootCanvas.h.
Referenced by mouseMoveEvent(), setShowEventStatus(), and showEventStatus().