Changeset 6239 for trunk/qt4-gui/src/config/general.h
- Timestamp:
- 06/06/08 07:23:44 (6 months ago)
- Files:
-
- 1 modified
-
trunk/qt4-gui/src/config/general.h (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/qt4-gui/src/config/general.h
r6139 r6239 80 80 bool delayStatusChange() const { return myDelayStatusChange; } 81 81 QFont defaultFont() const { return myDefaultFont; } 82 QFont defaultFixedFont() const { return myDefaultFixedFont; } 82 83 QFont normalFont() const; 83 84 QFont editFont() const { return myEditFont; } 85 QFont fixedFont() const { return myFixedFont; } 84 86 85 87 bool miniMode() const { return myMiniMode; } … … 124 126 void setNormalFont(QString normalFont); 125 127 void setEditFont(QString editFont); 128 void setFixedFont(QString fixedFont); 126 129 127 130 void setMiniMode(bool miniMode); … … 174 177 175 178 /** 179 * Fixed Font configuration has changed (not emitted for normal font) 180 */ 181 void fixedFontChanged(); 182 183 /** 176 184 * Popup key has changed 177 185 */ … … 186 194 bool myDockModeHasChanged; 187 195 bool myFontHasChanged; 196 bool myFixedFontHasChanged; 188 197 bool myBlockUpdates; 189 198 … … 193 202 bool myDelayStatusChange; 194 203 QFont myDefaultFont; 204 QFont myDefaultFixedFont; 195 205 QFont myEditFont; 206 QFont myFixedFont; 196 207 197 208 // Mainwin configuration
