pgraph background focus

This commit is contained in:
David Rose 2002-03-20 17:12:17 +00:00
parent 623e6d8733
commit 46c69517da

View File

@ -18,6 +18,7 @@
#include "pgMouseWatcherBackground.h"
#include "pgItem.h"
#include "qppgItem.h"
TypeHandle PGMouseWatcherBackground::_type_handle;
@ -53,6 +54,7 @@ PGMouseWatcherBackground::
void PGMouseWatcherBackground::
press(const MouseWatcherParameter &param) {
PGItem::background_press(param);
qpPGItem::background_press(param);
}
////////////////////////////////////////////////////////////////////
@ -65,6 +67,7 @@ press(const MouseWatcherParameter &param) {
void PGMouseWatcherBackground::
release(const MouseWatcherParameter &param) {
PGItem::background_release(param);
qpPGItem::background_release(param);
}
////////////////////////////////////////////////////////////////////
@ -76,4 +79,5 @@ release(const MouseWatcherParameter &param) {
void PGMouseWatcherBackground::
keystroke(const MouseWatcherParameter &param) {
PGItem::background_keystroke(param);
qpPGItem::background_keystroke(param);
}