finalcut/include/final/fcheckbox.h

99 lines
3.4 KiB
C
Raw Normal View History

/************************************************************************
* fcheckbox.h - Widget FCheckBox *
* *
* This file is part of the Final Cut widget toolkit *
* *
* Copyright 2014-2017 Markus Gans *
* *
* The Final Cut is free software; you can redistribute it and/or modify *
* it under the terms of the GNU 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 General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program. If not, see <http://www.gnu.org/licenses/>. *
************************************************************************/
/* Inheritance diagram
*
*
*
* FObject FTerm
*
*
*
*
*
*
* FVTerm
*
*
*
*
* 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
#include "final/ftogglebutton.h"
2015-05-23 13:35:12 +02:00
//----------------------------------------------------------------------
// class FCheckBox
//----------------------------------------------------------------------
#pragma pack(push)
#pragma pack(1)
class FCheckBox : public FToggleButton
{
2017-09-11 03:06:02 +02:00
public:
// Constructors
explicit FCheckBox (FWidget* = 0);
FCheckBox (const FString&, FWidget* = 0);
2017-09-11 03:06:02 +02:00
// Destructor
virtual ~FCheckBox();
2017-09-11 03:06:02 +02:00
// Accessor
const char* getClassName() const;
2017-09-11 03:06:02 +02:00
private:
// Disable copy constructor
FCheckBox (const FCheckBox&);
2017-09-11 03:06:02 +02:00
// Disable assignment operator (=)
FCheckBox& operator = (const FCheckBox&);
2017-09-11 03:06:02 +02:00
// Methods
void init();
void draw();
void drawCheckButton();
2015-05-23 13:35:12 +02:00
};
#pragma pack(pop)
// FCheckBox inline functions
//----------------------------------------------------------------------
inline const char* FCheckBox::getClassName() const
{ return "FCheckBox"; }
#endif // FCHECKBOX_H