mirror of
https://github.com/panda3d/panda3d.git
synced 2025-10-01 09:23:03 -04:00
pgraph background focus
This commit is contained in:
parent
623e6d8733
commit
46c69517da
@ -18,6 +18,7 @@
|
|||||||
|
|
||||||
#include "pgMouseWatcherBackground.h"
|
#include "pgMouseWatcherBackground.h"
|
||||||
#include "pgItem.h"
|
#include "pgItem.h"
|
||||||
|
#include "qppgItem.h"
|
||||||
|
|
||||||
TypeHandle PGMouseWatcherBackground::_type_handle;
|
TypeHandle PGMouseWatcherBackground::_type_handle;
|
||||||
|
|
||||||
@ -53,6 +54,7 @@ PGMouseWatcherBackground::
|
|||||||
void PGMouseWatcherBackground::
|
void PGMouseWatcherBackground::
|
||||||
press(const MouseWatcherParameter ¶m) {
|
press(const MouseWatcherParameter ¶m) {
|
||||||
PGItem::background_press(param);
|
PGItem::background_press(param);
|
||||||
|
qpPGItem::background_press(param);
|
||||||
}
|
}
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////
|
||||||
@ -65,6 +67,7 @@ press(const MouseWatcherParameter ¶m) {
|
|||||||
void PGMouseWatcherBackground::
|
void PGMouseWatcherBackground::
|
||||||
release(const MouseWatcherParameter ¶m) {
|
release(const MouseWatcherParameter ¶m) {
|
||||||
PGItem::background_release(param);
|
PGItem::background_release(param);
|
||||||
|
qpPGItem::background_release(param);
|
||||||
}
|
}
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////
|
||||||
@ -76,4 +79,5 @@ release(const MouseWatcherParameter ¶m) {
|
|||||||
void PGMouseWatcherBackground::
|
void PGMouseWatcherBackground::
|
||||||
keystroke(const MouseWatcherParameter ¶m) {
|
keystroke(const MouseWatcherParameter ¶m) {
|
||||||
PGItem::background_keystroke(param);
|
PGItem::background_keystroke(param);
|
||||||
|
qpPGItem::background_keystroke(param);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user