[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Pingus-CVS] r3498 - in trunk/pingus: . src/components
From: |
grumbel at BerliOS |
Subject: |
[Pingus-CVS] r3498 - in trunk/pingus: . src/components |
Date: |
Wed, 7 Nov 2007 10:05:32 +0100 |
Author: grumbel
Date: 2007-11-07 10:05:31 +0100 (Wed, 07 Nov 2007)
New Revision: 3498
Added:
trunk/pingus/src/components/check_box.cpp
trunk/pingus/src/components/check_box.hpp
trunk/pingus/src/components/choice_box.cpp
trunk/pingus/src/components/choice_box.hpp
trunk/pingus/src/components/label.hpp
trunk/pingus/src/components/slider_box.cpp
trunk/pingus/src/components/slider_box.hpp
Modified:
trunk/pingus/SConstruct
Log:
- added new Components for OptionMenu (empty classes for now)
Modified: trunk/pingus/SConstruct
===================================================================
--- trunk/pingus/SConstruct 2007-11-07 09:04:39 UTC (rev 3497)
+++ trunk/pingus/SConstruct 2007-11-07 09:05:31 UTC (rev 3498)
@@ -61,9 +61,11 @@
'src/col_map.cpp',
'src/collider.cpp',
'src/colliders/pingu_collider.cpp',
+'src/components/choice_box.cpp',
+'src/components/slider_box.cpp',
+'src/components/check_box.cpp',
'src/components/action_button.cpp',
'src/components/button_panel.cpp',
-'src/components/hurry_up.cpp',
'src/components/pingus_counter.cpp',
'src/components/playfield.cpp',
'src/components/smallmap.cpp',
Added: trunk/pingus/src/components/check_box.cpp
===================================================================
--- trunk/pingus/src/components/check_box.cpp 2007-11-07 09:04:39 UTC (rev
3497)
+++ trunk/pingus/src/components/check_box.cpp 2007-11-07 09:05:31 UTC (rev
3498)
@@ -0,0 +1,24 @@
+// $Id$
+//
+// Pingus - A free Lemmings clone
+// Copyright (C) 2007 Ingo Ruhnke <address@hidden>
+//
+// This program is free software; you can redistribute it and/or
+// modify it under the terms of the GNU General Public License
+// as published by the Free Software Foundation; either version 2
+// of the License, or (at your option) any later version.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with this program; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+
+#include "check_box.hpp"
+
+
+
+/* EOF */
Property changes on: trunk/pingus/src/components/check_box.cpp
___________________________________________________________________
Name: svn:keywords
+ Id
Name: svn:eol-style
+ native
Added: trunk/pingus/src/components/check_box.hpp
===================================================================
--- trunk/pingus/src/components/check_box.hpp 2007-11-07 09:04:39 UTC (rev
3497)
+++ trunk/pingus/src/components/check_box.hpp 2007-11-07 09:05:31 UTC (rev
3498)
@@ -0,0 +1,37 @@
+// $Id$
+//
+// Pingus - A free Lemmings clone
+// Copyright (C) 2007 Ingo Ruhnke <address@hidden>
+//
+// This program is free software; you can redistribute it and/or
+// modify it under the terms of the GNU General Public License
+// as published by the Free Software Foundation; either version 2
+// of the License, or (at your option) any later version.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with this program; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+
+#ifndef HEADER_CHECK_BOX_HPP
+#define HEADER_CHECK_BOX_HPP
+
+/** */
+class CheckBox
+{
+private:
+public:
+ CheckBox();
+
+private:
+ CheckBox (const CheckBox&);
+ CheckBox& operator= (const CheckBox&);
+};
+
+#endif
+
+/* EOF */
Property changes on: trunk/pingus/src/components/check_box.hpp
___________________________________________________________________
Name: svn:keywords
+ Id
Name: svn:eol-style
+ native
Added: trunk/pingus/src/components/choice_box.cpp
===================================================================
--- trunk/pingus/src/components/choice_box.cpp 2007-11-07 09:04:39 UTC (rev
3497)
+++ trunk/pingus/src/components/choice_box.cpp 2007-11-07 09:05:31 UTC (rev
3498)
@@ -0,0 +1,24 @@
+// $Id$
+//
+// Pingus - A free Lemmings clone
+// Copyright (C) 2007 Ingo Ruhnke <address@hidden>
+//
+// This program is free software; you can redistribute it and/or
+// modify it under the terms of the GNU General Public License
+// as published by the Free Software Foundation; either version 2
+// of the License, or (at your option) any later version.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with this program; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+
+#include "choice_box.hpp"
+
+
+
+/* EOF */
Property changes on: trunk/pingus/src/components/choice_box.cpp
___________________________________________________________________
Name: svn:keywords
+ Id
Name: svn:eol-style
+ native
Added: trunk/pingus/src/components/choice_box.hpp
===================================================================
--- trunk/pingus/src/components/choice_box.hpp 2007-11-07 09:04:39 UTC (rev
3497)
+++ trunk/pingus/src/components/choice_box.hpp 2007-11-07 09:05:31 UTC (rev
3498)
@@ -0,0 +1,36 @@
+// $Id$
+//
+// Pingus - A free Lemmings clone
+// Copyright (C) 2007 Ingo Ruhnke <address@hidden>
+//
+// This program is free software; you can redistribute it and/or
+// modify it under the terms of the GNU General Public License
+// as published by the Free Software Foundation; either version 2
+// of the License, or (at your option) any later version.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with this program; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+
+#ifndef HEADER_CHOICE_BOX_HPP
+#define HEADER_CHOICE_BOX_HPP
+
+/** */
+class ChoiceBox
+{
+private:
+public:
+
+private:
+ ChoiceBox (const ChoiceBox&);
+ ChoiceBox& operator= (const ChoiceBox&);
+};
+
+#endif
+
+/* EOF */
Property changes on: trunk/pingus/src/components/choice_box.hpp
___________________________________________________________________
Name: svn:keywords
+ Id
Name: svn:eol-style
+ native
Added: trunk/pingus/src/components/label.hpp
===================================================================
--- trunk/pingus/src/components/label.hpp 2007-11-07 09:04:39 UTC (rev
3497)
+++ trunk/pingus/src/components/label.hpp 2007-11-07 09:05:31 UTC (rev
3498)
@@ -0,0 +1,36 @@
+// $Id$
+//
+// Pingus - A free Lemmings clone
+// Copyright (C) 2007 Ingo Ruhnke <address@hidden>
+//
+// This program is free software; you can redistribute it and/or
+// modify it under the terms of the GNU General Public License
+// as published by the Free Software Foundation; either version 2
+// of the License, or (at your option) any later version.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with this program; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+
+#ifndef HEADER_LABEL_HPP
+#define HEADER_LABEL_HPP
+
+/** */
+class Label
+{
+private:
+public:
+
+private:
+ Label (const Label&);
+ Label& operator= (const Label&);
+};
+
+#endif
+
+/* EOF */
Property changes on: trunk/pingus/src/components/label.hpp
___________________________________________________________________
Name: svn:keywords
+ Id
Name: svn:eol-style
+ native
Added: trunk/pingus/src/components/slider_box.cpp
===================================================================
--- trunk/pingus/src/components/slider_box.cpp 2007-11-07 09:04:39 UTC (rev
3497)
+++ trunk/pingus/src/components/slider_box.cpp 2007-11-07 09:05:31 UTC (rev
3498)
@@ -0,0 +1,24 @@
+// $Id$
+//
+// Pingus - A free Lemmings clone
+// Copyright (C) 2007 Ingo Ruhnke <address@hidden>
+//
+// This program is free software; you can redistribute it and/or
+// modify it under the terms of the GNU General Public License
+// as published by the Free Software Foundation; either version 2
+// of the License, or (at your option) any later version.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with this program; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+
+#include "slider_box.hpp"
+
+
+
+/* EOF */
Property changes on: trunk/pingus/src/components/slider_box.cpp
___________________________________________________________________
Name: svn:keywords
+ Id
Name: svn:eol-style
+ native
Added: trunk/pingus/src/components/slider_box.hpp
===================================================================
--- trunk/pingus/src/components/slider_box.hpp 2007-11-07 09:04:39 UTC (rev
3497)
+++ trunk/pingus/src/components/slider_box.hpp 2007-11-07 09:05:31 UTC (rev
3498)
@@ -0,0 +1,36 @@
+// $Id$
+//
+// Pingus - A free Lemmings clone
+// Copyright (C) 2007 Ingo Ruhnke <address@hidden>
+//
+// This program is free software; you can redistribute it and/or
+// modify it under the terms of the GNU General Public License
+// as published by the Free Software Foundation; either version 2
+// of the License, or (at your option) any later version.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with this program; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+
+#ifndef HEADER_SLIDER_BOX_HPP
+#define HEADER_SLIDER_BOX_HPP
+
+/** */
+class SliderBox
+{
+private:
+public:
+
+private:
+ SliderBox (const SliderBox&);
+ SliderBox& operator= (const SliderBox&);
+};
+
+#endif
+
+/* EOF */
Property changes on: trunk/pingus/src/components/slider_box.hpp
___________________________________________________________________
Name: svn:keywords
+ Id
Name: svn:eol-style
+ native
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Pingus-CVS] r3498 - in trunk/pingus: . src/components,
grumbel at BerliOS <=