finalcut/src/include/final/flabel.h

242 lines
8.5 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 *
2017-11-04 07:03:53 +01:00
* *
2020-01-20 21:40:00 +01:00
* Copyright 2014-2020 Markus Gans *
2017-11-04 07:03:53 +01:00
* *
* 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 *
2017-11-04 07:03:53 +01:00
* the License, or (at your option) any later version. *
* *
* FINAL CUT is distributed in the hope that it will be useful, but *
* WITHOUT ANY WARRANTY; without even the implied warranty of *
2017-11-04 07:03:53 +01:00
* 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
*
*
*
* 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
2020-02-19 21:59:13 +01:00
~FLabel() override;
2017-09-11 03:06:02 +02:00
// Disable copy assignment operator (=)
FLabel& operator = (const FLabel&) = delete;
// Overloaded operators
FLabel& operator = (const FString&);
template <typename typeT>
FLabel& operator << (const typeT&);
FLabel& operator << (fc::SpecialCharacter);
FLabel& operator << (const wchar_t);
2020-07-12 15:25:21 +02:00
const FLabel& operator >> (FString&) const;
2017-09-11 03:06:02 +02:00
// Accessors
FString getClassName() const override;
2018-12-31 06:18:39 +01:00
FWidget* getAccelWidget();
2020-07-12 15:25:21 +02:00
fc::text_alignment getAlignment() const;
2018-12-31 06:18:39 +01:00
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();
2020-06-06 21:10:06 +02:00
void resetColors() override;
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
bool hasEmphasis() const;
bool hasReverseMode() const;
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
2020-08-11 23:04:46 +02:00
void cb_accelWidgetDestroyed();
2017-09-11 03:06:02 +02:00
private:
// Constants
static constexpr auto 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();
2020-07-12 15:25:21 +02:00
std::size_t getAlignOffset (const std::size_t) const;
2019-08-06 23:45:28 +02:00
void draw() override;
2018-12-31 06:18:39 +01:00
void drawMultiLine();
void drawSingleLine();
2020-04-19 20:38:52 +02:00
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};
2020-06-06 21:10:06 +02:00
FColor emphasis_color{fc::Default};
FColor ellipsis_color{fc::Default};
2019-09-08 02:04:24 +02:00
bool multiline{false};
bool emphasis{false};
bool reverse_mode{false};
2015-05-23 13:35:12 +02:00
};
// FLabel inline functions
//----------------------------------------------------------------------
template <typename typeT>
inline FLabel& FLabel::operator << (const typeT& s)
{
FString str{};
str << s;
setText(text + str);
return *this;
}
2015-05-23 13:35:12 +02:00
//----------------------------------------------------------------------
inline 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; }
//----------------------------------------------------------------------
2020-07-12 15:25:21 +02:00
inline fc::text_alignment FLabel::getAlignment() const
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() const
{ return emphasis; }
2015-05-23 13:35:12 +02:00
//----------------------------------------------------------------------
inline bool FLabel::hasReverseMode() const
{ return reverse_mode; }
2015-05-23 13:35:12 +02:00
//----------------------------------------------------------------------
inline void FLabel::clear()
{ text.clear(); }
} // namespace finalcut
#endif // FLABEL_H