mirror of
https://github.com/panda3d/panda3d.git
synced 2025-10-01 01:07:51 -04:00
it's a start
This commit is contained in:
parent
0efa072008
commit
f4b97336a8
@ -16,7 +16,8 @@
|
||||
guiRollover.h guiRollover.I guiRollover.cxx \
|
||||
guiButton.h guiButton.I guiButton.cxx \
|
||||
guiFrame.h guiFrame.I guiFrame.cxx \
|
||||
guiSign.h guiSign.I guiSign.cxx
|
||||
guiSign.h guiSign.I guiSign.cxx \
|
||||
guiListBox.h guiListBox.I guiListBox.cxx
|
||||
|
||||
#define INSTALL_HEADERS \
|
||||
guiManager.h guiManager.I \
|
||||
@ -26,7 +27,8 @@
|
||||
guiRollover.h guiRollover.I \
|
||||
guiButton.h guiButton.I \
|
||||
guiFrame.h guiFrame.I \
|
||||
guiSign.h guiSign.I
|
||||
guiSign.h guiSign.I \
|
||||
guiListBox.h guiListBox.I
|
||||
|
||||
#define IGATESCAN \
|
||||
guiManager.h guiManager.I \
|
||||
@ -36,6 +38,7 @@
|
||||
guiRollover.h guiRollover.I \
|
||||
guiButton.h guiButton.I \
|
||||
guiFrame.h guiFrame.I \
|
||||
guiSign.h guiSign.I
|
||||
guiSign.h guiSign.I \
|
||||
guiListBox.h guiListBox.I
|
||||
|
||||
#end lib_target
|
||||
|
@ -21,7 +21,7 @@ GuiItem::GuiItem(const string& name) : Namable(name), _added_hooks(false),
|
||||
GuiItem::~GuiItem(void) {
|
||||
if (gui_cat->is_debug())
|
||||
gui_cat->debug() << "deleting item '" << this->get_name() << "'" << endl;
|
||||
this->unmanage();
|
||||
// this->unmanage();
|
||||
}
|
||||
|
||||
int GuiItem::freeze() {
|
||||
|
@ -11,6 +11,9 @@
|
||||
#include <vector>
|
||||
|
||||
class EXPCL_PANDA GuiListBox : public GuiItem {
|
||||
private:
|
||||
INLINE GuiListBox(void);
|
||||
virtual void recompute_frame(void);
|
||||
PUBLISHED:
|
||||
GuiListBox(const string&);
|
||||
~GuiListBox(void);
|
||||
|
Loading…
x
Reference in New Issue
Block a user