Mercurial > hg > svgui
comparison widgets/Pane.cpp @ 8:06bba0b79b1c
* Session file save, and the skeleton of session file load.
author | Chris Cannam |
---|---|
date | Fri, 13 Jan 2006 18:05:07 +0000 |
parents | 37b110168acf |
children | 01849cd277e6 |
comparison
equal
deleted
inserted
replaced
7:634324c6296e | 8:06bba0b79b1c |
---|---|
387 setZoomLevel(newZoomLevel); | 387 setZoomLevel(newZoomLevel); |
388 } | 388 } |
389 | 389 |
390 emit paneInteractedWith(); | 390 emit paneInteractedWith(); |
391 } | 391 } |
392 | 392 |
393 QString | |
394 Pane::toXmlString(QString indent, QString extraAttributes) const | |
395 { | |
396 return View::toXmlString | |
397 (indent, | |
398 QString("type=\"pane\" centreLineVisible=\"%1\" %2") | |
399 .arg(m_centreLineVisible).arg(extraAttributes)); | |
400 } | |
401 | |
393 | 402 |
394 #ifdef INCLUDE_MOCFILES | 403 #ifdef INCLUDE_MOCFILES |
395 #include "Pane.moc.cpp" | 404 #include "Pane.moc.cpp" |
396 #endif | 405 #endif |
397 | 406 |