2010-06-23 18:18:00 +04:00
|
|
|
#ifndef mozilla_PaintTracker_h
|
|
|
|
#define mozilla_PaintTracker_h
|
|
|
|
|
|
|
|
#include "nscore.h"
|
|
|
|
#include "nsDebug.h"
|
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
|
|
|
|
class NS_STACK_CLASS PaintTracker
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
PaintTracker() {
|
|
|
|
++gPaintTracker;
|
|
|
|
}
|
|
|
|
~PaintTracker() {
|
|
|
|
NS_ASSERTION(gPaintTracker > 0, "Mismatched constructor/destructor");
|
2010-06-23 20:15:58 +04:00
|
|
|
--gPaintTracker;
|
2010-06-23 18:18:00 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
static bool IsPainting() {
|
|
|
|
return !!gPaintTracker;
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
static int gPaintTracker;
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace mozilla
|
|
|
|
|
|
|
|
#endif // mozilla_PaintTracker_h
|