Changeset e0a50df328a2051ce9c3f25dc79f766ca1419d5e
- Timestamp:
- 15/08/06 20:59:40
(2 years ago)
- Author:
- Olivier Teulière <ipkiss@videolan.org>
- git-committer:
- Olivier Teulière <ipkiss@videolan.org> 1155668380 +0000
- git-parent:
[7ea9e5cc89fab3680c91cb136dc4c4ff8606750e]
- git-author:
- Olivier Teulière <ipkiss@videolan.org> 1155668380 +0000
- Message:
- skins2/controls/*: forward the onResize() method to the decorated controls
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| radc858d |
re0a50df |
|
| 87 | 87 | |
|---|
| 88 | 88 | |
|---|
| | 89 | void CtrlMove::onResize() |
|---|
| | 90 | { |
|---|
| | 91 | m_rCtrl.onResize(); |
|---|
| | 92 | } |
|---|
| | 93 | |
|---|
| | 94 | |
|---|
| 89 | 95 | void CtrlMove::handleEvent( EvtGeneric &rEvent ) |
|---|
| 90 | 96 | { |
|---|
| radc858d |
re0a50df |
|
| 59 | 59 | virtual const Position *getPosition() const; |
|---|
| 60 | 60 | |
|---|
| 61 | | /// Get the type of control (custom RTTI) |
|---|
| | 61 | /// Method called when the control is resized |
|---|
| | 62 | virtual void onResize(); |
|---|
| | 63 | |
|---|
| | 64 | /// Get the type of control (custom RTTI) |
|---|
| 62 | 65 | virtual string getType() const { return m_rCtrl.getType(); } |
|---|
| 63 | 66 | |
|---|
| r24648f4 |
re0a50df |
|
| 93 | 93 | { |
|---|
| 94 | 94 | return m_rCtrl.getPosition(); |
|---|
| | 95 | } |
|---|
| | 96 | |
|---|
| | 97 | |
|---|
| | 98 | void CtrlResize::onResize() |
|---|
| | 99 | { |
|---|
| | 100 | m_rCtrl.onResize(); |
|---|
| 95 | 101 | } |
|---|
| 96 | 102 | |
|---|
| r24648f4 |
re0a50df |
|
| 60 | 60 | virtual const Position *getPosition() const; |
|---|
| 61 | 61 | |
|---|
| | 62 | /// Method called when the control is resized |
|---|
| | 63 | virtual void onResize(); |
|---|
| | 64 | |
|---|
| 62 | 65 | /// Get the type of control (custom RTTI) |
|---|
| 63 | 66 | virtual string getType() const { return m_rCtrl.getType(); } |
|---|