! writes the settings (saved images for tx,rx,templates) */
| 78 | writes the settings (saved images for tx,rx,templates) |
| 79 | */ |
| 80 | void editor::writeSettings() |
| 81 | { |
| 82 | QSettings qSettings; |
| 83 | qSettings.beginGroup ("Editor" ); |
| 84 | qSettings.setValue ( "windowWidth", width() ); |
| 85 | qSettings.setValue ( "windowHeight", height() ); |
| 86 | qSettings.setValue ( "windowX", x() ); |
| 87 | qSettings.setValue ( "windowY", y() ); |
| 88 | qSettings.endGroup(); |
| 89 | } |
| 90 | |
| 91 | |
| 92 | void editor::initActions() |