finalcut/src/include/final/fcheckbox.h

105 lines
3.7 KiB
C
Raw Normal View History

2017-11-04 07:03:53 +01:00
/***********************************************************************
* fcheckbox.h - Widget FCheckBox *
* *
* This file is part of the Final Cut widget toolkit *
* *
2019-08-06 23:45:28 +02:00
* Copyright 2014-2019 Markus Gans *
2017-11-04 07:03:53 +01:00
* *
* 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/>. *
***********************************************************************/
/* Inheritance diagram
*
*
*
* FTerm
*
*
*
*
* FVTerm FObject
*
*
*
*
*
*
* FWidget
*
*
*
*
* FToggleButton
*
*
*
*
* FCheckBox
*
*/
2015-05-23 13:35:12 +02:00
#ifndef FCHECKBOX_H
#define FCHECKBOX_H
2015-05-23 13:35:12 +02:00
#if !defined (USE_FINAL_H) && !defined (COMPILE_FINAL_CUT)
#error "Only <final/final.h> can be included directly."
#endif
#include "final/ftogglebutton.h"
2015-05-23 13:35:12 +02:00
namespace finalcut
{
2015-05-23 13:35:12 +02:00
//----------------------------------------------------------------------
// class FCheckBox
//----------------------------------------------------------------------
class FCheckBox : public FToggleButton
{
2017-09-11 03:06:02 +02:00
public:
// Constructors
explicit FCheckBox (FWidget* = nullptr);
explicit FCheckBox (const FString&, FWidget* = nullptr);
// Disable copy constructor
FCheckBox (const FCheckBox&) = delete;
2017-09-11 03:06:02 +02:00
// Destructor
virtual ~FCheckBox();
// Disable assignment operator (=)
FCheckBox& operator = (const FCheckBox&) = delete;
2017-09-11 03:06:02 +02:00
// Accessor
2019-10-05 23:20:07 +02:00
const FString getClassName() const override;
2017-09-11 03:06:02 +02:00
private:
// Methods
2019-10-05 23:20:07 +02:00
void init();
void draw() override;
void drawCheckButton();
void drawChecked();
void drawUnchecked();
2015-05-23 13:35:12 +02:00
};
// FCheckBox inline functions
//----------------------------------------------------------------------
2019-10-05 23:20:07 +02:00
inline const FString FCheckBox::getClassName() const
2015-05-23 13:35:12 +02:00
{ return "FCheckBox"; }
} // namespace finalcut
#endif // FCHECKBOX_H