| 77 | ///@} |
| 78 | |
| 79 | void SetTooltipInfo(const char* s, int buttonSide, int drawSide, const char* txt) |
| 80 | { |
| 81 | if (!s || !txt) |
| 82 | { |
| 83 | return; |
| 84 | } |
| 85 | this->ComponentName = std::string(s); |
| 86 | this->DrawSide = drawSide; |
| 87 | this->ButtonSide = buttonSide; |
| 88 | this->SetText(std::string(txt)); |
| 89 | } |
| 90 | |
| 91 | void SetEnabled(bool enabled); |
| 92 | vtkGetMacro(Enabled, bool); |