redrawing of editors (for drop down lists)

git-svn-id: svn://svn.code.sf.net/p/magicseteditor/code/trunk@155 0fc631ac-6414-0410-93d0-97cfa31319b6
This commit is contained in:
twanvl
2006-12-23 13:26:53 +00:00
parent 2233295cfd
commit dcdd000aef
8 changed files with 39 additions and 12 deletions
+17 -3
View File
@@ -8,6 +8,7 @@
#include <gui/control/card_viewer.hpp>
#include <data/stylesheet.hpp>
#include <render/value/viewer.hpp>
#include <wx/dcbuffer.h>
// ----------------------------------------------------------------------------- : Events
@@ -29,9 +30,14 @@ wxSize CardViewer::DoGetBestSize() const {
return cs;
}
void CardViewer::onChange() {
Refresh(false);
void CardViewer::redraw(const ValueViewer& v) {
up_to_date = false;
RefreshRect(v.boundingBox(), false);
}
void CardViewer::onChange() {
up_to_date = false;
Refresh(false);
}
void CardViewer::onChangeSize() {
@@ -43,7 +49,6 @@ void CardViewer::onChangeSize() {
}
}
#ifdef _DEBUG
DECLARE_DYNAMIC_ARG(bool, inOnPaint);
IMPLEMENT_DYNAMIC_ARG(bool, inOnPaint, false);
@@ -61,6 +66,7 @@ void CardViewer::onPaint(wxPaintEvent&) {
up_to_date = false;
}
wxBufferedPaintDC dc(this, buffer);
dc.SetClippingRegion(GetUpdateRegion());
if (!up_to_date) {
up_to_date = true;
dc.BeginDrawing();
@@ -69,6 +75,14 @@ void CardViewer::onPaint(wxPaintEvent&) {
}
}
void CardViewer::drawViewer(RotatedDC& dc, ValueViewer& v) {
if (shouldDraw(v)) v.draw(dc);
}
bool CardViewer::shouldDraw(const ValueViewer& v) const {
return GetUpdateRegion().Contains((wxRect)v.boundingBox()) != wxOutRegion;
}
// helper class for overdrawDC()
class CardViewer::OverdrawDC : private wxClientDC, public wxBufferedDC {
public: