~ubuntu-branches/ubuntu/wily/ginkgocadx/wily-proposed

« back to all changes in this revision

Viewing changes to src/visualizator/visualizator/dialogos/contenedorherramientas.h

  • Committer: Bazaar Package Importer
  • Author(s): Andreas Tille
  • Date: 2011-05-02 08:09:26 UTC
  • Revision ID: james.westby@ubuntu.com-20110502080926-bql5wep49c7hg91t
Tags: upstream-2.4.1.1
ImportĀ upstreamĀ versionĀ 2.4.1.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 *  
 
3
 *  $Id: contenedorherramientas.h 3506 2011-03-15 11:37:59Z tovar $
 
4
 *  Ginkgo CADx Project
 
5
 *
 
6
 *  Copyright 2008-10 MetaEmotion S.L. All rights reserved.
 
7
 *  http://ginkgo-cadx.com
 
8
 *
 
9
 *  This file is licensed under LGPL v3 license.
 
10
 *  See License.txt for details
 
11
 *
 
12
 *
 
13
 */
 
14
#pragma once
 
15
#include <wx/control.h>
 
16
#include <wx/sizer.h>
 
17
namespace GNKVisualizator{
 
18
        namespace GUI{
 
19
                class ContenedorHerramientas : public wxControl { // public wxScrolledWindow {
 
20
                public:
 
21
                        ContenedorHerramientas(wxWindow* pPadre);
 
22
                        virtual ~ContenedorHerramientas();
 
23
                        
 
24
                        void InsertarPanel(wxWindow* child);
 
25
                        void EliminarPanel(wxWindow* child);
 
26
                        void ActualizarVirtualSize();
 
27
                        
 
28
                protected:
 
29
                        
 
30
                private:
 
31
 
 
32
                        void OnSize(wxSizeEvent& event);
 
33
 
 
34
                        wxBoxSizer* m_pSizer;
 
35
                };
 
36
        }
 
37
}