This commit is contained in:
Cary Sandvig 2000-10-26 18:13:26 +00:00
parent b0c66c8dd7
commit ae804055cd
6 changed files with 70 additions and 0 deletions

View File

@ -0,0 +1,7 @@
// Filename: guiBaseButton.I
// Created by: cary (26Oct00)
//
////////////////////////////////////////////////////////////////////
INLINE GuiBaseButton::GuiBaseButton(float, float, float, float) {
}

View File

@ -0,0 +1,17 @@
// Filename: guiBaseButton.h
// Created by: cary (26Oct00)
//
////////////////////////////////////////////////////////////////////
#ifndef __GUIBASEBUTTON_H__
#define __GUIBASEBUTTON_H__
class GuiBaseButton : public GuiRegion, public GuiLabel {
private:
public:
INLINE GuiBaseButton(float, float, float, float);
};
#include "guiBaseButton.h"
#endif /* __GUIBASEBUTTON_H__ */

7
panda/src/gui/guiLabel.I Normal file
View File

@ -0,0 +1,7 @@
// Filename: guiLabel.I
// Created by: cary (26Oct00)
//
////////////////////////////////////////////////////////////////////
INLINE GuiLabel::GuiLabel(void) {
}

17
panda/src/gui/guiLabel.h Normal file
View File

@ -0,0 +1,17 @@
// Filename: guiLabel.h
// Created by: cary (26Oct00)
//
////////////////////////////////////////////////////////////////////
#ifndef __GUILABEL_H__
#define __GUILABEL_H__
// label-ish behavior for GUI objects (labels, buttons, rollovers)
class GuiLabel {
private:
public:
INLINE GuiLabel(void);
};
#endif /* __GUILABEL_H__ */

View File

@ -0,0 +1,7 @@
// Filename: guiRollover.I
// Created by: cary (26Oct00)
//
////////////////////////////////////////////////////////////////////
INLINE GuiRollover::GuiRollover(float, float, float, float) {
}

View File

@ -0,0 +1,15 @@
// Filename: guiRollover.h
// Created by: cary (26Oct00)
//
////////////////////////////////////////////////////////////////////
#ifndef __GUIROLLOVER_H__
#define __GUIROLLOVER_H__
class GuiRollover : public GuiBaseButton {
private:
public:
INLINE GuiRollover(float, float, float, float);
};
#endif /* __GUIROLLOVER_H__ */