2013-02-01 14:53:38 +00:00
|
|
|
/****************************************************************************
|
2018-09-16 17:23:45 -06:00
|
|
|
* apps/graphics/NxWidgets/nxwidgets/src/ctabpanel.hxx
|
2013-02-01 14:53:38 +00:00
|
|
|
*
|
2014-07-22 07:46:02 -06:00
|
|
|
* Copyright (C) 2013-2014 Gregory Nutt. All rights reserved.
|
2013-02-01 14:53:38 +00:00
|
|
|
* Author: Petteri Aimonen <jpa@kapsi.fi>
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
*
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in
|
|
|
|
* the documentation and/or other materials provided with the
|
|
|
|
* distribution.
|
|
|
|
* 3. Neither the name NuttX, NxWidgets, nor the names of its contributors
|
|
|
|
* me be used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
|
|
|
|
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
|
|
|
|
* COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
|
|
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
|
|
|
|
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
|
|
|
|
* OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
|
|
|
|
* AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
|
|
|
|
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
* POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Included Files
|
|
|
|
****************************************************************************/
|
2014-04-13 16:26:44 -06:00
|
|
|
|
2013-02-01 14:53:38 +00:00
|
|
|
#include <nuttx/config.h>
|
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <stdbool.h>
|
|
|
|
|
|
|
|
#include <nuttx/nx/nxglib.h>
|
|
|
|
|
2018-09-16 17:23:45 -06:00
|
|
|
#include "graphics/nxwidgets/ctabpanel.hxx"
|
|
|
|
#include "graphics/nxwidgets/cgraphicsport.hxx"
|
|
|
|
#include "graphics/nxwidgets/cwidgetstyle.hxx"
|
2013-02-01 14:53:38 +00:00
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Pre-Processor Definitions
|
|
|
|
****************************************************************************/
|
2014-04-13 16:26:44 -06:00
|
|
|
|
2013-02-01 14:53:38 +00:00
|
|
|
/****************************************************************************
|
|
|
|
* CTabPanel Method Implementations
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
using namespace NXWidgets;
|
|
|
|
|
|
|
|
CTabPanel::CTabPanel(CWidgetControl *pWidgetControl, uint8_t numPages,
|
|
|
|
nxgl_coord_t x, nxgl_coord_t y,
|
|
|
|
nxgl_coord_t width, nxgl_coord_t height,
|
|
|
|
nxgl_coord_t buttonHeight,
|
|
|
|
FAR const CWidgetStyle *style
|
|
|
|
):
|
|
|
|
CNxWidget(pWidgetControl, x, y, width, height, 0, style)
|
|
|
|
{
|
|
|
|
m_buttonbar = new CLatchButtonArray(pWidgetControl, x, y,
|
|
|
|
numPages, 1,
|
|
|
|
width / numPages,
|
|
|
|
buttonHeight,
|
|
|
|
0);
|
|
|
|
m_buttonbar->addWidgetEventHandler(this);
|
|
|
|
this->addWidget(m_buttonbar);
|
2014-04-13 16:26:44 -06:00
|
|
|
|
2013-02-01 14:53:38 +00:00
|
|
|
for (int i = 0; i < numPages; i++)
|
|
|
|
{
|
|
|
|
CNxWidget *tabpage = new CNxWidget(pWidgetControl, x, y + buttonHeight,
|
|
|
|
width, height - buttonHeight, 0);
|
|
|
|
tabpage->setBackgroundColor(getBackgroundColor());
|
|
|
|
tabpage->setBorderless(true);
|
|
|
|
m_tabpages.push_back(tabpage);
|
|
|
|
this->addWidget(tabpage);
|
|
|
|
}
|
2014-04-13 16:26:44 -06:00
|
|
|
|
2013-02-01 14:53:38 +00:00
|
|
|
// Activate the first page
|
|
|
|
|
|
|
|
showPage(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
void CTabPanel::setPageName(uint8_t index, const CNxString &name)
|
|
|
|
{
|
|
|
|
m_buttonbar->setText(index, 0, name);
|
|
|
|
}
|
|
|
|
|
|
|
|
void CTabPanel::showPage(uint8_t index)
|
|
|
|
{
|
|
|
|
if (!m_buttonbar->isThisButtonStuckDown(index, 0))
|
|
|
|
{
|
|
|
|
m_buttonbar->stickDown(index, 0);
|
|
|
|
}
|
2014-04-13 16:26:44 -06:00
|
|
|
|
2013-02-01 14:53:38 +00:00
|
|
|
for (int i = 0; i < m_tabpages.size(); i++)
|
|
|
|
{
|
2014-07-22 07:40:39 -06:00
|
|
|
if (i != index)
|
2013-02-01 14:53:38 +00:00
|
|
|
{
|
|
|
|
m_tabpages.at(i)->hide();
|
|
|
|
m_tabpages.at(i)->disable();
|
|
|
|
}
|
|
|
|
}
|
2014-07-22 07:40:39 -06:00
|
|
|
|
|
|
|
m_tabpages.at(index)->enable();
|
|
|
|
m_tabpages.at(index)->show();
|
2013-02-01 14:53:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void CTabPanel::handleActionEvent(const CWidgetEventArgs &e)
|
|
|
|
{
|
|
|
|
if (e.getSource() == m_buttonbar)
|
|
|
|
{
|
|
|
|
int x = 0;
|
|
|
|
int y = 0;
|
|
|
|
|
|
|
|
m_buttonbar->isAnyButtonStuckDown(x, y);
|
|
|
|
showPage(x);
|
2014-07-22 07:46:02 -06:00
|
|
|
m_widgetEventHandlers->raiseActionEvent();
|
2013-02-01 14:53:38 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-07-22 07:46:02 -06:00
|
|
|
uint8_t CTabPanel::getCurrentPageIndex() const
|
|
|
|
{
|
|
|
|
int x = 0;
|
|
|
|
int y = 0;
|
|
|
|
m_buttonbar->isAnyButtonStuckDown(x, y);
|
|
|
|
return x;
|
|
|
|
}
|