2017-11-04 07:03:53 +01:00
|
|
|
/***********************************************************************
|
|
|
|
* fcheckmenuitem.cpp - Widget FCheckMenuItem *
|
|
|
|
* *
|
|
|
|
* This file is part of the Final Cut widget toolkit *
|
|
|
|
* *
|
|
|
|
* Copyright 2015-2017 Markus Gans *
|
|
|
|
* *
|
|
|
|
* The Final Cut is free software; you can redistribute it and/or *
|
|
|
|
* modify it under the terms of the GNU Lesser General Public License *
|
|
|
|
* as published by the Free Software Foundation; either version 3 of *
|
|
|
|
* the License, or (at your option) any later version. *
|
|
|
|
* *
|
|
|
|
* The Final Cut 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 Lesser General Public License for more details. *
|
|
|
|
* *
|
|
|
|
* You should have received a copy of the GNU Lesser General Public *
|
|
|
|
* License along with this program. If not, see *
|
|
|
|
* <http://www.gnu.org/licenses/>. *
|
|
|
|
***********************************************************************/
|
2015-11-15 19:46:33 +01:00
|
|
|
|
2017-09-17 21:32:46 +02:00
|
|
|
#include "final/fcheckmenuitem.h"
|
|
|
|
#include "final/fmenu.h"
|
2015-11-15 19:46:33 +01:00
|
|
|
|
2017-10-02 07:32:33 +02:00
|
|
|
|
2015-11-15 19:46:33 +01:00
|
|
|
//----------------------------------------------------------------------
|
|
|
|
// class FCheckMenuItem
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
|
|
|
|
// constructor and destructor
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
FCheckMenuItem::FCheckMenuItem (FWidget* parent)
|
|
|
|
: FMenuItem(parent)
|
|
|
|
{
|
|
|
|
init (parent);
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
2017-03-17 22:59:06 +01:00
|
|
|
FCheckMenuItem::FCheckMenuItem (const FString& txt, FWidget* parent)
|
2015-11-15 19:46:33 +01:00
|
|
|
: FMenuItem(txt, parent)
|
|
|
|
{
|
|
|
|
init (parent);
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
FCheckMenuItem::~FCheckMenuItem() // destructor
|
|
|
|
{ }
|
|
|
|
|
|
|
|
|
|
|
|
// private methods of FCheckMenuItem
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
void FCheckMenuItem::init (FWidget* parent)
|
|
|
|
{
|
|
|
|
checkable = true;
|
|
|
|
|
2016-10-17 08:44:38 +02:00
|
|
|
if ( ! parent )
|
|
|
|
return;
|
|
|
|
|
2017-09-11 03:06:02 +02:00
|
|
|
if ( isMenu(parent) ) // Parent is menu
|
2015-11-15 19:46:33 +01:00
|
|
|
{
|
2017-09-11 03:06:02 +02:00
|
|
|
FMenu* menu_ptr = static_cast<FMenu*>(parent);
|
2017-09-19 06:18:03 +02:00
|
|
|
menu_ptr->has_checkable_items = true;
|
2015-11-15 19:46:33 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
void FCheckMenuItem::processToggle()
|
|
|
|
{
|
|
|
|
emitCallback("toggled");
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
void FCheckMenuItem::processClicked()
|
|
|
|
{
|
|
|
|
checked = not checked;
|
|
|
|
processToggle();
|
|
|
|
emitCallback("clicked");
|
|
|
|
}
|