finalcut/src/include/final/flistbox.h

562 lines
20 KiB
C
Raw Normal View History

2017-11-04 07:03:53 +01:00
/***********************************************************************
* flistbox.h - Widget FListBox and FListBoxItem *
* *
* This file is part of the Final Cut widget toolkit *
* *
e 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
*
*
*
* 1 *
* FListBox - - - - FListBoxItem
*
*
*/
2015-05-23 13:35:12 +02:00
#ifndef FLISTBOX_H
#define FLISTBOX_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
2018-12-28 22:57:43 +01:00
#include <memory>
2017-09-11 03:06:02 +02:00
#include <vector>
#include "final/fwidget.h"
2015-05-23 13:35:12 +02:00
namespace finalcut
{
2015-05-23 13:35:12 +02:00
// class forward declaration
class FScrollbar;
class FString;
2015-05-23 13:35:12 +02:00
//----------------------------------------------------------------------
// class FListBoxItem
//----------------------------------------------------------------------
#pragma pack(push)
#pragma pack(1)
class FListBoxItem
{
2017-09-11 03:06:02 +02:00
public:
// Constructors
FListBoxItem ();
FListBoxItem (const FListBoxItem&); // copy constructor
2018-12-27 00:14:46 +01:00
explicit FListBoxItem (const FString&, FDataPtr = nullptr);
2017-09-11 03:06:02 +02:00
// Destructor
virtual ~FListBoxItem();
// Assignment operator (=)
FListBoxItem& operator = (const FListBoxItem&);
// Accessors
2018-12-31 06:18:39 +01:00
virtual const char* getClassName() const;
virtual FString& getText();
virtual FDataPtr getData() const;
2017-09-11 03:06:02 +02:00
// Mutators
2018-12-31 06:18:39 +01:00
void setText (const FString&);
void setData (FDataPtr);
2017-09-11 03:06:02 +02:00
// Methods
2018-12-31 06:18:39 +01:00
void clear();
2017-09-11 03:06:02 +02:00
private:
// Friend classes
friend class FListBox;
// Data Members
FString text{};
2018-12-27 00:14:46 +01:00
FDataPtr data_pointer{nullptr};
fc::brackets_type brackets{fc::NoBrackets};
bool selected{false};
2015-05-23 13:35:12 +02:00
};
#pragma pack(pop)
2015-05-23 13:35:12 +02:00
// FListBoxItem inline functions
2018-12-31 06:18:39 +01:00
//----------------------------------------------------------------------
inline const char* FListBoxItem::getClassName() const
{ return "FListBoxItem"; }
2015-05-23 13:35:12 +02:00
//----------------------------------------------------------------------
inline FString& FListBoxItem::getText()
2015-09-22 04:18:20 +02:00
{ return text; }
2015-05-23 13:35:12 +02:00
//----------------------------------------------------------------------
2018-12-27 00:14:46 +01:00
inline FDataPtr FListBoxItem::getData() const
{ return data_pointer; }
2015-05-23 13:35:12 +02:00
//----------------------------------------------------------------------
2017-03-17 22:59:06 +01:00
inline void FListBoxItem::setText (const FString& txt)
2019-08-25 22:16:00 +02:00
{ text.setString(txt); }
2015-05-23 13:35:12 +02:00
//----------------------------------------------------------------------
2018-12-27 00:14:46 +01:00
inline void FListBoxItem::setData (FDataPtr data)
{ data_pointer = data; }
//----------------------------------------------------------------------
inline void FListBoxItem::clear()
{ text.clear(); }
2015-05-23 13:35:12 +02:00
//----------------------------------------------------------------------
// class FListBox
//----------------------------------------------------------------------
#pragma pack(push)
#pragma pack(1)
class FListBox : public FWidget
{
2017-09-11 03:06:02 +02:00
public:
// Typedef
typedef std::vector<FListBoxItem> listBoxItems;
// Using-declaration
using FWidget::setGeometry;
// Constructor
explicit FListBox (FWidget* = nullptr);
2018-10-20 22:50:35 +02:00
template <typename Iterator, typename InsertConverter>
FListBox (Iterator, Iterator, InsertConverter, FWidget* = nullptr);
2018-10-20 22:50:35 +02:00
template <typename Container, typename LazyConverter>
FListBox (Container, LazyConverter, FWidget* = nullptr);
// Disable copy constructor
FListBox (const FListBox&) = delete;
2017-09-11 03:06:02 +02:00
// Destructor
2018-09-24 04:02:35 +02:00
virtual ~FListBox();
2017-09-11 03:06:02 +02:00
// Disable assignment operator (=)
FListBox& operator = (const FListBox&) = delete;
2017-09-11 03:06:02 +02:00
// Accessors
2019-08-06 23:45:28 +02:00
const char* getClassName() const override;
2018-12-31 06:18:39 +01:00
std::size_t getCount() const;
FListBoxItem getItem (std::size_t);
FListBoxItem getItem (listBoxItems::iterator) const;
std::size_t currentItem() const;
FString& getText();
2017-09-11 03:06:02 +02:00
// Mutators
2018-12-31 06:18:39 +01:00
void setCurrentItem (std::size_t);
void setCurrentItem (listBoxItems::iterator);
void selectItem (std::size_t);
void selectItem (listBoxItems::iterator);
void unselectItem (std::size_t);
void unselectItem (listBoxItems::iterator);
void showInsideBrackets (std::size_t, fc::brackets_type);
void showNoBrackets (std::size_t);
void showNoBrackets (listBoxItems::iterator);
2019-08-06 23:45:28 +02:00
void setGeometry ( const FPoint&, const FSize&
2018-12-31 06:18:39 +01:00
, bool = true ) override;
void setMultiSelection (bool);
void setMultiSelection ();
void unsetMultiSelection ();
2019-08-06 23:45:28 +02:00
bool setDisable() override;
bool setFocus (bool) override;
bool setFocus() override;
bool unsetFocus() override;
2018-12-31 06:18:39 +01:00
void setText (const FString&);
2017-09-11 03:06:02 +02:00
// Inquiries
2018-12-31 06:18:39 +01:00
bool isSelected (std::size_t);
bool isSelected (listBoxItems::iterator) const;
bool isMultiSelection() const;
bool hasBrackets (std::size_t);
bool hasBrackets (listBoxItems::iterator) const;
2017-09-11 03:06:02 +02:00
// Methods
2019-08-06 23:45:28 +02:00
void hide() override;
2018-10-20 22:50:35 +02:00
template <typename Iterator, typename InsertConverter>
2018-12-31 06:18:39 +01:00
void insert (Iterator, Iterator, InsertConverter);
2018-10-20 22:50:35 +02:00
template <typename Container, typename LazyConverter>
2018-12-31 06:18:39 +01:00
void insert (Container, LazyConverter);
void insert (FListBoxItem);
template <typename T>
void insert ( const std::initializer_list<T>& list
, fc::brackets_type = fc::NoBrackets
, bool = false
, FDataPtr = nullptr );
2018-12-28 22:57:43 +01:00
template <typename ItemT>
2018-12-31 06:18:39 +01:00
void insert ( const ItemT&
, fc::brackets_type = fc::NoBrackets
, bool = false
, FDataPtr = nullptr );
void remove (std::size_t);
void reserve (std::size_t);
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 onKeyPress (FKeyEvent*) override;
void onMouseDown (FMouseEvent*) override;
void onMouseUp (FMouseEvent*) override;
void onMouseMove (FMouseEvent*) override;
void onMouseDoubleClick (FMouseEvent*) override;
void onWheel (FWheelEvent*) override;
void onTimer (FTimerEvent*) override;
void onFocusIn (FFocusEvent*) override;
void onFocusOut (FFocusEvent*) override;
2017-09-11 03:06:02 +02:00
protected:
// Methods
2018-12-31 06:18:39 +01:00
void adjustYOffset (std::size_t);
2019-08-06 23:45:28 +02:00
void adjustSize() override;
2017-09-11 03:06:02 +02:00
private:
2018-12-20 01:41:04 +01:00
// Typedef
typedef std::shared_ptr<FScrollbar> FScrollbarPtr;
2019-01-12 09:11:22 +01:00
typedef void (FListBox::*FListBoxCallback)(FWidget*, FDataPtr);
2018-12-20 01:41:04 +01:00
2017-09-11 03:06:02 +02:00
// Enumeration
enum convert_type
{
no_convert = 0,
direct_convert = 1,
lazy_convert = 2
};
// Accessors
2018-12-31 06:18:39 +01:00
static FString& getString (listBoxItems::iterator);
2017-09-11 03:06:02 +02:00
// Inquiry
bool isHorizontallyScrollable();
bool isVerticallyScrollable();
2017-09-11 03:06:02 +02:00
// Methods
2018-12-31 06:18:39 +01:00
void init();
2019-01-12 09:11:22 +01:00
void initScrollbar ( FScrollbarPtr&
, fc::orientation
, FListBoxCallback );
2019-08-06 23:45:28 +02:00
void draw() override;
void drawBorder() override;
2019-08-11 18:15:57 +02:00
void drawScrollbars();
2018-12-31 06:18:39 +01:00
void drawHeadline();
void drawList();
void drawListLine (int, listBoxItems::iterator, bool);
void printLeftBracket (fc::brackets_type);
void printRightBracket (fc::brackets_type);
void drawListBracketsLine (int, listBoxItems::iterator, bool);
void setLineAttributes (int, bool, bool, bool&);
void unsetAttributes();
void updateDrawing (bool, bool);
void recalculateHorizontalBar (std::size_t, bool);
void recalculateVerticalBar (std::size_t);
void getWidgetFocus();
void multiSelection (std::size_t);
void multiSelectionUpTo (std::size_t);
void wheelUp (int);
void wheelDown (int);
bool dragScrollUp();
bool dragScrollDown();
void dragUp (int);
void dragDown (int);
void stopDragScroll();
void prevListItem (int);
void nextListItem (int);
void scrollToX (int);
void scrollToY (int);
void scrollLeft (int);
void scrollRight (int);
void keyUp();
void keyDown();
void keyLeft();
void keyRight();
void keyPgUp();
void keyPgDn();
void keyHome();
void keyEnd();
bool keyEsc();
void keyEnter();
bool keySpace();
bool keyInsert();
bool keyBackspace();
bool keyIncSearchInput (FKey);
void processClick();
void processSelect();
void processChanged();
void lazyConvert (listBoxItems::iterator, int);
listBoxItems::iterator index2iterator (std::size_t);
2017-09-11 03:06:02 +02:00
// Callback methods
2018-12-31 06:18:39 +01:00
void cb_VBarChange (FWidget*, FDataPtr);
void cb_HBarChange (FWidget*, FDataPtr);
2017-09-11 03:06:02 +02:00
// Function Pointer
2018-12-31 06:18:39 +01:00
void (*convertToItem) ( FListBoxItem&
, FDataPtr
, int index ){nullptr};
2017-09-11 03:06:02 +02:00
// Data Members
2018-12-31 06:18:39 +01:00
listBoxItems itemlist{};
FDataPtr source_container{nullptr};
convert_type conv_type{FListBox::no_convert};
FScrollbarPtr vbar{nullptr};
FScrollbarPtr hbar{nullptr};
FString text{};
FString inc_search{};
bool multi_select{false};
bool mouse_select{false};
fc::dragScroll drag_scroll{fc::noScroll};
bool scroll_timer{false};
int scroll_repeat{100};
int scroll_distance{1};
std::size_t current{0};
int last_current{-1};
int secect_from_item{-1};
int xoffset{0};
int yoffset{0};
int last_yoffset{-1};
std::size_t nf_offset{0};
std::size_t max_line_width{0};
2015-05-23 13:35:12 +02:00
};
#pragma pack(pop)
// FListBox inline functions
//----------------------------------------------------------------------
2018-10-20 22:50:35 +02:00
template <typename Iterator, typename InsertConverter>
inline FListBox::FListBox ( Iterator first
, Iterator last
, InsertConverter convert
, FWidget* parent )
: FWidget(parent)
{
init();
while ( first != last )
{
insert(convert(first), fc::NoBrackets, false, &(*first));
++first;
}
}
//----------------------------------------------------------------------
2018-10-20 22:50:35 +02:00
template <typename Container, typename LazyConverter>
inline FListBox::FListBox ( Container container
, LazyConverter convert
, FWidget* parent )
: FWidget(parent)
{
init();
insert (container, convert);
}
2015-05-23 13:35:12 +02:00
//----------------------------------------------------------------------
inline const char* FListBox::getClassName() const
{ return "FListBox"; }
//----------------------------------------------------------------------
inline std::size_t FListBox::getCount() const
{ return itemlist.size(); }
2015-05-23 13:35:12 +02:00
//----------------------------------------------------------------------
inline FListBoxItem FListBox::getItem (std::size_t index)
{
listBoxItems::iterator iter = index2iterator(index - 1);
return *iter;
}
//----------------------------------------------------------------------
inline FListBoxItem FListBox::getItem (listBoxItems::iterator iter) const
{ return *iter; }
2015-05-23 13:35:12 +02:00
//----------------------------------------------------------------------
inline std::size_t FListBox::currentItem() const
2015-05-23 13:35:12 +02:00
{ return current; }
//----------------------------------------------------------------------
inline FString& FListBox::getText()
{ return text; }
2015-05-23 13:35:12 +02:00
//----------------------------------------------------------------------
inline void FListBox::selectItem (std::size_t index)
{ index2iterator(index - 1)->selected = true; }
//----------------------------------------------------------------------
inline void FListBox::selectItem (listBoxItems::iterator iter)
{ iter->selected = true; }
2015-05-23 13:35:12 +02:00
//----------------------------------------------------------------------
inline void FListBox::unselectItem (std::size_t index)
{ index2iterator(index - 1)->selected = false; }
//----------------------------------------------------------------------
inline void FListBox::unselectItem (listBoxItems::iterator iter)
{ iter->selected = false; }
//----------------------------------------------------------------------
inline void FListBox::showNoBrackets (std::size_t index)
{ index2iterator(index - 1)->brackets = fc::NoBrackets; }
2015-05-23 13:35:12 +02:00
//----------------------------------------------------------------------
inline void FListBox::showNoBrackets (listBoxItems::iterator iter)
{ iter->brackets = fc::NoBrackets; }
2015-05-23 13:35:12 +02:00
//----------------------------------------------------------------------
2018-12-22 23:50:10 +01:00
inline void FListBox::setMultiSelection (bool enable)
{ multi_select = enable; }
2015-05-23 13:35:12 +02:00
//----------------------------------------------------------------------
inline void FListBox::setMultiSelection()
{ setMultiSelection(true); }
//----------------------------------------------------------------------
inline void FListBox::unsetMultiSelection()
{ setMultiSelection(false); }
//----------------------------------------------------------------------
inline bool FListBox::setDisable()
{ return setEnable(false); }
//----------------------------------------------------------------------
inline bool FListBox::setFocus()
{ return setFocus(true); }
//----------------------------------------------------------------------
inline bool FListBox::unsetFocus()
{ return setFocus(false); }
//----------------------------------------------------------------------
inline bool FListBox::isSelected (std::size_t index)
{ return index2iterator(index - 1)->selected; }
//----------------------------------------------------------------------
inline bool FListBox::isSelected (listBoxItems::iterator iter) const
{ return iter->selected; }
//----------------------------------------------------------------------
inline bool FListBox::isMultiSelection() const
{ return multi_select; }
//----------------------------------------------------------------------
inline bool FListBox::hasBrackets(std::size_t index)
{ return bool(index2iterator(index - 1)->brackets > 0); }
//----------------------------------------------------------------------
inline bool FListBox::hasBrackets(listBoxItems::iterator iter) const
{ return bool(iter->brackets > 0); }
//----------------------------------------------------------------------
inline void FListBox::reserve (std::size_t new_cap)
{ itemlist.reserve(new_cap); }
//----------------------------------------------------------------------
2018-10-20 22:50:35 +02:00
template <typename Iterator, typename InsertConverter>
inline void FListBox::insert ( Iterator first
, Iterator last
, InsertConverter convert )
{
conv_type = direct_convert;
while ( first != last )
{
insert (convert(first), fc::NoBrackets, false, &(*first));
++first;
}
}
//----------------------------------------------------------------------
2018-10-20 22:50:35 +02:00
template <typename Container, typename LazyConverter>
void FListBox::insert (Container container, LazyConverter convert)
{
conv_type = lazy_convert;
source_container = container;
convertToItem = convert;
2018-01-05 00:49:00 +01:00
std::size_t size = container->size();
if ( size > 0 )
2017-09-15 01:31:02 +02:00
itemlist.resize(size);
2018-10-20 22:50:35 +02:00
recalculateVerticalBar(size);
}
//----------------------------------------------------------------------
template <typename T>
void FListBox::insert ( const std::initializer_list<T>& list
, fc::brackets_type b
, bool s
, FDataPtr d )
{
for (auto& item : list)
{
FListBoxItem listItem (FString() << item, d);
listItem.brackets = b;
listItem.selected = s;
insert (listItem);
}
}
2018-12-28 22:57:43 +01:00
//----------------------------------------------------------------------
template <typename ItemT>
void FListBox::insert ( const ItemT& item
, fc::brackets_type b
, bool s
, FDataPtr d )
{
FListBoxItem listItem (FString() << item, d);
listItem.brackets = b;
listItem.selected = s;
insert (listItem);
}
//----------------------------------------------------------------------
inline bool FListBox::isHorizontallyScrollable()
{ return bool( max_line_width >= getClientWidth() - 1 ); }
//----------------------------------------------------------------------
inline bool FListBox::isVerticallyScrollable()
{ return bool( getCount() > getClientHeight() ); }
//----------------------------------------------------------------------
2018-10-24 00:16:45 +02:00
inline FListBox::listBoxItems::iterator \
FListBox::index2iterator (std::size_t index)
{
2017-09-15 01:31:02 +02:00
listBoxItems::iterator iter = itemlist.begin();
std::advance (iter, index);
return iter;
}
2015-05-23 13:35:12 +02:00
} // namespace finalcut
#endif // FLISTBOX_H