//------------------------------------------------------------------------------
// emRasterGroup.h
//
// Copyright (C) 2015,2018 Oliver Hamann.
//
// Homepage: http://eaglemode.sourceforge.net/
//
// This program is free software: you can redistribute it and/or modify it under
// the terms of the GNU General Public License version 3 as published by the
// Free Software Foundation.
//
// 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 version 3 for
// more details.
//
// You should have received a copy of the GNU General Public License version 3
// along with this program. If not, see <http://www.gnu.org/licenses/>.
//------------------------------------------------------------------------------

#ifndef emRasterGroup_h
#define emRasterGroup_h

#ifndef emRasterLayout_h
#include <emCore/emRasterLayout.h>
#endif


//==============================================================================
//=============================== emRasterGroup ================================
//==============================================================================

class emRasterGroup : public emRasterLayout {

public:

        // Class for a group of panels which are laid out in a raster. This is
        // just like emRasterLayout, but it has a group border and it is
        // focusable.

        emRasterGroup(
                ParentArg parent, const emString & name,
                const emString & caption=emString(),
                const emString & description=emString(),
                const emImage & icon=emImage()
        );

        virtual ~emRasterGroup();
};


#endif