Sets whether the Window created will be resizable. Defaults to \c true.
| 213 | bool isResizable() const { return mResizable; } |
| 214 | //! Sets whether the Window created will be resizable. Defaults to \c true. |
| 215 | void setResizable( bool resizable = true ) { mResizable = resizable; } |
| 216 | //! Sets whether the Window created will be resizable. Defaults to \c true. |
| 217 | Format& resizable( bool res = true ) { mResizable = res; return *this; } |
| 218 | //! Returns whether the Window created will have no border. Defaults to \c false. |
no outgoing calls