This machine mirrors various open-source projects.
20 Gbit/s uplink.
If there are any issues or you want another project mirrored, please contact
mirror-service -=AT=- netcologne DOT de !
00001 // $Id: gui_child_manager.hxx,v 1.4 2003/01/10 20:44:09 grumbel Exp $ 00002 // 00003 // Construo - A wire-frame construction game 00004 // Copyright (C) 2002 Ingo Ruhnke <grumbel@gmx.de> 00005 // 00006 // This program is free software; you can redistribute it and/or 00007 // modify it under the terms of the GNU General Public License 00008 // as published by the Free Software Foundation; either version 2 00009 // of the License, or (at your option) any later version. 00010 // 00011 // This program is distributed in the hope that it will be useful, 00012 // but WITHOUT ANY WARRANTY; without even the implied warranty of 00013 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00014 // GNU General Public License for more details. 00015 // 00016 // You should have received a copy of the GNU General Public License 00017 // along with this program; if not, write to the Free Software 00018 // Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. 00019 00020 #ifndef HEADER_CONSTRUO_GUI_CHILDMANAGER_HXX 00021 #define HEADER_CONSTRUO_GUI_CHILDMANAGER_HXX 00022 00023 #include <vector> 00024 #include <string> 00025 #include "zoom_graphic_context.hxx" 00026 #include "gui_component.hxx" 00027 00029 class GUIChildManager : public GUIComponent 00030 { 00031 private: 00032 ZoomGraphicContext gc; 00033 typedef std::vector<GUIComponent*> ComponentLst; 00034 ComponentLst components; 00035 00036 GUIComponent* current_component; 00037 GUIComponent* find_component_at (int, int); 00038 public: 00039 GUIChildManager (int x, int y, int width, int height); 00040 ~GUIChildManager (); 00041 00042 void add (GUIComponent*); 00043 void remove (GUIComponent*); 00044 void replace(GUIComponent* old_comp, GUIComponent* new_comp); 00045 00046 void draw (GraphicContext* gc); 00047 virtual void draw_overlay (GraphicContext* gc) {} 00048 00049 void on_primary_button_press (int x, int y); 00050 void on_primary_button_release (int x, int y); 00051 00052 void on_secondary_button_click (int x, int y); 00053 void on_secondary_button_press (int x, int y); 00054 void on_secondary_button_release (int x, int y); 00055 00056 void on_delete_press (int x, int y); 00057 void on_fix_press (int x, int y); 00058 00059 virtual void on_mouse_enter (); 00060 virtual void on_mouse_leave (); 00061 00062 void wheel_up (int x, int y); 00063 void wheel_down (int x, int y); 00064 00065 void scroll_left (); 00066 void scroll_right (); 00067 void scroll_up (); 00068 void scroll_down (); 00069 00070 void on_mouse_move (int x, int y, int of_x, int of_y); 00071 }; 00072 00073 #endif 00074 00075 /* EOF */