finalcut/src/include/final/flistbox.h

496 lines
16 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 *
* *
* 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/>. *
***********************************************************************/
/* 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
2017-09-11 03:06:02 +02:00
#include <vector>
#include "final/fscrollbar.h"
#include "final/fstring.h"
#include "final/fwidget.h"
2015-05-23 13:35:12 +02:00
namespace finalcut
{
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
explicit FListBoxItem (const FString&, FWidget::data_ptr = 0);
// Destructor
virtual ~FListBoxItem();
// Assignment operator (=)
FListBoxItem& operator = (const FListBoxItem&);
// Accessors
virtual FString& getText();
virtual FWidget::data_ptr getData() const;
// Mutators
void setText (const FString&);
void setData (FWidget::data_ptr);
// Methods
void clear();
2017-09-11 03:06:02 +02:00
private:
// Friend classes
friend class FListBox;
// Data Members
FString text{};
FWidget::data_ptr data_pointer{0};
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
//----------------------------------------------------------------------
inline FString& FListBoxItem::getText()
2015-09-22 04:18:20 +02:00
{ return text; }
2015-05-23 13:35:12 +02:00
//----------------------------------------------------------------------
inline FWidget::data_ptr 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)
2015-09-22 04:18:20 +02:00
{ text = txt; }
2015-05-23 13:35:12 +02:00
//----------------------------------------------------------------------
inline void FListBoxItem::setData (FWidget::data_ptr 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* = 0);
2018-10-20 22:50:35 +02:00
template <typename Iterator, typename InsertConverter>
2017-09-11 03:06:02 +02:00
FListBox (Iterator, Iterator, InsertConverter, FWidget* = 0);
2018-10-20 22:50:35 +02:00
template <typename Container, typename LazyConverter>
2017-09-11 03:06:02 +02:00
FListBox (Container, LazyConverter, FWidget* = 0);
// Destructor
2018-09-24 04:02:35 +02:00
virtual ~FListBox();
2017-09-11 03:06:02 +02:00
// Accessors
const char* getClassName() const;
std::size_t getCount() const;
FListBoxItem getItem (std::size_t);
2017-09-11 03:06:02 +02:00
FListBoxItem getItem (listBoxItems::iterator) const;
std::size_t currentItem() const;
2017-09-11 03:06:02 +02:00
FString& getText();
// Mutators
void setCurrentItem (std::size_t);
2017-09-11 03:06:02 +02:00
void setCurrentItem (listBoxItems::iterator);
void selectItem (std::size_t);
2017-09-11 03:06:02 +02:00
void selectItem (listBoxItems::iterator);
void unselectItem (std::size_t);
2017-09-11 03:06:02 +02:00
void unselectItem (listBoxItems::iterator);
void showInsideBrackets (std::size_t, fc::brackets_type);
void showNoBrackets (std::size_t);
2017-09-11 03:06:02 +02:00
void showNoBrackets (listBoxItems::iterator);
virtual void setGeometry (int, int, std::size_t, std::size_t, bool = true);
2017-09-11 03:06:02 +02:00
void setMultiSelection (bool);
void setMultiSelection ();
void unsetMultiSelection ();
2018-09-24 04:02:35 +02:00
virtual bool setDisable();
virtual bool setFocus (bool);
virtual bool setFocus();
virtual bool unsetFocus();
2017-09-11 03:06:02 +02:00
void setText (const FString&);
// Inquiries
bool isSelected (std::size_t);
2017-09-11 03:06:02 +02:00
bool isSelected (listBoxItems::iterator) const;
bool isMultiSelection() const;
bool hasBrackets (std::size_t);
2017-09-11 03:06:02 +02:00
bool hasBrackets (listBoxItems::iterator) const;
// Methods
2018-09-24 04:02:35 +02:00
virtual void hide();
2018-10-20 22:50:35 +02:00
template <typename Iterator, typename InsertConverter>
2017-09-11 03:06:02 +02:00
void insert (Iterator, Iterator, InsertConverter);
2018-10-20 22:50:35 +02:00
template <typename Container, typename LazyConverter>
2017-09-11 03:06:02 +02:00
void insert (Container, LazyConverter);
void insert (FListBoxItem);
void insert ( const FString&
, fc::brackets_type = fc::NoBrackets
, bool = false
, data_ptr = 0 );
void insert ( long
, fc::brackets_type = fc::NoBrackets
, bool = false
, data_ptr = 0 );
void remove (std::size_t);
2017-09-11 03:06:02 +02:00
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 onMouseDoubleClick (FMouseEvent*);
virtual void onWheel (FWheelEvent*);
virtual void onTimer (FTimerEvent*);
virtual void onFocusIn (FFocusEvent*);
virtual void onFocusOut (FFocusEvent*);
2017-09-11 03:06:02 +02:00
protected:
// Methods
2018-09-24 04:02:35 +02:00
void adjustYOffset();
virtual void adjustSize();
2017-09-11 03:06:02 +02:00
private:
// Enumeration
enum convert_type
{
no_convert = 0,
direct_convert = 1,
lazy_convert = 2
};
// Disable copy constructor
FListBox (const FListBox&);
// Disable assignment operator (=)
FListBox& operator = (const FListBox&);
// Accessors
static FString& getString (listBoxItems::iterator);
// Methods
2018-09-24 04:02:35 +02:00
void init();
virtual void draw();
void drawHeadline();
2018-09-24 04:02:35 +02:00
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);
2018-10-20 22:50:35 +02:00
void recalculateHorizontalBar (std::size_t, bool);
void recalculateVerticalBar (std::size_t);
2018-09-24 04:02:35 +02:00
void getWidgetFocus();
void multiSelection (std::size_t);
void multiSelectionUpTo (std::size_t);
2018-09-24 04:02:35 +02:00
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();
2018-11-21 20:07:08 +01:00
bool keyIncSearchInput (FKey);
2018-09-24 04:02:35 +02:00
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
void cb_VBarChange (FWidget*, data_ptr);
void cb_HBarChange (FWidget*, data_ptr);
// Function Pointer
2018-09-24 04:02:35 +02:00
void (*convertToItem) ( FListBoxItem&
, FWidget::data_ptr
, int index ){0};
2017-09-11 03:06:02 +02:00
// Data Members
listBoxItems itemlist{};
FWidget::data_ptr source_container{0};
convert_type conv_type{FListBox::no_convert};
FScrollbar* vbar{0};
FScrollbar* hbar{0};
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
//----------------------------------------------------------------------
inline void FListBox::setMultiSelection (bool on)
{ multi_select = on; }
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); }
//----------------------------------------------------------------------
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);
}
//----------------------------------------------------------------------
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