From ae804055cdddd4447e023121aed787c49c4dec68 Mon Sep 17 00:00:00 2001 From: Cary Sandvig Date: Thu, 26 Oct 2000 18:13:26 +0000 Subject: [PATCH] new file --- panda/src/gui/guiBaseButton.I | 7 +++++++ panda/src/gui/guiBaseButton.h | 17 +++++++++++++++++ panda/src/gui/guiLabel.I | 7 +++++++ panda/src/gui/guiLabel.h | 17 +++++++++++++++++ panda/src/gui/guiRollover.I | 7 +++++++ panda/src/gui/guiRollover.h | 15 +++++++++++++++ 6 files changed, 70 insertions(+) create mode 100644 panda/src/gui/guiBaseButton.I create mode 100644 panda/src/gui/guiBaseButton.h create mode 100644 panda/src/gui/guiLabel.I create mode 100644 panda/src/gui/guiLabel.h create mode 100644 panda/src/gui/guiRollover.I create mode 100644 panda/src/gui/guiRollover.h diff --git a/panda/src/gui/guiBaseButton.I b/panda/src/gui/guiBaseButton.I new file mode 100644 index 0000000000..025f67d7b2 --- /dev/null +++ b/panda/src/gui/guiBaseButton.I @@ -0,0 +1,7 @@ +// Filename: guiBaseButton.I +// Created by: cary (26Oct00) +// +//////////////////////////////////////////////////////////////////// + +INLINE GuiBaseButton::GuiBaseButton(float, float, float, float) { +} diff --git a/panda/src/gui/guiBaseButton.h b/panda/src/gui/guiBaseButton.h new file mode 100644 index 0000000000..874731d9e5 --- /dev/null +++ b/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__ */ diff --git a/panda/src/gui/guiLabel.I b/panda/src/gui/guiLabel.I new file mode 100644 index 0000000000..4174a22e51 --- /dev/null +++ b/panda/src/gui/guiLabel.I @@ -0,0 +1,7 @@ +// Filename: guiLabel.I +// Created by: cary (26Oct00) +// +//////////////////////////////////////////////////////////////////// + +INLINE GuiLabel::GuiLabel(void) { +} diff --git a/panda/src/gui/guiLabel.h b/panda/src/gui/guiLabel.h new file mode 100644 index 0000000000..31ff8ab3ba --- /dev/null +++ b/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__ */ diff --git a/panda/src/gui/guiRollover.I b/panda/src/gui/guiRollover.I new file mode 100644 index 0000000000..7b2ae60ba6 --- /dev/null +++ b/panda/src/gui/guiRollover.I @@ -0,0 +1,7 @@ +// Filename: guiRollover.I +// Created by: cary (26Oct00) +// +//////////////////////////////////////////////////////////////////// + +INLINE GuiRollover::GuiRollover(float, float, float, float) { +} diff --git a/panda/src/gui/guiRollover.h b/panda/src/gui/guiRollover.h new file mode 100644 index 0000000000..996bdad607 --- /dev/null +++ b/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__ */