finalcut/src/include/final/flabel.h

242 lines
8.6 KiB
C
Raw Normal View History

2017-11-04 07:03:53 +01:00
/***********************************************************************
* flabel.cpp - Widget FLabel *
* *
* This file is part of the Final Cut widget toolkit *
* *
2019-01-16 16:00:15 +01: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
*
*
*
*
* FLabel
*
*/
2015-05-23 13:35:12 +02:00
#ifndef FLABEL_H
#define FLABEL_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
2017-09-11 03:06:02 +02:00
#include <vector>
#include "final/fwidget.h"
#include "final/fwidgetcolors.h"
2015-05-23 13:35:12 +02:00
namespace finalcut
{
2015-05-23 13:35:12 +02:00
//----------------------------------------------------------------------
// class FLabel
//----------------------------------------------------------------------
class FLabel : public FWidget
{
2017-09-11 03:06:02 +02:00
public:
// Using-declaration
using FWidget::setEnable;
// Constructor
explicit FLabel (FWidget* = nullptr);
explicit FLabel (const FString&, FWidget* = nullptr);
// Disable copy constructor
FLabel (const FLabel&) = delete;
2017-09-11 03:06:02 +02:00
// Destructor
virtual ~FLabel();
// Disable assignment operator (=)
FLabel& operator = (const FLabel&) = delete;
// Overloaded operators
FLabel& operator = (const FString&);
FLabel& operator << (const FString&);
FLabel& operator << (fc::SpecialCharacter);
FLabel& operator << (const wchar_t);
FLabel& operator << (const uInt);
FLabel& operator << (const int);
FLabel& operator << (const uInt64);
FLabel& operator << (const sInt64);
FLabel& operator << (const float);
FLabel& operator << (const double);
FLabel& operator << (const lDouble);
const FLabel& operator >> (FString&);
2017-09-11 03:06:02 +02:00
// Accessors
2019-10-05 23:20:07 +02:00
const FString getClassName() const override;
2018-12-31 06:18:39 +01:00
FWidget* getAccelWidget();
fc::text_alignment getAlignment();
FString& getText();
2017-09-11 03:06:02 +02:00
// Mutators
2018-12-31 06:18:39 +01:00
void setAccelWidget (FWidget* = nullptr);
void setAlignment (fc::text_alignment);
bool setEmphasis (bool);
2018-12-31 06:18:39 +01:00
bool setEmphasis();
bool unsetEmphasis();
bool setReverseMode (bool);
2018-12-31 06:18:39 +01:00
bool setReverseMode();
bool unsetReverseMode();
2019-08-06 23:45:28 +02:00
bool setEnable (bool) override;
2018-12-31 06:18:39 +01:00
void setNumber (uLong);
void setNumber (long);
void setNumber (float, int = FLT_DIG);
void setNumber (double, int = DBL_DIG);
void setNumber (lDouble, int = LDBL_DIG);
void setText (const FString&);
2017-09-11 03:06:02 +02:00
// Inquiries
2018-12-31 06:18:39 +01:00
bool hasEmphasis();
bool hasReverseMode();
2017-09-11 03:06:02 +02:00
// Methods
2019-08-06 23:45:28 +02:00
void hide() override;
2018-12-31 06:18:39 +01:00
void clear();
2017-09-11 03:06:02 +02:00
// Event handlers
2019-08-06 23:45:28 +02:00
void onMouseDown (FMouseEvent*) override;
void onAccel (FAccelEvent*) override;
2017-09-11 03:06:02 +02:00
// Callback method
2018-12-31 06:18:39 +01:00
void cb_accel_widget_destroyed (FWidget*, FDataPtr);
2017-09-11 03:06:02 +02:00
private:
// Constants
2018-12-26 23:41:49 +01:00
static constexpr std::size_t NOT_SET = static_cast<std::size_t>(-1);
2017-09-11 03:06:02 +02:00
// Methods
2018-12-31 06:18:39 +01:00
void init();
void setHotkeyAccelerator();
std::size_t getAlignOffset (std::size_t);
2019-08-06 23:45:28 +02:00
void draw() override;
2018-12-31 06:18:39 +01:00
void drawMultiLine();
void drawSingleLine();
void printLine (FString&&);
2017-09-11 03:06:02 +02:00
// Data members
2019-09-08 02:04:24 +02:00
FStringList multiline_text{};
FString text{};
FWidget* accel_widget{nullptr};
fc::text_alignment alignment{fc::alignLeft};
std::size_t align_offset{0};
std::size_t hotkeypos{NOT_SET};
std::size_t column_width{0};
2019-09-08 02:04:24 +02:00
FColor emphasis_color{getFWidgetColors().label_emphasis_fg};
FColor ellipsis_color{getFWidgetColors().label_ellipsis_fg};
bool multiline{false};
bool emphasis{false};
bool reverse_mode{false};
2015-05-23 13:35:12 +02:00
};
// FLabel inline functions
//----------------------------------------------------------------------
2019-10-05 23:20:07 +02:00
inline const FString FLabel::getClassName() const
2015-05-23 13:35:12 +02:00
{ return "FLabel"; }
//----------------------------------------------------------------------
2018-10-29 00:45:45 +01:00
inline FWidget* FLabel::getAccelWidget ()
2015-05-23 13:35:12 +02:00
{ return accel_widget; }
//----------------------------------------------------------------------
inline fc::text_alignment FLabel::getAlignment()
2015-05-23 13:35:12 +02:00
{ return alignment; }
//----------------------------------------------------------------------
inline FString& FLabel::getText()
{ return text; }
//----------------------------------------------------------------------
inline bool FLabel::setEmphasis (bool enable)
{ return (emphasis = enable); }
2015-05-23 13:35:12 +02:00
//----------------------------------------------------------------------
inline bool FLabel::setEmphasis()
{ return setEmphasis(true); }
//----------------------------------------------------------------------
inline bool FLabel::unsetEmphasis()
{ return setEmphasis(false); }
//----------------------------------------------------------------------
inline bool FLabel::setReverseMode (bool enable)
{ return (reverse_mode = enable); }
2015-05-23 13:35:12 +02:00
//----------------------------------------------------------------------
inline bool FLabel::setReverseMode()
{ return setReverseMode(true); }
//----------------------------------------------------------------------
inline bool FLabel::unsetReverseMode()
{ return setReverseMode(false); }
//----------------------------------------------------------------------
inline void FLabel::setNumber (uLong num)
{ setText(FString().setNumber(num)); }
//----------------------------------------------------------------------
inline void FLabel::setNumber (long num)
{ setText(FString().setNumber(num)); }
//----------------------------------------------------------------------
inline void FLabel::setNumber (float num, int precision)
{ setText(FString().setNumber(num, precision)); }
//----------------------------------------------------------------------
inline void FLabel::setNumber (double num, int precision)
{ setText(FString().setNumber(num, precision)); }
//----------------------------------------------------------------------
inline void FLabel::setNumber (lDouble num, int precision)
{ setText(FString().setNumber(num, precision)); }
2015-05-23 13:35:12 +02:00
//----------------------------------------------------------------------
inline bool FLabel::hasEmphasis()
{ return emphasis; }
2015-05-23 13:35:12 +02:00
//----------------------------------------------------------------------
inline bool FLabel::hasReverseMode()
{ return reverse_mode; }
2015-05-23 13:35:12 +02:00
//----------------------------------------------------------------------
inline void FLabel::clear()
{ text.clear(); }
} // namespace finalcut
#endif // FLABEL_H