Clicking on the column header in FListView now changes the sort order
This commit is contained in:
parent
d39e85d4c5
commit
b451f0047a
|
@ -1,3 +1,6 @@
|
||||||
|
2018-11-12 Markus Gans <guru.mail@muenster.de>
|
||||||
|
* Clicking on the column header in FListView now changes the sort order
|
||||||
|
|
||||||
2018-11-10 Markus Gans <guru.mail@muenster.de>
|
2018-11-10 Markus Gans <guru.mail@muenster.de>
|
||||||
* FListView now has a sort indicator to display the sort order
|
* FListView now has a sort indicator to display the sort order
|
||||||
|
|
||||||
|
|
|
@ -612,6 +612,7 @@ FListView::FListView (FWidget* parent)
|
||||||
, tree_view(false)
|
, tree_view(false)
|
||||||
, hide_sort_indicator(false)
|
, hide_sort_indicator(false)
|
||||||
, clicked_expander_pos(-1, -1)
|
, clicked_expander_pos(-1, -1)
|
||||||
|
, clicked_column_pos(-1, -1)
|
||||||
, xoffset(0)
|
, xoffset(0)
|
||||||
, nf_offset(0)
|
, nf_offset(0)
|
||||||
, max_line_width(1)
|
, max_line_width(1)
|
||||||
|
@ -1056,8 +1057,12 @@ void FListView::onMouseDown (FMouseEvent* ev)
|
||||||
, mouse_x = ev->getX()
|
, mouse_x = ev->getX()
|
||||||
, mouse_y = ev->getY();
|
, mouse_y = ev->getY();
|
||||||
|
|
||||||
if ( mouse_x > 1 && mouse_x < int(getWidth())
|
if ( mouse_x > 1 && mouse_x < int(getWidth()) && mouse_y == 1 )
|
||||||
&& mouse_y > 1 && mouse_y < int(getHeight()) )
|
{
|
||||||
|
clicked_column_pos = ev->getPos();
|
||||||
|
}
|
||||||
|
else if ( mouse_x > 1 && mouse_x < int(getWidth())
|
||||||
|
&& mouse_y > 1 && mouse_y < int(getHeight()) )
|
||||||
{
|
{
|
||||||
int new_pos = first_visible_line.getPosition() + mouse_y - 2;
|
int new_pos = first_visible_line.getPosition() + mouse_y - 2;
|
||||||
|
|
||||||
|
@ -1099,7 +1104,12 @@ void FListView::onMouseUp (FMouseEvent* ev)
|
||||||
int mouse_y = ev->getY();
|
int mouse_y = ev->getY();
|
||||||
|
|
||||||
if ( mouse_x > 1 && mouse_x < int(getWidth())
|
if ( mouse_x > 1 && mouse_x < int(getWidth())
|
||||||
&& mouse_y > 1 && mouse_y < int(getHeight()) )
|
&& mouse_y == 1 && clicked_column_pos == ev->getPos() )
|
||||||
|
{
|
||||||
|
mouseColumnClicked();
|
||||||
|
}
|
||||||
|
else if ( mouse_x > 1 && mouse_x < int(getWidth())
|
||||||
|
&& mouse_y > 1 && mouse_y < int(getHeight()) )
|
||||||
{
|
{
|
||||||
if ( tree_view )
|
if ( tree_view )
|
||||||
{
|
{
|
||||||
|
@ -1590,9 +1600,9 @@ void FListView::drawList()
|
||||||
if ( itemlist.empty() || getHeight() <= 2 || getWidth() <= 4 )
|
if ( itemlist.empty() || getHeight() <= 2 || getWidth() <= 4 )
|
||||||
return;
|
return;
|
||||||
|
|
||||||
y = 0;
|
y = 0;
|
||||||
page_height = uInt(getHeight() - 2);
|
page_height = uInt(getHeight() - 2);
|
||||||
iter = first_visible_line;
|
iter = first_visible_line;
|
||||||
|
|
||||||
while ( iter != itemlist.end() && y < page_height )
|
while ( iter != itemlist.end() && y < page_height )
|
||||||
{
|
{
|
||||||
|
@ -1790,7 +1800,7 @@ inline void FListView::drawSortIndicator ( std::size_t& length
|
||||||
}
|
}
|
||||||
|
|
||||||
//----------------------------------------------------------------------
|
//----------------------------------------------------------------------
|
||||||
inline void FListView::drawHeaderLine (std::size_t length)
|
inline void FListView::drawHeaderBorder (std::size_t length)
|
||||||
{
|
{
|
||||||
setColor();
|
setColor();
|
||||||
const FString line (length, wchar_t(fc::BoxDrawingsHorizontal));
|
const FString line (length, wchar_t(fc::BoxDrawingsHorizontal));
|
||||||
|
@ -1806,19 +1816,18 @@ void FListView::drawColumnText (headerItems::const_iterator& iter)
|
||||||
FString txt = " " + text;
|
FString txt = " " + text;
|
||||||
std::size_t width = std::size_t(iter->width);
|
std::size_t width = std::size_t(iter->width);
|
||||||
std::size_t txt_length = txt.getLength();
|
std::size_t txt_length = txt.getLength();
|
||||||
std::size_t length = 0;
|
|
||||||
std::size_t column_width = leading_space + width;
|
std::size_t column_width = leading_space + width;
|
||||||
headerItems::const_iterator first = header.begin();
|
headerItems::const_iterator first = header.begin();
|
||||||
int column = std::distance(first, iter) + 1;
|
int column = std::distance(first, iter) + 1;
|
||||||
bool isSortIndicator = bool ( sort_column == column
|
bool has_sort_indicator = bool ( sort_column == column
|
||||||
&& ! hide_sort_indicator );
|
&& ! hide_sort_indicator );
|
||||||
|
|
||||||
if ( isEnabled() )
|
if ( isEnabled() )
|
||||||
setColor (wc.label_emphasis_fg, wc.label_bg);
|
setColor (wc.label_emphasis_fg, wc.label_bg);
|
||||||
else
|
else
|
||||||
setColor (wc.label_inactive_fg, wc.label_inactive_bg);
|
setColor (wc.label_inactive_fg, wc.label_inactive_bg);
|
||||||
|
|
||||||
if ( isSortIndicator && txt_length >= column_width - 1 && txt_length > 1 )
|
if ( has_sort_indicator && txt_length >= column_width - 1 && txt_length > 1 )
|
||||||
{
|
{
|
||||||
txt_length = column_width - 2;
|
txt_length = column_width - 2;
|
||||||
txt = txt.left(txt_length);
|
txt = txt.left(txt_length);
|
||||||
|
@ -1826,7 +1835,7 @@ void FListView::drawColumnText (headerItems::const_iterator& iter)
|
||||||
|
|
||||||
if ( txt_length <= column_width )
|
if ( txt_length <= column_width )
|
||||||
{
|
{
|
||||||
length = txt_length;
|
std::size_t length = txt_length;
|
||||||
headerline << txt;
|
headerline << txt;
|
||||||
|
|
||||||
if ( length < column_width )
|
if ( length < column_width )
|
||||||
|
@ -1835,11 +1844,11 @@ void FListView::drawColumnText (headerItems::const_iterator& iter)
|
||||||
headerline << ' '; // trailing space
|
headerline << ' '; // trailing space
|
||||||
}
|
}
|
||||||
|
|
||||||
if ( isSortIndicator )
|
if ( has_sort_indicator )
|
||||||
drawSortIndicator (length, column_width );
|
drawSortIndicator (length, column_width );
|
||||||
|
|
||||||
if ( length < column_width )
|
if ( length < column_width )
|
||||||
drawHeaderLine (column_width - length);
|
drawHeaderBorder (column_width - length);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
drawColumnEllipsis (iter, text); // Print ellipsis
|
drawColumnEllipsis (iter, text); // Print ellipsis
|
||||||
|
@ -1948,6 +1957,53 @@ void FListView::recalculateVerticalBar (int element_count)
|
||||||
vbar->setVisible();
|
vbar->setVisible();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//----------------------------------------------------------------------
|
||||||
|
void FListView::mouseColumnClicked()
|
||||||
|
{
|
||||||
|
int column_start = 2;
|
||||||
|
int column = 1;
|
||||||
|
int column_pos = clicked_column_pos.getX() + xoffset;
|
||||||
|
headerItems::const_iterator iter;
|
||||||
|
iter = header.begin();
|
||||||
|
|
||||||
|
while ( iter != header.end() )
|
||||||
|
{
|
||||||
|
static const int leading_space = 1;
|
||||||
|
bool has_sort_indicator = bool( column == sort_column );
|
||||||
|
int click_width = int(iter->name.getLength());
|
||||||
|
|
||||||
|
if ( has_sort_indicator )
|
||||||
|
click_width += 2;
|
||||||
|
|
||||||
|
if ( click_width > iter->width )
|
||||||
|
click_width = iter->width;
|
||||||
|
|
||||||
|
if ( column_pos > column_start
|
||||||
|
&& column_pos <= column_start + click_width )
|
||||||
|
{
|
||||||
|
if ( has_sort_indicator && sort_order == fc::ascending )
|
||||||
|
setColumnSort (column, fc::descending);
|
||||||
|
else
|
||||||
|
setColumnSort (column, fc::ascending);
|
||||||
|
|
||||||
|
sort();
|
||||||
|
|
||||||
|
if ( isVisible() )
|
||||||
|
{
|
||||||
|
drawColumnLabels();
|
||||||
|
drawList();
|
||||||
|
updateTerminal();
|
||||||
|
flush_out();
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
column_start += leading_space + iter->width;
|
||||||
|
column++;
|
||||||
|
++iter;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
//----------------------------------------------------------------------
|
//----------------------------------------------------------------------
|
||||||
void FListView::wheelUp (int pagesize)
|
void FListView::wheelUp (int pagesize)
|
||||||
{
|
{
|
||||||
|
|
|
@ -55,7 +55,7 @@
|
||||||
#include <list>
|
#include <list>
|
||||||
#include <stack>
|
#include <stack>
|
||||||
#include <vector>
|
#include <vector>
|
||||||
|
#include "final/fmessagebox.h"
|
||||||
#include "final/fscrollbar.h"
|
#include "final/fscrollbar.h"
|
||||||
#include "final/fstring.h"
|
#include "final/fstring.h"
|
||||||
#include "final/ftermbuffer.h"
|
#include "final/ftermbuffer.h"
|
||||||
|
@ -359,13 +359,14 @@ class FListView : public FWidget
|
||||||
FString getLinePrefix (const FListViewItem*, std::size_t);
|
FString getLinePrefix (const FListViewItem*, std::size_t);
|
||||||
void drawSortIndicator (std::size_t&, std::size_t);
|
void drawSortIndicator (std::size_t&, std::size_t);
|
||||||
void drawColumnText (headerItems::const_iterator&);
|
void drawColumnText (headerItems::const_iterator&);
|
||||||
void drawHeaderLine (std::size_t);
|
void drawHeaderBorder (std::size_t);
|
||||||
void drawColumnEllipsis ( headerItems::const_iterator&
|
void drawColumnEllipsis ( headerItems::const_iterator&
|
||||||
, const FString& );
|
, const FString& );
|
||||||
void updateDrawing (bool, bool);
|
void updateDrawing (bool, bool);
|
||||||
int determineLineWidth (FListViewItem* item);
|
int determineLineWidth (FListViewItem* item);
|
||||||
void recalculateHorizontalBar (int);
|
void recalculateHorizontalBar (int);
|
||||||
void recalculateVerticalBar (int);
|
void recalculateVerticalBar (int);
|
||||||
|
void mouseColumnClicked();
|
||||||
void wheelUp (int);
|
void wheelUp (int);
|
||||||
void wheelDown (int);
|
void wheelDown (int);
|
||||||
bool dragScrollUp (int);
|
bool dragScrollUp (int);
|
||||||
|
@ -415,6 +416,7 @@ class FListView : public FWidget
|
||||||
bool tree_view;
|
bool tree_view;
|
||||||
bool hide_sort_indicator;
|
bool hide_sort_indicator;
|
||||||
FPoint clicked_expander_pos;
|
FPoint clicked_expander_pos;
|
||||||
|
FPoint clicked_column_pos;
|
||||||
int xoffset;
|
int xoffset;
|
||||||
int nf_offset;
|
int nf_offset;
|
||||||
int max_line_width;
|
int max_line_width;
|
||||||
|
|
Loading…
Reference in New Issue