Last change
on this file since 1316 was
343,
checked in by Maciej Komosinski, 10 years ago
|
Code formatting
|
-
Property svn:eol-style set to
native
|
File size:
929 bytes
|
Rev | Line | |
---|
[286] | 1 | // This file is a part of Framsticks SDK. http://www.framsticks.com/ |
---|
| 2 | // Copyright (C) 1999-2015 Maciej Komosinski and Szymon Ulatowski. |
---|
| 3 | // See LICENSE.txt for details. |
---|
[109] | 4 | |
---|
| 5 | #ifndef _ADVLIST_H_ |
---|
| 6 | #define _ADVLIST_H_ |
---|
| 7 | |
---|
| 8 | #include "list.h" |
---|
| 9 | #include "common/nonstd.h" |
---|
| 10 | #include "callbacks.h" |
---|
| 11 | |
---|
| 12 | //////////////////////////////////////////// |
---|
| 13 | /// no more DuoList -> now we have Callback class (callbacks.h) |
---|
| 14 | |
---|
| 15 | /// list with notification support. |
---|
| 16 | /// you can register callbacks which will be activated |
---|
| 17 | /// as the list contents changes |
---|
| 18 | |
---|
| 19 | /// sorting functions moved to SortView class |
---|
| 20 | |
---|
[343] | 21 | class AdvList : public SList |
---|
[109] | 22 | { |
---|
| 23 | public: |
---|
[343] | 24 | Callback l_add, l_del, l_mod, l_postdel; |
---|
| 25 | void remove(int); |
---|
| 26 | virtual void mod(int = -1); ///< call this when you change one or more elements in list (-1 means all elements) |
---|
| 27 | void clear(); |
---|
| 28 | AdvList() {} |
---|
| 29 | ~AdvList() { clear(); } |
---|
| 30 | int operator+=(void*); |
---|
| 31 | void operator-=(void*); |
---|
| 32 | void operator-=(int i) { remove(i); } |
---|
[109] | 33 | }; |
---|
| 34 | |
---|
| 35 | #endif |
---|
Note: See
TracBrowser
for help on using the repository browser.