Cary Sandvig 25 سال پیش
والد
کامیت
ae804055cd

+ 7 - 0
panda/src/gui/guiBaseButton.I

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

+ 17 - 0
panda/src/gui/guiBaseButton.h

@@ -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 - 0
panda/src/gui/guiLabel.I

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

+ 17 - 0
panda/src/gui/guiLabel.h

@@ -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__ */

+ 7 - 0
panda/src/gui/guiRollover.I

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

+ 15 - 0
panda/src/gui/guiRollover.h

@@ -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__ */