| OLD | NEW |
| 1 | 1 |
| 2 /* | 2 /* |
| 3 * Copyright 2012 Google Inc. | 3 * Copyright 2012 Google Inc. |
| 4 * | 4 * |
| 5 * Use of this source code is governed by a BSD-style license that can be | 5 * Use of this source code is governed by a BSD-style license that can be |
| 6 * found in the LICENSE file. | 6 * found in the LICENSE file. |
| 7 */ | 7 */ |
| 8 | 8 |
| 9 | 9 |
| 10 #ifndef SKSETTINGSWIDGET_H_ | 10 #ifndef SKSETTINGSWIDGET_H_ |
| (...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 74 } | 74 } |
| 75 | 75 |
| 76 bool isMegaVizEnabled() { | 76 bool isMegaVizEnabled() { |
| 77 return fMegaVizCheckBox.isChecked(); | 77 return fMegaVizCheckBox.isChecked(); |
| 78 } | 78 } |
| 79 | 79 |
| 80 bool isPathOpsEnabled() { | 80 bool isPathOpsEnabled() { |
| 81 return fPathOpsCheckBox.isChecked(); | 81 return fPathOpsCheckBox.isChecked(); |
| 82 } | 82 } |
| 83 | 83 |
| 84 private slots: | 84 private Q_SLOTS: |
| 85 | 85 |
| 86 signals: | 86 Q_SIGNALS: |
| 87 void visualizationsChanged(); | 87 void visualizationsChanged(); |
| 88 void texFilterSettingsChanged(); | 88 void texFilterSettingsChanged(); |
| 89 #if SK_SUPPORT_GPU | 89 #if SK_SUPPORT_GPU |
| 90 void glSettingsChanged(); | 90 void glSettingsChanged(); |
| 91 #endif | 91 #endif |
| 92 void rasterSettingsChanged(); | 92 void rasterSettingsChanged(); |
| 93 | 93 |
| 94 private: | 94 private: |
| 95 QFormLayout fVerticalLayout; | 95 QFormLayout fVerticalLayout; |
| 96 | 96 |
| (...skipping 10 matching lines...) Expand all Loading... |
| 107 #if SK_SUPPORT_GPU | 107 #if SK_SUPPORT_GPU |
| 108 QGroupBox fGLGroup; | 108 QGroupBox fGLGroup; |
| 109 QFormLayout fGLLayout; | 109 QFormLayout fGLLayout; |
| 110 QComboBox fGLMSAACombo; | 110 QComboBox fGLMSAACombo; |
| 111 #endif | 111 #endif |
| 112 | 112 |
| 113 QComboBox fFilterCombo; | 113 QComboBox fFilterCombo; |
| 114 }; | 114 }; |
| 115 | 115 |
| 116 #endif /* SKSETTINGSWIDGET_H_ */ | 116 #endif /* SKSETTINGSWIDGET_H_ */ |
| OLD | NEW |