| 1759 | |
| 1760 | |
| 1761 | void G4UIQt::UpdateDrawingStyle(G4int style) { |
| 1762 | // Surface style |
| 1763 | switch (style) { |
| 1764 | case 0: |
| 1765 | this->SetIconWireframeSelected(); |
| 1766 | break; |
| 1767 | case 1: |
| 1768 | this->SetIconHLRSelected(); |
| 1769 | break; |
| 1770 | case 2: |
| 1771 | this->SetIconSolidSelected(); |
| 1772 | break; |
| 1773 | case 3: |
| 1774 | this->SetIconHLHSRSelected(); |
| 1775 | break; |
| 1776 | case 4: |
| 1777 | this->SetIconCoudPointSelected(); |
| 1778 | break; |
| 1779 | default: |
| 1780 | return; |
| 1781 | } |
| 1782 | } |
| 1783 | |
| 1784 | void G4UIQt::UpdateProjectionStyle(G4int style) { |
| 1785 | if (style == 0.) { // ortho |
no test coverage detected