2017-11-04 07:03:53 +01:00
|
|
|
/***********************************************************************
|
|
|
|
* ftextview.h - Widget FTextView (a multiline text viewer) *
|
|
|
|
* *
|
|
|
|
* This file is part of the Final Cut widget toolkit *
|
|
|
|
* *
|
2018-02-17 19:12:48 +01:00
|
|
|
* Copyright 2014-2018 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/>. *
|
|
|
|
***********************************************************************/
|
2017-10-02 07:32:33 +02:00
|
|
|
|
|
|
|
/* Inheritance diagram
|
|
|
|
* ═══════════════════
|
|
|
|
*
|
2017-10-29 14:27:50 +01:00
|
|
|
* ▕▔▔▔▔▔▔▔▔▔▏
|
|
|
|
* ▕ FTerm ▏
|
|
|
|
* ▕▁▁▁▁▁▁▁▁▁▏
|
|
|
|
* ▲
|
|
|
|
* │
|
2017-10-02 07:32:33 +02:00
|
|
|
* ▕▔▔▔▔▔▔▔▔▔▏ ▕▔▔▔▔▔▔▔▔▔▏
|
2017-10-29 14:27:50 +01:00
|
|
|
* ▕ FVTerm ▏ ▕ FObject ▏
|
2017-10-02 07:32:33 +02:00
|
|
|
* ▕▁▁▁▁▁▁▁▁▁▏ ▕▁▁▁▁▁▁▁▁▁▏
|
|
|
|
* ▲ ▲
|
|
|
|
* │ │
|
|
|
|
* └─────┬─────┘
|
|
|
|
* │
|
|
|
|
* ▕▔▔▔▔▔▔▔▔▔▏
|
|
|
|
* ▕ FWidget ▏
|
|
|
|
* ▕▁▁▁▁▁▁▁▁▁▏
|
|
|
|
* ▲
|
|
|
|
* │
|
|
|
|
* ▕▔▔▔▔▔▔▔▔▔▔▔▏
|
|
|
|
* ▕ FTextView ▏
|
|
|
|
* ▕▁▁▁▁▁▁▁▁▁▁▁▏
|
|
|
|
*/
|
2015-05-23 13:35:12 +02:00
|
|
|
|
2017-04-09 20:08:53 +02:00
|
|
|
#ifndef FTEXTVIEW_H
|
|
|
|
#define FTEXTVIEW_H
|
2015-05-23 13:35:12 +02:00
|
|
|
|
2017-10-31 00:41:59 +01:00
|
|
|
#if !defined (USE_FINAL_H) && !defined (COMPILE_FINAL_CUT)
|
|
|
|
#error "Only <final/final.h> can be included directly."
|
|
|
|
#endif
|
|
|
|
|
2018-12-28 22:57:43 +01:00
|
|
|
#include <memory>
|
2017-09-11 03:06:02 +02:00
|
|
|
#include <vector>
|
|
|
|
|
2017-09-17 21:32:46 +02:00
|
|
|
#include "final/fapplication.h"
|
|
|
|
#include "final/fscrollbar.h"
|
|
|
|
#include "final/fstatusbar.h"
|
|
|
|
#include "final/fstring.h"
|
|
|
|
#include "final/fwidget.h"
|
2015-05-23 13:35:12 +02:00
|
|
|
|
2018-09-20 23:59:01 +02:00
|
|
|
namespace finalcut
|
|
|
|
{
|
2015-05-23 13:35:12 +02:00
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
// class FTextView
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
|
|
|
|
#pragma pack(push)
|
|
|
|
#pragma pack(1)
|
|
|
|
|
|
|
|
class FTextView : public FWidget
|
|
|
|
{
|
2017-09-11 03:06:02 +02:00
|
|
|
public:
|
|
|
|
// Using-declarations
|
|
|
|
using FWidget::setGeometry;
|
|
|
|
|
|
|
|
// Constructor
|
2018-12-10 01:48:26 +01:00
|
|
|
explicit FTextView (FWidget* = nullptr);
|
2018-12-24 18:11:16 +01:00
|
|
|
|
2018-12-09 22:04:55 +01:00
|
|
|
// Disable copy constructor
|
|
|
|
FTextView (const FTextView&) = delete;
|
2018-12-24 18:11:16 +01:00
|
|
|
|
2017-09-11 03:06:02 +02:00
|
|
|
// Destructor
|
2018-09-24 04:02:35 +02:00
|
|
|
virtual ~FTextView();
|
2017-09-11 03:06:02 +02:00
|
|
|
|
2018-12-09 22:04:55 +01:00
|
|
|
// Disable assignment operator (=)
|
|
|
|
FTextView& operator = (const FTextView&) = delete;
|
|
|
|
|
2017-09-11 03:06:02 +02:00
|
|
|
// Accessors
|
|
|
|
const char* getClassName() const;
|
2018-10-14 06:25:33 +02:00
|
|
|
std::size_t getColumns() const;
|
|
|
|
std::size_t getRows() const;
|
2017-09-11 03:06:02 +02:00
|
|
|
const FString getText() const;
|
2017-09-20 16:56:20 +02:00
|
|
|
const FStringList& getLines() const;
|
2017-09-11 03:06:02 +02:00
|
|
|
|
|
|
|
// Mutators
|
2018-10-24 00:16:45 +02:00
|
|
|
virtual void setGeometry ( int, int
|
|
|
|
, std::size_t, std::size_t
|
|
|
|
, bool = true );
|
2017-09-11 03:06:02 +02:00
|
|
|
void setText (const FString&);
|
2018-02-17 19:12:48 +01:00
|
|
|
void scrollToX (int);
|
|
|
|
void scrollToY (int);
|
|
|
|
void scrollTo (const FPoint&);
|
|
|
|
void scrollTo (int, int);
|
|
|
|
void scrollBy (int, int);
|
2017-09-11 03:06:02 +02:00
|
|
|
|
|
|
|
// Methods
|
2018-09-24 04:02:35 +02:00
|
|
|
virtual void hide();
|
2017-09-11 03:06:02 +02:00
|
|
|
void append (const FString&);
|
|
|
|
void insert (const FString&, int);
|
|
|
|
void replaceRange (const FString&, int, int);
|
|
|
|
void deleteRange (int, int);
|
|
|
|
void deleteLine (int);
|
|
|
|
void clear();
|
|
|
|
|
|
|
|
// Event handlers
|
2018-09-24 04:02:35 +02:00
|
|
|
virtual void onKeyPress (FKeyEvent*);
|
|
|
|
virtual void onMouseDown (FMouseEvent*);
|
|
|
|
virtual void onMouseUp (FMouseEvent*);
|
|
|
|
virtual void onMouseMove (FMouseEvent*);
|
|
|
|
virtual void onWheel (FWheelEvent*);
|
|
|
|
virtual void onFocusIn (FFocusEvent*);
|
|
|
|
virtual void onFocusOut (FFocusEvent*);
|
2017-09-11 03:06:02 +02:00
|
|
|
|
|
|
|
protected:
|
|
|
|
// Method
|
2018-09-24 04:02:35 +02:00
|
|
|
virtual void adjustSize();
|
2017-09-11 03:06:02 +02:00
|
|
|
|
|
|
|
private:
|
2018-12-20 01:41:04 +01:00
|
|
|
// Typedef
|
|
|
|
typedef std::shared_ptr<FScrollbar> FScrollbarPtr;
|
|
|
|
|
2018-02-17 19:12:48 +01:00
|
|
|
// Accessors
|
2018-10-14 06:25:33 +02:00
|
|
|
std::size_t getTextHeight();
|
|
|
|
std::size_t getTextWidth();
|
2018-02-17 19:12:48 +01:00
|
|
|
|
2017-09-11 03:06:02 +02:00
|
|
|
// Methods
|
2017-09-20 16:56:20 +02:00
|
|
|
void init();
|
2018-09-24 04:02:35 +02:00
|
|
|
virtual void draw();
|
2017-09-20 16:56:20 +02:00
|
|
|
void drawText();
|
|
|
|
void processChanged();
|
2018-02-17 19:12:48 +01:00
|
|
|
void drawHBar();
|
|
|
|
void drawVBar();
|
2017-09-11 03:06:02 +02:00
|
|
|
|
|
|
|
// Callback methods
|
2018-12-27 00:14:46 +01:00
|
|
|
void cb_VBarChange (FWidget*, FDataPtr);
|
|
|
|
void cb_HBarChange (FWidget*, FDataPtr);
|
2017-09-11 03:06:02 +02:00
|
|
|
|
|
|
|
// Data Members
|
2018-12-03 03:22:36 +01:00
|
|
|
FStringList data{};
|
2018-12-20 01:41:04 +01:00
|
|
|
FScrollbarPtr vbar{nullptr};
|
|
|
|
FScrollbarPtr hbar{nullptr};
|
2018-12-03 03:22:36 +01:00
|
|
|
bool update_scrollbar{true};
|
|
|
|
int xoffset{0};
|
|
|
|
int yoffset{0};
|
|
|
|
int nf_offset{0};
|
|
|
|
std::size_t maxLineWidth{0};
|
2015-05-23 13:35:12 +02:00
|
|
|
};
|
|
|
|
#pragma pack(pop)
|
|
|
|
|
|
|
|
|
|
|
|
// FListBox inline functions
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
inline const char* FTextView::getClassName() const
|
|
|
|
{ return "FTextView"; }
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
2018-10-14 06:25:33 +02:00
|
|
|
inline std::size_t FTextView::getColumns() const
|
2015-05-23 13:35:12 +02:00
|
|
|
{ return maxLineWidth; }
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
2018-10-14 06:25:33 +02:00
|
|
|
inline std::size_t FTextView::getRows() const
|
|
|
|
{ return std::size_t(data.size()); }
|
2015-05-23 13:35:12 +02:00
|
|
|
|
2016-11-02 00:37:58 +01:00
|
|
|
//----------------------------------------------------------------------
|
2017-09-20 16:56:20 +02:00
|
|
|
inline const FStringList& FTextView::getLines() const
|
2016-11-02 00:37:58 +01:00
|
|
|
{ return data; }
|
|
|
|
|
2018-02-17 19:12:48 +01:00
|
|
|
//----------------------------------------------------------------------
|
|
|
|
inline void FTextView::scrollTo (const FPoint& pos)
|
|
|
|
{ scrollTo(pos.getX(), pos.getY()); }
|
|
|
|
|
2015-05-23 13:35:12 +02:00
|
|
|
//----------------------------------------------------------------------
|
2017-09-17 01:50:41 +02:00
|
|
|
inline void FTextView::deleteRange (int from, int to)
|
|
|
|
{ replaceRange (FString(), from, to); }
|
2015-05-23 13:35:12 +02:00
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
inline void FTextView::deleteLine (int pos)
|
|
|
|
{ deleteRange (pos, pos); }
|
|
|
|
|
2018-09-20 23:59:01 +02:00
|
|
|
} // namespace finalcut
|
|
|
|
|
2017-04-09 20:08:53 +02:00
|
|
|
#endif // FTEXTVIEW_H
|