mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-15 14:16:07 -06:00
8725 lines
163 KiB
C++
8725 lines
163 KiB
C++
#include <GridCtrl/GridCtrl.h>
|
|
|
|
namespace Upp {
|
|
|
|
#ifdef COMPILER_MSC
|
|
#pragma warning(disable: 4355)
|
|
#endif
|
|
|
|
#define TFILE <GridCtrl/GridCtrl.t>
|
|
#include <Core/t.h>
|
|
|
|
bool GridCtrl::index_as_column = false;
|
|
bool GridCtrl::reverse_sort_icon = false;
|
|
|
|
GridCtrl::GridCtrl() : holder(*this)
|
|
{
|
|
sortCol = -1;
|
|
hcol = -1;
|
|
hrow = -1;
|
|
|
|
fixed_click = false;
|
|
fixed_top_click = false;
|
|
fixed_left_click = false;
|
|
size_changed = true;
|
|
|
|
resize_panel_open = false;
|
|
|
|
synced = false;
|
|
sc_fr = -1;
|
|
sc_lr = -1;
|
|
|
|
resizeCol = false;
|
|
resizeRow = false;
|
|
|
|
ready = false;
|
|
doscroll = true;
|
|
firstRow = lastRow = -1;
|
|
firstCol = lastCol = -1;
|
|
|
|
firstVisCol = -1;
|
|
lastVisCol = -1;
|
|
firstVisRow = -1;
|
|
lastVisRow = -1;
|
|
|
|
colidx = -1;
|
|
rowidx = -1;
|
|
rowfnd = -1;
|
|
|
|
GD_COL_WIDTH = 50;
|
|
GD_ROW_HEIGHT = Draw::GetStdFontCy() + 5;
|
|
GD_HDR_HEIGHT = GD_ROW_HEIGHT + 2;
|
|
GD_IND_WIDTH = 9;
|
|
|
|
display = new GridDisplay();
|
|
display->SetTextAlign(GD::VCENTER);
|
|
orgdisp = display;
|
|
|
|
sbx.Horz();
|
|
sby.Vert();
|
|
sbx.WhenScroll = THISBACK(Scroll);
|
|
sby.WhenScroll = THISBACK(Scroll);
|
|
sbx.SetLine(5);
|
|
sby.SetLine(GridCtrl::GD_ROW_HEIGHT);
|
|
|
|
fixed_cols = 1;
|
|
fixed_rows = 1;
|
|
|
|
total_cols = 0;
|
|
total_rows = 0;
|
|
|
|
minRowSelected = -1;
|
|
maxRowSelected = -1;
|
|
|
|
bains = 0;
|
|
coluid = 0;
|
|
rowuid = 0;
|
|
|
|
close.SetLabel(t_("Close"));
|
|
close <<= THISBACK(CloseGrid);
|
|
|
|
oldpos.Clear();
|
|
|
|
indicator = false;
|
|
resizing_cols = true;
|
|
resizing_rows = true;
|
|
resizing_fixed_cols = true;
|
|
resizing_fixed_rows = false;
|
|
resize_paint_mode = 2;
|
|
resize_col_mode = 1;
|
|
resize_row_mode = 0;
|
|
multi_select = false;
|
|
select_row = true;
|
|
moving_cols = false;
|
|
moving_rows = false;
|
|
dragging = false;
|
|
horz_grid = true;
|
|
vert_grid = true;
|
|
draw_last_horz_line = true;
|
|
draw_last_vert_line = true;
|
|
sorting = false;
|
|
live_cursor = false;
|
|
row_changing = true;
|
|
edit_mode = GE_ROW;
|
|
one_click_edit = false;
|
|
goto_first_edit = true;
|
|
coloring_mode = 0;
|
|
isedit = false;
|
|
genr_ctrls = 0;
|
|
edit_ctrls = false;
|
|
sorting = true;
|
|
sorting_multicol = true;
|
|
header = true;
|
|
|
|
cancel_update_cell = false;
|
|
cancel_update = false;
|
|
cancel_insert = false;
|
|
cancel_remove = false;
|
|
cancel_accept = false;
|
|
cancel_duplicate = false;
|
|
cancel_cursor = false;
|
|
cancel_move = false;
|
|
|
|
inserting = false;
|
|
appending = false;
|
|
duplicating = false;
|
|
removing = false;
|
|
accepting = false;
|
|
canceling = false;
|
|
moving = false;
|
|
navigating = false;
|
|
searching = false;
|
|
editing = false;
|
|
edits_in_new_row = true;
|
|
closing = false;
|
|
hiding = false;
|
|
clipboard = false;
|
|
extra_paste = true;
|
|
fixed_paste = false;
|
|
copy_allowed = true;
|
|
cut_allowed = true;
|
|
paste_allowed = true;
|
|
copy_column_names = false;
|
|
draw_focus = false;
|
|
ask_remove = false;
|
|
|
|
search_hide = true;
|
|
search_highlight = true;
|
|
search_highlight_first = false;
|
|
search_immediate = true;
|
|
search_case = false;
|
|
search_move_cursor = true;
|
|
search_display = true;
|
|
|
|
row_order = false;
|
|
row_data = false;
|
|
|
|
reject_null_row = true;
|
|
tab_changes_row = true;
|
|
tab_adds_row = false;
|
|
enter_like_tab = false;
|
|
keep_last_row = false;
|
|
remove_hides = false;
|
|
full_col_resizing = true;
|
|
full_row_resizing = false;
|
|
chameleon = false;
|
|
summary_row = false;
|
|
update_summary = true;
|
|
popups = true;
|
|
focus_lost_accepting = false;
|
|
|
|
mouse_move = false;
|
|
row_modified = 0;
|
|
|
|
valid_cursor = false;
|
|
|
|
curpos.x = curpos.y = -1;
|
|
oldcur.x = oldcur.y = -1;
|
|
curid.x = curid.y = -1;
|
|
ctrlid.x = ctrlid.y = -1;
|
|
ctrlpos.x = ctrlpos.y = -1;
|
|
osz.cx = osz.cy = -1;
|
|
livecur.x = livecur.y = -1;
|
|
leftpnt.x = leftpnt.y = -1;
|
|
shiftpos.x = shiftpos.y = -1;
|
|
|
|
fixed_width = 0;
|
|
fixed_height = 0;
|
|
total_width = 0;
|
|
total_height = 0;
|
|
summary_height = 0;
|
|
|
|
ItemRect &ir = vitems.Add();
|
|
ir.parent = this;
|
|
ir.edits = &edits;
|
|
items.Add();
|
|
|
|
/* add indicator, total_cols = 1 */
|
|
AddColumn("", 0);
|
|
|
|
shiftmode = false;
|
|
recalc_cols = false;
|
|
recalc_rows = false;
|
|
selected_rows = 0;
|
|
selected_items = 0;
|
|
|
|
WhenMenuBar = THISBACK(StdMenuBar);
|
|
WhenToolBar = THISBACK(StdToolBar);
|
|
|
|
find <<= THISBACK(DoFind);
|
|
|
|
StdAppend = THISBACK(DoAppend);
|
|
StdRemove = THISBACK(DoRemove);
|
|
StdInsert = THISBACK(DoInsertBefore);
|
|
StdDuplicate = THISBACK(DoDuplicate);
|
|
StdEdit = THISBACK(DoEdit);
|
|
|
|
newrow_inserted = false;
|
|
newrow_appended = false;
|
|
row_removed = false;
|
|
just_clicked = false;
|
|
|
|
call_whenchangecol = true;
|
|
call_whenchangerow = true;
|
|
call_whenremoverow = true;
|
|
call_whenupdaterow = true;
|
|
call_wheninsertrow = true;
|
|
|
|
sel_begin = false;
|
|
sel_end = false;
|
|
|
|
moving_header = false;
|
|
moving_body = false;
|
|
moving_allowed = false;
|
|
|
|
join_group = 0;
|
|
|
|
curSplitCol = oldSplitCol = -1;
|
|
curSplitRow = oldSplitRow = -1;
|
|
|
|
moveCol = moveRow = -1;
|
|
find_offset = 0;
|
|
|
|
scrollLeftRight = false;
|
|
|
|
fg_focus = SColorHighlightText;
|
|
bg_focus = SColorHighlight;
|
|
fg_select = Black;
|
|
bg_select = Color(217, 198, 251);
|
|
fg_live = SColorText;
|
|
bg_live = IsDarkColorFace() ? Blend(SColorHighlight, Black, 132) : Blend(SColorHighlight, White, 132);
|
|
fg_found = Color(0, 0, 0);
|
|
bg_found = Blend(SColorHighlight, Color(189,231,237), 200);
|
|
fg_even = SColorText;
|
|
fg_odd = SColorText;
|
|
bg_even = SColorPaper;
|
|
bg_odd = SColorPaper;
|
|
fg_grid = SColorShadow;
|
|
|
|
focused_ctrl = NULL;
|
|
focused_ctrl_id = -1;
|
|
focused_col = -1;
|
|
|
|
find.NullText(t_("Search"));
|
|
find.WhenBar = THISBACK(FindOptsBar);
|
|
|
|
/* frames added at the very end, otherwise there will be strange crash in optimal mode... */
|
|
sbx.AutoHide();
|
|
sby.AutoHide();
|
|
SetFrame(ViewFrame());
|
|
AddFrame(sbx);
|
|
AddFrame(sby);
|
|
Ctrl::Add(holder);
|
|
|
|
resize_panel_open = false;
|
|
resize_panel.WhenClose = Proxy(WhenClose);
|
|
|
|
resizing = false;
|
|
selecting = false;
|
|
is_clipboard = false;
|
|
enabled = true;
|
|
sync_flag = 0;
|
|
paint_flag = 0;
|
|
}
|
|
|
|
GridCtrl::~GridCtrl()
|
|
{
|
|
delete orgdisp;
|
|
}
|
|
|
|
void GridCtrl::StdToolBar(Bar &bar)
|
|
{
|
|
bool e = IsEnabled();
|
|
bool c = e && IsCursor();
|
|
bool d = c && IsRowEditable();
|
|
|
|
if(appending)
|
|
bar.Add(e, t_("Append"), GridImg::Append(), StdAppend);
|
|
|
|
if(inserting)
|
|
bar.Add(c, t_("Insert "), GridImg::Insert(), StdInsert);
|
|
|
|
if(duplicating)
|
|
bar.Add(d && !isedit, t_("Duplicate"), GridImg::Duplicate(), StdDuplicate);
|
|
|
|
if(removing)
|
|
bar.Add(d && (keep_last_row ? GetCount() > 1 : true), t_("Delete "), GridImg::Delete(), StdRemove);
|
|
|
|
if(editing)
|
|
{
|
|
bar.Add(!isedit && d, t_("Edit"), GridImg::Modify(), StdEdit);
|
|
if(accepting)
|
|
bar.Add(isedit, t_("Accept"), GridImg::Commit(), THISBACK(DoEndEdit));
|
|
if(canceling)
|
|
bar.Add(isedit, t_("Cancel"), GridImg::Cancel(), THISBACK(DoCancelEdit));
|
|
}
|
|
|
|
if(searching)
|
|
{
|
|
if(inserting || appending || removing)
|
|
bar.Separator();
|
|
FindBar(bar, 150);
|
|
}
|
|
|
|
if(moving)
|
|
{
|
|
if(searching)
|
|
bar.Separator();
|
|
|
|
bar.Add(c, t_("Move up"), GridImg::MoveUp(), THISBACK(DoSwapUp));
|
|
bar.Add(c, t_("Move down"), GridImg::MoveDn(), THISBACK(DoSwapDown));
|
|
}
|
|
|
|
if(navigating)
|
|
{
|
|
if(!closing)
|
|
bar.GapRight();
|
|
else
|
|
bar.Separator();
|
|
|
|
NavigatingBar(bar);
|
|
}
|
|
|
|
if(closing)
|
|
{
|
|
bar.GapRight();
|
|
bar.Add(close, 76, 24);
|
|
}
|
|
}
|
|
|
|
void GridCtrl::FindBar(Bar &bar, int cx)
|
|
{
|
|
bar.Add(find, cx);
|
|
}
|
|
|
|
void GridCtrl::InfoBar(Bar &bar, int cx)
|
|
{
|
|
bar.Add(info, cx);
|
|
}
|
|
|
|
void GridCtrl::SetToolBarInfo(String inf)
|
|
{
|
|
info.SetLabel(inf);
|
|
}
|
|
|
|
void GridCtrl::NavigatingBar(Bar &bar)
|
|
{
|
|
bar.Add(RowFormat(t_("First %s")), GridImg::FirstRec(), THISBACK(DoGoBegin));
|
|
bar.Add(RowFormat(t_("Previous %s")), GridImg::PrevRec(), THISBACK(DoGoPrev));
|
|
bar.Add(RowFormat(t_("Next %s")), GridImg::NextRec(), THISBACK(DoGoNext));
|
|
bar.Add(RowFormat(t_("Last %s")), GridImg::LastRec(), THISBACK(DoGoEnd));
|
|
}
|
|
|
|
GridCtrl& GridCtrl::SetToolBar(bool b, int align, int frame)
|
|
{
|
|
RemoveFrame(bar);
|
|
|
|
if(!b)
|
|
return *this;
|
|
|
|
InsertFrame(frame, bar.Align(align));
|
|
bar.SetStyle(ToolBar::StyleDefault());
|
|
|
|
if(frame == 1)
|
|
switch(align)
|
|
{
|
|
case BarCtrl::BAR_TOP:
|
|
RemoveFrame(TopSeparatorFrame());
|
|
InsertFrame(2, TopSeparatorFrame());
|
|
break;
|
|
case BarCtrl::BAR_BOTTOM:
|
|
RemoveFrame(BottomSeparatorFrame());
|
|
InsertFrame(2, BottomSeparatorFrame());
|
|
break;
|
|
case BarCtrl::BAR_LEFT:
|
|
RemoveFrame(LeftSeparatorFrame());
|
|
InsertFrame(2, LeftSeparatorFrame());
|
|
break;
|
|
case BarCtrl::BAR_RIGHT:
|
|
RemoveFrame(RightSeparatorFrame());
|
|
InsertFrame(2, RightSeparatorFrame());
|
|
break;
|
|
}
|
|
WhenToolBar(bar);
|
|
return *this;
|
|
}
|
|
|
|
GridCtrl& GridCtrl::ResizePanel(bool b)
|
|
{
|
|
resize_panel_open = b;
|
|
RemoveFrame(resize_panel);
|
|
RemoveFrame(BottomSeparatorFrame());
|
|
if(!b)
|
|
return *this;
|
|
InsertFrame(1, resize_panel);
|
|
InsertFrame(2, BottomSeparatorFrame());
|
|
return *this;
|
|
}
|
|
|
|
void GridCtrl::FindOptsBar(Bar &bar)
|
|
{
|
|
bar.Add(t_("Immediate search"), THISBACK1(SetFindOpts, 0)).Check(search_immediate);
|
|
bar.Add(t_("Hide rows"), THISBACK1(SetFindOpts, 1)).Check(search_hide);
|
|
bar.Add(t_("Highlight found cells"), THISBACK1(SetFindOpts, 2)).Check(search_highlight);
|
|
bar.Add(t_("Case sensitive"), THISBACK1(SetFindOpts, 3)).Check(search_case);
|
|
}
|
|
|
|
void GridCtrl::SetFindOpts(int n)
|
|
{
|
|
switch(n)
|
|
{
|
|
case 0:
|
|
search_immediate = !search_immediate;
|
|
if(!search_immediate)
|
|
{
|
|
find <<= THISBACK(Nothing);
|
|
find.WhenEnter = THISBACK(DoFind);
|
|
}
|
|
else
|
|
{
|
|
find <<= THISBACK(DoFind);
|
|
find.WhenEnter = THISBACK(Nothing);
|
|
}
|
|
break;
|
|
case 1:
|
|
search_hide = !search_hide;
|
|
if(!String(~find).IsEmpty())
|
|
{
|
|
if(!search_hide)
|
|
ShowRows();
|
|
else
|
|
DoFind();
|
|
}
|
|
break;
|
|
case 2:
|
|
search_highlight = !search_highlight;
|
|
if(!search_highlight)
|
|
{
|
|
ClearFound(false);
|
|
Refresh();
|
|
}
|
|
else
|
|
DoFind();
|
|
break;
|
|
case 3:
|
|
search_case = !search_case;
|
|
DoFind();
|
|
break;
|
|
}
|
|
}
|
|
|
|
String GridCtrl::RowFormat(const char *s)
|
|
{
|
|
String row = t_("row");
|
|
return Sprintf(s, ~row);
|
|
}
|
|
|
|
void GridCtrl::StdMenuBar(Bar &bar)
|
|
{
|
|
bool c = IsCursor();
|
|
bool e = c && IsRowEditable();
|
|
bool isitem = false;
|
|
|
|
if(inserting)
|
|
{
|
|
if(bains == 0)
|
|
{
|
|
bar.Add(c, t_("Insert "), StdInsert)
|
|
.Image(GridImg::Insert())
|
|
.Help(RowFormat(t_("Insert a new %s into the table.")))
|
|
.Key(K_INSERT);
|
|
}
|
|
else if(bains == 1)
|
|
{
|
|
bar.Add(c, t_("Insert before"), THISBACK(DoInsertBefore))
|
|
.Image(GridImg::InsertBefore())
|
|
.Help(RowFormat(t_("Insert a new %s into the table before current")))
|
|
.Key(K_INSERT);
|
|
bar.Add(c, t_("Insert after"), THISBACK(DoInsertAfter))
|
|
.Image(GridImg::InsertAfter())
|
|
.Help(RowFormat(t_("Insert a new %s into the table after current")))
|
|
.Key(K_ALT_INSERT);
|
|
}
|
|
else if(bains == 2)
|
|
{
|
|
bar.Add(c, t_("Insert after"), THISBACK(DoInsertAfter))
|
|
.Image(GridImg::InsertAfter())
|
|
.Help(RowFormat(t_("Insert a new %s into the table after current")))
|
|
.Key(K_INSERT);
|
|
bar.Add(c, t_("Insert before"), THISBACK(DoInsertBefore))
|
|
.Image(GridImg::InsertBefore())
|
|
.Help(RowFormat(t_("Insert a new %s into the table before current")))
|
|
.Key(K_ALT_INSERT);
|
|
}
|
|
isitem = true;
|
|
}
|
|
|
|
if(appending)
|
|
{
|
|
bar.Add(t_("Append"), StdAppend)
|
|
.Image(GridImg::Append())
|
|
.Help(RowFormat(t_("Append a new %s at the end of the table.")))
|
|
.Key(inserting ? (dword) K_CTRL_INSERT : (dword) K_INSERT);
|
|
|
|
isitem = true;
|
|
}
|
|
|
|
if(duplicating)
|
|
{
|
|
bar.Add(c, t_("Duplicate"), THISBACK(DoDuplicate))
|
|
.Image(GridImg::Duplicate())
|
|
.Help(RowFormat(t_("Duplicate current table %s.")))
|
|
.Key(K_CTRL_D);
|
|
|
|
isitem = true;
|
|
}
|
|
|
|
if(editing)
|
|
{
|
|
bar.Add(!isedit && e, t_("Edit"), StdEdit)
|
|
.Image(GridImg::Modify())
|
|
.Help(RowFormat(t_("Edit active %s.")))
|
|
.Key(K_ENTER);
|
|
|
|
isitem = true;
|
|
}
|
|
|
|
if(removing)
|
|
{
|
|
RemovingMenu(bar);
|
|
isitem = true;
|
|
}
|
|
|
|
if(moving)
|
|
{
|
|
MovingMenu(bar);
|
|
isitem = true;
|
|
}
|
|
|
|
if(multi_select || !select_row)
|
|
{
|
|
SelectMenu(bar);
|
|
isitem = true;
|
|
}
|
|
|
|
if(clipboard)
|
|
{
|
|
if(isitem)
|
|
bar.Separator();
|
|
ClipboardMenu(bar);
|
|
isitem = true;
|
|
}
|
|
|
|
if(hiding)
|
|
{
|
|
if(isitem)
|
|
bar.Separator();
|
|
ColumnsMenu(bar);
|
|
}
|
|
}
|
|
|
|
void GridCtrl::RemovingMenu(Bar &bar)
|
|
{
|
|
bool c = IsCursor() && IsRowEditable();
|
|
bar.Add(c && (keep_last_row ? GetCount() > 1 : true), t_("Delete "), StdRemove)
|
|
.Image(GridImg::Delete())
|
|
.Help(RowFormat(t_("Delete active %s.")))
|
|
.Key(K_DELETE);
|
|
}
|
|
|
|
void GridCtrl::MovingMenu(Bar &bar)
|
|
{
|
|
bool c = IsCursor();
|
|
bar.Add(c && curpos.y > fixed_rows, t_("Move up"), THISBACK(DoSwapUp))
|
|
.Image(GridImg::MoveUp())
|
|
.Key(K_CTRL_UP);
|
|
bar.Add(c && curpos.y >= fixed_rows && curpos.y < total_rows - 1, t_("Move down"), THISBACK(DoSwapDown))
|
|
.Image(GridImg::MoveDn())
|
|
.Key(K_CTRL_DOWN);
|
|
}
|
|
|
|
void GridCtrl::SelectMenu(Bar &bar)
|
|
{
|
|
bar.Add(total_rows > fixed_rows, RowFormat(t_("Select all")), THISBACK(DoSelectAll))
|
|
.Image(GridImg::SelectAll())
|
|
.Help(t_("Select all table rows"))
|
|
.Key(K_CTRL_A);
|
|
}
|
|
|
|
void GridCtrl::ColumnsMenu(Bar &bar)
|
|
{
|
|
bar.Add(t_("Columns"), THISBACK(ColumnList));
|
|
}
|
|
|
|
void GridCtrl::ColumnList(Bar &bar)
|
|
{
|
|
int cnt = 0;
|
|
for(int i = fixed_cols; i < total_cols; i++)
|
|
if(!hitems[i].index && !hitems[i].hidden)
|
|
cnt++;
|
|
|
|
for(int i = fixed_cols; i < total_cols; i++)
|
|
{
|
|
if(!hitems[i].index)
|
|
bar.Add((String) items[0][hitems[i].id].val, THISBACK1(MenuHideColumn, i))
|
|
.Check(!hitems[i].hidden)
|
|
.Enable(cnt > 1 || (cnt == 1 && hitems[i].hidden));
|
|
}
|
|
}
|
|
|
|
void GridCtrl::ClipboardMenu(Bar &bar)
|
|
{
|
|
bool c = IsCursor();
|
|
bool s = c || IsSelection();
|
|
bar.Add(t_("Copy"), THISBACK(DoCopy)).Image(CtrlImg::copy()).Key(K_CTRL_C).Enable(s && copy_allowed);
|
|
bar.Add(t_("Cut"), THISBACK(Nothing)).Image(CtrlImg::cut()).Key(K_CTRL_X).Enable(s && cut_allowed);
|
|
bar.Add(t_("Paste"), THISBACK(DoPaste)).Image(CtrlImg::paste()).Key(K_CTRL_V).Enable(c && paste_allowed && IsClipboardAvailable());
|
|
if(extra_paste)
|
|
bar.Add(t_("Paste as"), THISBACK(PasteAsMenu));
|
|
}
|
|
|
|
void GridCtrl::PasteAsMenu(Bar &bar)
|
|
{
|
|
bool c = IsCursor();
|
|
bool s = IsClipboardAvailable() && !fixed_paste;
|
|
bar.Add(t_("appended"), THISBACK(DoPasteAppendedRows)).Key(K_CTRL_E).Enable(s && paste_allowed);
|
|
bar.Add(t_("inserted"), THISBACK(DoPasteInsertedRows)).Key(K_CTRL_I).Enable(c && paste_allowed && s);
|
|
}
|
|
|
|
bool GridCtrl::IsClipboardAvailable()
|
|
{
|
|
return IsClipboardFormatAvailable<GridClipboard>() ||
|
|
IsClipboardAvailableText();
|
|
}
|
|
|
|
GridClipboard GridCtrl::GetClipboard()
|
|
{
|
|
GridClipboard gc = ReadClipboardFormat<GridClipboard>();
|
|
return gc;
|
|
}
|
|
|
|
void GridCtrl::SetClipboard(bool all, bool silent)
|
|
{
|
|
if(!clipboard)
|
|
return;
|
|
|
|
GridClipboard gc;
|
|
|
|
Point minpos(total_cols, total_rows);
|
|
Point maxpos(fixed_cols, fixed_rows);
|
|
|
|
String body;
|
|
Vector<int> sc;
|
|
sc.Set(0, -1, total_cols);
|
|
|
|
int prev_row = -1;
|
|
|
|
for(int i = fixed_rows; i < total_rows; i++)
|
|
{
|
|
bool row_selected = select_row && IsSelected(i, false);
|
|
|
|
for(int j = fixed_cols; j < total_cols; j++)
|
|
{
|
|
if(all || row_selected || IsSelected(i, j, false))
|
|
{
|
|
if(prev_row < 0)
|
|
prev_row = i;
|
|
|
|
GridClipboard::ClipboardData &d = gc.data.Add();
|
|
d.col = j;
|
|
d.row = i;
|
|
d.v = Get0(i, j);
|
|
|
|
if(i < minpos.y) minpos.y = i;
|
|
else if(i > maxpos.y) maxpos.y = i;
|
|
if(j < minpos.x) minpos.x = j;
|
|
else if(j > maxpos.x) maxpos.x = j;
|
|
|
|
if(i != prev_row)
|
|
{
|
|
body += "\r\n";
|
|
prev_row = i;
|
|
}
|
|
body += GetStdConvertedColumn(j, d.v).ToString() + '\t';
|
|
|
|
sc[j] = 1;
|
|
}
|
|
}
|
|
|
|
int cnt = body.GetCount();
|
|
if(cnt > 0 && body[cnt - 1] == '\t')
|
|
body.Remove(cnt - 1);
|
|
}
|
|
|
|
String header;
|
|
|
|
if(copy_column_names)
|
|
{
|
|
for(int i = 0; i < sc.GetCount(); i++)
|
|
if(sc[i] >= 0)
|
|
header += hitems[i].GetName() + '\t';
|
|
|
|
int cnt = header.GetCount();
|
|
if(cnt > 0 && header[cnt - 1] == '\t')
|
|
header.Remove(cnt - 1);
|
|
header += "\r\n";
|
|
}
|
|
|
|
gc.minpos = minpos;
|
|
gc.maxpos = maxpos;
|
|
|
|
bool row_selected = select_row && IsSelected(curpos.y, false);
|
|
gc.shiftmode = row_selected ? true : shiftmode;
|
|
|
|
WriteClipboardFormat(gc);
|
|
AppendClipboardText(header + body);
|
|
|
|
if(!silent)
|
|
{
|
|
Color c0 = bg_select;
|
|
Color c1 = White;
|
|
Color c2 = bg_focus;
|
|
|
|
for(int i = 0; i < 256; i += 64)
|
|
{
|
|
bg_select = Blend(c0, c1, i);
|
|
bg_focus = Blend(c2, c1, i);
|
|
Refresh(); Sync();
|
|
Sleep(1);
|
|
}
|
|
|
|
for(int i = 0; i < 256; i += 32)
|
|
{
|
|
bg_select = Blend(c1, c0, i);
|
|
bg_focus = Blend(c1, c2, i);
|
|
Refresh(); Sync();
|
|
Sleep(1);
|
|
}
|
|
}
|
|
}
|
|
|
|
void GridCtrl::PasteCallbacks(bool new_row)
|
|
{
|
|
if(new_row)
|
|
{
|
|
LOG("WhenInsertRow() - paste");
|
|
#ifdef LOG_CALLBACKS
|
|
LGR(2, "WhenInsertRow() - paste");
|
|
#endif
|
|
WhenInsertRow();
|
|
}
|
|
else
|
|
{
|
|
#ifdef LOG_CALLBACKS
|
|
LGR(2, "WhenUpdateRow() - paste");
|
|
#endif
|
|
WhenUpdateRow();
|
|
}
|
|
}
|
|
|
|
void GridCtrl::Paste(int mode)
|
|
{
|
|
if(!clipboard)
|
|
return;
|
|
|
|
GridClipboard gc = GetClipboard();
|
|
|
|
bool is_gc = !gc.data.IsEmpty();
|
|
bool is_tc = IsClipboardAvailableText();
|
|
|
|
if(!is_gc && !is_tc)
|
|
return;
|
|
|
|
if(is_gc && select_row && !gc.shiftmode)
|
|
return;
|
|
|
|
Point cp(curpos);
|
|
|
|
if(cp.x < 0 || select_row)
|
|
cp.x = fixed_cols;
|
|
if(cp.y < 0)
|
|
cp.y = fixed_rows;
|
|
|
|
Vector<String> lines;
|
|
|
|
if(is_tc && !is_gc)
|
|
lines = Upp::Split(FromUnicode(ReadClipboardUnicodeText()), '\n');
|
|
|
|
if(mode == 1)
|
|
{
|
|
int dy = is_gc ? gc.maxpos.y - gc.minpos.y + 1
|
|
: lines.GetCount();
|
|
Insert0(curpos.y, dy);
|
|
curpos.y += dy;
|
|
}
|
|
else if(mode == 2)
|
|
cp.y = total_rows;
|
|
|
|
int lc = -1, lr = -1;
|
|
|
|
int tr = total_rows;
|
|
|
|
if(!is_gc)
|
|
{
|
|
if(is_tc)
|
|
{
|
|
int pr = 0;
|
|
bool new_row = false;
|
|
|
|
for(int i = 0; i < lines.GetCount(); i++)
|
|
{
|
|
String line = TrimRight(lines[i]);
|
|
Vector<String> cells = Upp::Split(line, '\t', false);
|
|
for(int j = 0; j < cells.GetCount(); j++)
|
|
{
|
|
int r = i;
|
|
int c = j;
|
|
|
|
if(r > pr)
|
|
{
|
|
PasteCallbacks(new_row);
|
|
pr = r;
|
|
}
|
|
|
|
if(cp.x + c < total_cols)
|
|
{
|
|
lc = cp.x + c;
|
|
lr = cp.y + r;
|
|
|
|
rowidx = lr;
|
|
|
|
new_row = lr >= tr || mode > 0;
|
|
|
|
if(fixed_paste && new_row)
|
|
break;
|
|
|
|
Value v(cells[j]);
|
|
WhenPasteCell(lr - fixed_rows, lc - fixed_cols, v);
|
|
Set0(lr, lc, v, true);
|
|
}
|
|
|
|
if(i == lines.GetCount() - 1 && j == cells.GetCount() - 1)
|
|
PasteCallbacks(new_row);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
else if(!select_row && gc.shiftmode)
|
|
{
|
|
lc = cp.x;
|
|
lr = cp.y;
|
|
|
|
for(int i = 0; i < gc.data.GetCount(); i++)
|
|
{
|
|
Set0(lr, lc, gc.data[i].v, true);
|
|
|
|
bool data_end = i == gc.data.GetCount() - 1;
|
|
bool new_row = ++lc > total_cols - 1;
|
|
if(new_row || data_end)
|
|
{
|
|
bool nr = lr + 1 >= tr;
|
|
if(new_row && nr && fixed_paste)
|
|
break;
|
|
|
|
PasteCallbacks(new_row && (nr || mode > 0));
|
|
|
|
if(!data_end)
|
|
{
|
|
lc = fixed_cols;
|
|
++lr;
|
|
rowidx = lr;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
else
|
|
{
|
|
int pr = gc.data[0].row - gc.minpos.y;
|
|
bool new_row = false;
|
|
|
|
for(int i = 0; i < gc.data.GetCount(); i++)
|
|
{
|
|
int r = gc.data[i].row - gc.minpos.y;
|
|
int c = gc.data[i].col - gc.minpos.x;
|
|
|
|
if(r > pr)
|
|
{
|
|
PasteCallbacks(new_row);
|
|
pr = r;
|
|
}
|
|
|
|
if(cp.x + c < total_cols)
|
|
{
|
|
lc = cp.x + c;
|
|
lr = cp.y + r;
|
|
|
|
rowidx = lr;
|
|
|
|
new_row = lr >= tr || mode > 0;
|
|
|
|
if(fixed_paste && new_row)
|
|
break;
|
|
Set0(lr, lc, gc.data[i].v, true);
|
|
}
|
|
|
|
if(i == gc.data.GetCount() - 1)
|
|
PasteCallbacks(new_row);
|
|
}
|
|
}
|
|
|
|
if(lc >= 0 && lr >= 0)
|
|
{
|
|
SetCursor0(lc, lr);
|
|
sby.Set(vitems[curpos.y].nBottom() - GetSize().cy);
|
|
}
|
|
WhenPaste();
|
|
ClearSelection();
|
|
}
|
|
|
|
void GridCtrl::DoCopy()
|
|
{
|
|
SetClipboard();
|
|
}
|
|
|
|
void GridCtrl::DoPaste()
|
|
{
|
|
Paste(0);
|
|
}
|
|
|
|
void GridCtrl::DoPasteInsertedRows()
|
|
{
|
|
Paste(1);
|
|
}
|
|
|
|
void GridCtrl::DoPasteAppendedRows()
|
|
{
|
|
Paste(2);
|
|
}
|
|
|
|
void GridCtrl::SetOrder()
|
|
{
|
|
row_order = true;
|
|
WhenChangeOrder();
|
|
}
|
|
|
|
void GridCtrl::Nothing()
|
|
{
|
|
}
|
|
|
|
void GridCtrl::DrawLine(bool iniLine, bool delLine)
|
|
{
|
|
if((resizeCol || resizeRow) && resize_paint_mode < 2)
|
|
{
|
|
int sx = resize_paint_mode == 1 ? fixed_width : 0;
|
|
int sy = resize_paint_mode == 1 ? fixed_height : 0;
|
|
ViewDraw w(this);
|
|
Size sz = GetSize();
|
|
|
|
Point curPnt;
|
|
static Point oldPnt = curPnt;
|
|
|
|
if(resizeCol)
|
|
{
|
|
curPnt.x = hitems[splitCol].nRight(sbx) - 1;
|
|
if(delLine) w.DrawRect(oldPnt.x, sy, 1, sz.cy, InvertColor());
|
|
if(iniLine) w.DrawRect(curPnt.x, sy, 1, sz.cy, InvertColor());
|
|
}
|
|
if(resizeRow)
|
|
{
|
|
curPnt.y = vitems[splitRow].nBottom(sby) - 1;
|
|
if(delLine) w.DrawRect(sx, oldPnt.y, sz.cx, 1, InvertColor());
|
|
if(iniLine) w.DrawRect(sx, curPnt.y, sz.cx, 1, InvertColor());
|
|
}
|
|
|
|
oldPnt = curPnt;
|
|
}
|
|
}
|
|
|
|
Value GridCtrl::GetItemValue(const Item& it, int id, const ItemRect& hi, const ItemRect& vi)
|
|
{
|
|
Value val = hi.IsConvertion() && vi.IsConvertion()
|
|
? GetConvertedColumn(id, it.val)
|
|
: it.val;
|
|
|
|
return val;
|
|
}
|
|
|
|
Value GridCtrl::GetAttrTextVal(const Value& val)
|
|
{
|
|
if(IsType<AttrText>(val))
|
|
{
|
|
const AttrText& t = ValueTo<AttrText>(val);
|
|
return t.text;
|
|
}
|
|
return val;
|
|
}
|
|
|
|
void GridCtrl::GetItemAttrs(const Item& it, const Value& value, int r, int c, const ItemRect& vi, const ItemRect& hi, dword& style, GridDisplay*& gd, Color& fg, Color& bg, Font& fnt)
|
|
{
|
|
if(!IsNull(vi.fg))
|
|
fg = vi.fg;
|
|
else if(!IsNull(hi.fg))
|
|
fg = hi.fg;
|
|
|
|
if(!IsNull(vi.bg))
|
|
bg = vi.bg;
|
|
else if(!IsNull(hi.bg))
|
|
bg = hi.bg;
|
|
|
|
fnt = StdFont();
|
|
|
|
if(r < fixed_rows && !IsNull(hi.hfnt))
|
|
fnt = hi.hfnt;
|
|
else if(c < fixed_cols && !IsNull(vi.hfnt))
|
|
fnt = vi.hfnt;
|
|
else if(!IsNull(vi.fnt))
|
|
fnt = vi.fnt;
|
|
else if(!IsNull(hi.fnt))
|
|
fnt = hi.fnt;
|
|
|
|
GridDisplay * hd = hi.display;
|
|
GridDisplay * vd = vi.display;
|
|
gd = display;
|
|
if(!hi.ignore_display && !vi.ignore_display)
|
|
gd = vd ? vd : (hd ? hd : (it.display ? it.display : display));
|
|
|
|
gd->SetLeftImage(Null);
|
|
|
|
const Value& val = IsNull(value) ? it.val : value;
|
|
|
|
if(IsType<AttrText>(val))
|
|
{
|
|
const AttrText& t = ValueTo<AttrText>(val);
|
|
|
|
if(!IsNull(t.paper)) bg = t.paper;
|
|
if(!IsNull(t.ink)) fg = t.ink;
|
|
if(!IsNull(t.font)) fnt = t.font;
|
|
dword s = 0;
|
|
if(!IsNull(t.align))
|
|
{
|
|
if(t.align == ALIGN_LEFT)
|
|
s = GD::LEFT;
|
|
else if(t.align == ALIGN_RIGHT)
|
|
s = GD::RIGHT;
|
|
else if(t.align == ALIGN_CENTER)
|
|
s = GD::HCENTER;
|
|
style &= ~GD::HALIGN;
|
|
style |= s;
|
|
}
|
|
if(!IsNull(t.img))
|
|
gd->SetLeftImage(t.img);
|
|
}
|
|
|
|
}
|
|
|
|
GridCtrl::Item& GridCtrl::GetItemSize(int &r, int &c, int &x, int &y, int &cx, int &cy, bool &skip, bool relx, bool rely)
|
|
{
|
|
int idx = hitems[c].id;
|
|
int idy = vitems[r].id;
|
|
|
|
int dx = 0;
|
|
int dy = 0;
|
|
|
|
Item *it = &items[idy][idx];
|
|
|
|
if(it->isjoined)
|
|
{
|
|
int group = it->group;
|
|
it = &items[it->idy][it->idx];
|
|
skip = it->paint_flag == paint_flag;
|
|
it->paint_flag = paint_flag;
|
|
if(skip)
|
|
return *it;
|
|
|
|
while(c >= 0 && items[idy][hitems[c].id].group == group) --c; ++c;
|
|
while(r >= 0 && items[vitems[r].id][idx].group == group) --r; ++r;
|
|
|
|
dx = it->cx;
|
|
dy = it->cy;
|
|
}
|
|
else
|
|
skip = false;
|
|
|
|
x = hitems[c].nLeft();
|
|
y = vitems[r].nTop();
|
|
cx = hitems[c + dx].nRight() - x;
|
|
cy = vitems[r + dy].nBottom() - y;
|
|
|
|
if(!draw_last_vert_line && c == total_cols - 1 && r >= fixed_rows) cx += 1;
|
|
if(!draw_last_horz_line && r == total_rows - 1 && c >= fixed_cols) cy += 1;
|
|
|
|
if(relx) x -= sbx;
|
|
if(rely) y -= sby;
|
|
|
|
return *it;
|
|
}
|
|
|
|
void GridCtrl::Paint(Draw &w)
|
|
{
|
|
static int paintcnt = 0;
|
|
|
|
Font stdfont(StdFont());
|
|
|
|
Size sz = GetSize();
|
|
Rect rc = Rect(sz); //w.GetClip() - it always returns view rect now. bug??
|
|
|
|
if(!ready)
|
|
{
|
|
w.DrawRect(rc, SColorPaper);
|
|
return;
|
|
}
|
|
|
|
int i, j, cx, cy, x, y;
|
|
bool skip;
|
|
Rect r;
|
|
|
|
LG(0, "---- Paint(%d)", ++paintcnt);
|
|
|
|
if(total_cols <= 1 || total_rows == 0)
|
|
{
|
|
LG(0, "---- Paint(%d) Empty.", paintcnt);
|
|
w.DrawRect(sz, SColorPaper);
|
|
return;
|
|
}
|
|
|
|
if(UpdateCols() || UpdateRows())
|
|
UpdateSizes();
|
|
|
|
if(firstCol < 0) firstCol = GetFirstVisCol(fixed_width);
|
|
if(firstRow < 0) firstRow = GetFirstVisRow(fixed_height);
|
|
|
|
LG(0, "firstCol %d", firstCol);
|
|
LG(0, "firstRow %d", firstRow);
|
|
|
|
int en = IsShowEnabled() ? 0 : GD::READONLY;
|
|
|
|
//---------------------------------------------------------------------------------------
|
|
|
|
if(fixed_width > 0 && fixed_height > 0)
|
|
{
|
|
w.Clip(0, 0, fixed_width, fixed_height);
|
|
dword style = chameleon ? GD::CHAMELEON : 0;
|
|
|
|
display->PaintFixed(w, 1, 1, 0, 0, fixed_width, fixed_height,
|
|
Value(""),
|
|
style, stdfont, false, false,
|
|
0, -1, 0,
|
|
true);
|
|
w.End();
|
|
}
|
|
|
|
r.Set(fixed_width, 0, sz.cx, summary_row ? sz.cy : fixed_height);
|
|
|
|
if(w.IsPainting(r) && total_cols > 1)
|
|
{
|
|
LG(0, "Top header");
|
|
w.Clip(r);
|
|
|
|
x = hitems[total_cols - 1].nRight(sbx);
|
|
int rx = x;
|
|
|
|
int firstcol = indicator ? 0 : (fixed_cols > 1 ? 1 : firstVisCol);
|
|
if(firstCol < 0) firstCol = 0;
|
|
int jfc = chameleon ? 0 : firstCol;
|
|
|
|
for(i = 0; i < fixed_rows; i++)
|
|
{
|
|
for(j = jfc; j < total_cols; j++)
|
|
{
|
|
ItemRect& hi = hitems[j];
|
|
|
|
if(hi.hidden)
|
|
continue;
|
|
|
|
int jj = j;
|
|
Item &it = GetItemSize(i, j, x, y, cx, cy, skip, true, false);
|
|
if(skip)
|
|
continue;
|
|
|
|
if(x >= rc.right)
|
|
break;
|
|
|
|
if(w.IsPainting(x, y, cx, cy))
|
|
{
|
|
GridDisplay * gd = it.display ? it.display : display;
|
|
|
|
dword style = hi.style | hi.halign;
|
|
if(i > 0) style &= ~GD::HIGHLIGHT;
|
|
if(chameleon)
|
|
style |= GD::CHAMELEON;
|
|
|
|
Font fnt(stdfont);
|
|
gd->SetLeftImage(hi.img);
|
|
gd->ReverseSortIcon(reverse_sort_icon);
|
|
gd->PaintFixed(w, jj == firstcol, i == 0, x, y, cx, cy,
|
|
i == 0 ? it.val : GetConvertedColumn(hi.id, it.val),
|
|
style | en, IsNull(hi.hfnt) ? fnt : hi.hfnt, false, false,
|
|
i == 0 ? hi.sortmode : 0,
|
|
hi.sortcol,
|
|
sortOrder.GetCount(),
|
|
true);
|
|
|
|
it.rcx = gd->real_size.cx;
|
|
it.rcy = gd->real_size.cy;
|
|
}
|
|
|
|
if(summary_row && i == 0)
|
|
{
|
|
cy = GD_HDR_HEIGHT;
|
|
y = sz.cy - cy;
|
|
|
|
if(w.IsPainting(x, y, cx, cy))
|
|
{
|
|
Item &it = summary[hi.id];
|
|
GridDisplay * gd = it.display ? it.display : display;
|
|
|
|
dword style = en | hi.halign;
|
|
if(chameleon)
|
|
style |= GD::CHAMELEON;
|
|
|
|
String s;
|
|
if(hi.sop != SOP_NONE && !hi.sopfrm.IsEmpty() && !IsNull(it.val))
|
|
s = Format(hi.sopfrm, it.val);
|
|
else
|
|
s = IsString(it.val) ? it.val : StdConvert().Format(it.val);
|
|
gd->SetLeftImage(Null);
|
|
//gd->PaintFixed(w, jj == firstcol, i == 0, x, y, cx, cy, s,
|
|
// style | en, stdfont, false, false, 0, -1, 0, true);
|
|
Color fg = Black;
|
|
Color bg = Blend(Blue, White, 240);
|
|
w.DrawRect(x, y, cx, 1, Gray);
|
|
Font fnt(stdfont);
|
|
|
|
if(style & GD::READONLY)
|
|
{
|
|
bg = Blend(bg, SGray(), 40);
|
|
fg = Blend(fg, SGray(), 200);
|
|
}
|
|
|
|
gd->Paint(w, x, y + 1, cx, cy - 1, s, style, fg, bg, fnt.Bold(), false, 0, 0);
|
|
|
|
it.rcx = gd->real_size.cx;
|
|
it.rcy = gd->real_size.cy;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
if(rx < sz.cx || chameleon)
|
|
{
|
|
int cx = sz.cx - rx + 1;
|
|
dword style = 0;
|
|
if(chameleon)
|
|
{
|
|
cx = max(10, cx);
|
|
style = GD::CHAMELEON;
|
|
}
|
|
display->PaintFixed(w, 0, 1, rx, 0, cx, fixed_height,
|
|
Value(""),
|
|
style, stdfont, false, false,
|
|
0, -1, 0,
|
|
true);
|
|
if(summary_row)
|
|
{
|
|
Color fg = Black;
|
|
Color bg = Blend(Blue, White, 240);
|
|
w.DrawRect(rx, y, cx, 1, Gray);
|
|
|
|
if(style & GD::READONLY)
|
|
{
|
|
bg = Blend(bg, SGray(), 40);
|
|
fg = Blend(fg, SGray(), 200);
|
|
}
|
|
display->Paint(w, rx, y + 1, cx, GD_HDR_HEIGHT - 1, Value(""), style, fg, bg, stdfont, false, 0, 0);
|
|
}
|
|
}
|
|
|
|
w.End();
|
|
}
|
|
//---------------------------------------------------------------------------------------
|
|
|
|
bool can_paint = firstCol >= 0 && firstRow >= 0;
|
|
r.Set(0, fixed_height, fixed_width, sz.cy);
|
|
|
|
if(can_paint && w.IsPainting(r))
|
|
{
|
|
LG(0, "Left header");
|
|
w.Clip(r);
|
|
y = vitems[total_rows - 1].nBottom(sby);
|
|
|
|
if(y < sz.cy)
|
|
w.DrawRect(Rect(0, y, fixed_width, sz.cy - summary_height), SColorPaper);
|
|
|
|
for(i = 0; i < fixed_cols; i++)
|
|
{
|
|
bool firstx = (i == !indicator);
|
|
bool indicator = (i == 0);
|
|
int id = hitems[i].id;
|
|
|
|
for(j = firstRow; j < total_rows; j++)
|
|
{
|
|
ItemRect& vi = vitems[j];
|
|
|
|
if(vi.hidden)
|
|
continue;
|
|
|
|
Item &it = GetItemSize(j, i, x, y, cx, cy, skip, false, true);
|
|
|
|
if(skip)
|
|
continue;
|
|
|
|
if(y >= rc.bottom)
|
|
break;
|
|
|
|
if(w.IsPainting(x, y, cx, cy))
|
|
{
|
|
GridDisplay * gd = it.display ? it.display : display;
|
|
|
|
dword style = vi.style;
|
|
if(i > 0) style &= ~GD::HIGHLIGHT;
|
|
if(chameleon)
|
|
style |= GD::CHAMELEON;
|
|
|
|
Font fnt(stdfont);
|
|
gd->PaintFixed(w, firstx, j == 0, x, y, cx, cy,
|
|
GetConvertedColumn(id, it.val),
|
|
style | en, IsNull(vi.hfnt) ? fnt : vi.hfnt,
|
|
indicator, false, 0, -1, 0, false);
|
|
|
|
it.rcx = gd->real_size.cx;
|
|
it.rcy = gd->real_size.cy;
|
|
}
|
|
}
|
|
|
|
if(summary_row)
|
|
{
|
|
j = 0;
|
|
cy = GD_HDR_HEIGHT;
|
|
y = sz.cy - cy;
|
|
if(w.IsPainting(x, y, cx, cy))
|
|
{
|
|
Item& it = summary[hitems[i].id];
|
|
GridDisplay * gd = it.display ? it.display : display;
|
|
|
|
dword style = vitems[j].style;
|
|
if(chameleon)
|
|
style |= GD::CHAMELEON;
|
|
|
|
// gd->PaintFixed(w, firstx, true, x, y, cx, cy,
|
|
// GetConvertedColumn(id, it.val),
|
|
// style | en, stdfont,
|
|
// false, false, 0, -1, 0, false);
|
|
//
|
|
Color fg = Black;
|
|
Color bg = Blend(Blue, White, 240);
|
|
w.DrawRect(x, y, cx, 1, Gray);
|
|
Font fnt(stdfont);
|
|
gd->Paint(w, x, y + 1, cx, cy - 1, GetConvertedColumn(id, it.val), style | en, fg, bg, fnt.Bold(), false, 0, 0);
|
|
|
|
}
|
|
}
|
|
}
|
|
|
|
w.End();
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------
|
|
|
|
r.Set(fixed_width, fixed_height, sz.cx, sz.cy - summary_height);
|
|
|
|
if(can_paint && w.IsPainting(r))
|
|
{
|
|
LG(0, "Body");
|
|
w.Clip(r);
|
|
|
|
x = hitems[total_cols - 1].nRight(sbx);
|
|
y = vitems[total_rows - 1].nBottom(sby);
|
|
|
|
if(x < sz.cx) w.DrawRect(Rect(max(x, rc.left), max(fixed_height, rc.top), sz.cx, sz.cy), SColorPaper);
|
|
if(y < sz.cy) w.DrawRect(Rect(max(fixed_width, rc.left), max(y, rc.top), sz.cx, sz.cy), SColorPaper);
|
|
|
|
bool hasfocus = HasFocus() || holder.HasFocusDeep();
|
|
|
|
for(i = max(firstRow, fixed_rows); i < total_rows; i++)
|
|
{
|
|
ItemRect& vi = vitems[i];
|
|
if(vi.hidden) continue;
|
|
|
|
bool even = coloring_mode == 2 ? (i - vi.n - fixed_rows) & 1 : false;
|
|
|
|
for(j = max(firstCol, fixed_cols); j < total_cols; j++)
|
|
{
|
|
const ItemRect& hi = hitems[j];
|
|
|
|
if(hi.hidden)
|
|
continue;
|
|
|
|
Item &it = GetItemSize(i, j, x, y, cx, cy, skip);
|
|
if(skip)
|
|
continue;
|
|
|
|
if(y >= rc.bottom)
|
|
goto end_paint;
|
|
|
|
if(x >= rc.right)
|
|
break;
|
|
|
|
if(!w.IsPainting(0, y, sz.cx, cy))
|
|
break;
|
|
|
|
if(w.IsPainting(x, y, cx, cy))
|
|
{
|
|
bool iscur = draw_focus ? (i == curpos.y && j == curpos.x) : false;
|
|
|
|
if(coloring_mode == 1)
|
|
even = (j - hi.n - fixed_cols) & 1;
|
|
|
|
int id = hi.id;
|
|
|
|
dword style = en | (select_row ? vi.style : it.style) | hi.balign;
|
|
dword istyle = it.style;
|
|
|
|
if(hitems[j].wrap)
|
|
style |= GD::WRAP;
|
|
if(ctrlpos.y == i && edits[id].ctrl && edits[id].ctrl->IsShown())
|
|
style |= GD::NOTEXT;
|
|
if(it.ctrl)
|
|
style |= GD::NOTEXT;
|
|
|
|
if(coloring_mode > 0)
|
|
style |= (even ? GD::EVEN : GD::ODD);
|
|
if(hasfocus)
|
|
style |= GD::FOCUS;
|
|
|
|
Color cfg;
|
|
Color cbg;
|
|
|
|
Font fnt = StdFont();
|
|
GridDisplay* gd;
|
|
Value val = GetItemValue(it, id, hi, vi);
|
|
GetItemAttrs(it, val, i, j, vi, hi, style, gd, cfg, cbg, fnt);
|
|
|
|
Color fg = SColorText;
|
|
Color bg = SColorPaper;
|
|
|
|
bool custom = true;
|
|
|
|
if(style & GD::CURSOR)
|
|
{
|
|
if(style & GD::FOCUS)
|
|
{
|
|
fg = iscur ? Blend(bg_focus, Black, 230) : fg_focus;
|
|
bg = iscur ? Blend(bg_focus, White, 230) : bg_focus;
|
|
}
|
|
else
|
|
{
|
|
bg = Blend(SColorDisabled, bg);
|
|
}
|
|
custom = false;
|
|
}
|
|
else if(style & GD::LIVE)
|
|
{
|
|
fg = fg_live;
|
|
bg = bg_live;
|
|
custom = false;
|
|
}
|
|
else if(istyle & GD::FOUND)
|
|
{
|
|
fg = fg_found;
|
|
bg = bg_found;
|
|
custom = false;
|
|
}
|
|
else if(style & GD::SELECT)
|
|
{
|
|
fg = fg_select;
|
|
bg = bg_select;
|
|
custom = false;
|
|
}
|
|
else if(style & GD::EVEN)
|
|
{
|
|
fg = fg_even;
|
|
bg = bg_even;
|
|
}
|
|
else if(style & GD::ODD)
|
|
{
|
|
fg = fg_odd;
|
|
bg = bg_odd;
|
|
}
|
|
|
|
if(custom)
|
|
{
|
|
if(!IsNull(cfg)) fg = cfg;
|
|
if(!IsNull(cbg)) bg = cbg;
|
|
}
|
|
|
|
if(style & GD::READONLY)
|
|
{
|
|
bg = Blend(bg, SGray(), 40);
|
|
fg = Blend(fg, SGray(), 200);
|
|
}
|
|
|
|
gd->SetBgImage(vi.img);
|
|
gd->col = j - fixed_rows;
|
|
gd->row = i - fixed_cols;
|
|
gd->parent = this;
|
|
|
|
val = GetAttrTextVal(val);
|
|
|
|
gd->Paint(w, x, y, cx, cy,
|
|
val, style,
|
|
fg, bg, fnt, it.style & GD::FOUND, it.fs, it.fe);
|
|
|
|
it.rcx = gd->real_size.cx;
|
|
it.rcy = gd->real_size.cy;
|
|
|
|
if(vert_grid)
|
|
{
|
|
bool skip = false;
|
|
if(!draw_last_vert_line && j == total_cols - 1)
|
|
skip = true;
|
|
|
|
if(!skip)
|
|
w.DrawRect(x + cx - 1, y, 1, cy, fg_grid);
|
|
}
|
|
if(horz_grid)
|
|
{
|
|
bool skip = false;
|
|
if(!draw_last_horz_line && i == total_rows - 1)
|
|
skip = true;
|
|
|
|
if(!skip)
|
|
w.DrawRect(x, y + cy - 1, cx, 1, fg_grid);
|
|
}
|
|
|
|
if(iscur && draw_focus)
|
|
Upp::DrawFocus(w, x, y, cx, cy);
|
|
}
|
|
//if(curpos.y == i)
|
|
// DrawFocus(w, hitems[fixed_cols].nLeft(), y, hitems[total_cols - 1].nRight() - 1, cy - 1);
|
|
}
|
|
}
|
|
|
|
end_paint:
|
|
|
|
w.End();
|
|
|
|
lastCol = j - 1;
|
|
lastRow = i - 1;
|
|
}
|
|
|
|
|
|
if(moving_header && fixed_top_click && curSplitCol >= 0)
|
|
{
|
|
r.Set(fixed_width, 0, sz.cx, fixed_height);
|
|
w.Clip(r);
|
|
bool lastcol = curSplitCol == lastVisCol;
|
|
|
|
int cp = curSplitCol;
|
|
if(!lastcol)
|
|
while(++cp < total_cols && hitems[cp].hidden);
|
|
|
|
int cx = hitems[cp].nWidth() / 2;
|
|
int x = lastcol ? hitems[curSplitCol].nLeft(sbx) + cx
|
|
: hitems[curSplitCol].nRight(sbx) - 1;
|
|
DrawFatFrame(w, x, 0, cx, vitems[fixed_rows - 1].nBottom(), moving_allowed ? LtBlue : Red, 2);
|
|
w.End();
|
|
}
|
|
|
|
if(moving_header && fixed_left_click)
|
|
{
|
|
int dy = curSplitRow == lastVisRow ? -2 : -1;
|
|
int y = curSplitRow >= 0 ? vitems[curSplitRow].nBottom(sby) + dy : 0;
|
|
if(y >= fixed_height - 1)
|
|
DrawVertDragLine(w, y, hitems[fixed_cols - 1].nRight(), 0, moving_allowed ? LtBlue : Red);
|
|
}
|
|
|
|
if(moving_body)
|
|
{
|
|
int dy = curSplitRow == lastVisRow ? -2 : -1;
|
|
int y = curSplitRow >= 0 ? vitems[curSplitRow].nBottom(sby) + dy : 0;
|
|
if(y >= fixed_height - 1)
|
|
DrawVertDragLine(w, y, sz.cx, fixed_width - 1, LtBlue);
|
|
}
|
|
|
|
if(search_display && !search_string.IsEmpty())
|
|
{
|
|
Size tsz = GetTextSize(search_string, StdFont());
|
|
w.DrawRect(Rect(0, sz.cy - tsz.cy - 4, tsz.cx + 4, sz.cy), SRed);
|
|
w.DrawText(2, sz.cy - tsz.cy - 2, search_string, StdFont(), SYellow);
|
|
}
|
|
|
|
if(!can_paint)
|
|
w.DrawRect(Rect(0, total_cols > 1 ? fixed_height : 0, sz.cx, sz.cy), SColorPaper);
|
|
if(++paint_flag > 100)
|
|
paint_flag = 0;
|
|
|
|
LG(0, "---- Paint(%d).", paintcnt);
|
|
}
|
|
|
|
void GridCtrl::DrawHorzDragLine(Draw &w, int pos, int cx, int size, Color c)
|
|
{
|
|
//w.DrawRect(pos, 0, cx / 2, size - 1, Color(100, 100, 100, 100);
|
|
DrawFrame(w, pos + 1, 1, cx / 2 - 2, size - 2, c);
|
|
DrawFrame(w, pos, 0, cx / 2, size, c);
|
|
// DrawFatFrame(w, x, 0,ďż˝ int cxďż˝ int cyďż˝ Color colorďż˝ int n)
|
|
}
|
|
|
|
void GridCtrl::DrawVertDragLine(Draw &w, int pos, int size, int dx, Color c)
|
|
{
|
|
w.DrawRect(1 + dx, pos, size - dx - 1, 2, c);
|
|
}
|
|
|
|
Value GridCtrl::GetStdConvertedValue(const Value& v) const
|
|
{
|
|
if(IsString(v))
|
|
{
|
|
return v;
|
|
}
|
|
else if(IsType<AttrText>(v))
|
|
{
|
|
const AttrText& t = ValueTo<AttrText>(v);
|
|
return t.text;
|
|
}
|
|
else
|
|
return StdConvert().Format(v);
|
|
}
|
|
|
|
Value GridCtrl::GetConvertedColumn(int col, const Value &v) const
|
|
{
|
|
Convert *conv = edits[col].convert;
|
|
return conv ? conv->Format(v) : v;
|
|
}
|
|
|
|
Value GridCtrl::GetStdConvertedColumn(int col, const Value &v) const
|
|
{
|
|
Value val = GetConvertedColumn(col, v);
|
|
return GetStdConvertedValue(val);
|
|
}
|
|
|
|
String GridCtrl::GetString(Id id) const
|
|
{
|
|
int c = aliases.Get(id);
|
|
return GetStdConvertedColumn(c, Get0(rowidx, c));
|
|
}
|
|
|
|
GridCtrl::ItemRect& GridCtrl::InsertColumn(int col, const char *name, int size, bool idx)
|
|
{
|
|
int id;
|
|
|
|
if(size < 0)
|
|
size = GD_COL_WIDTH;
|
|
|
|
if(col < total_cols)
|
|
{
|
|
id = hitems[col].id;
|
|
for(int i = 0; i < total_cols; i++)
|
|
{
|
|
if(hitems[i].id >= id)
|
|
hitems[i].id += 1;
|
|
}
|
|
}
|
|
else
|
|
id = total_cols;
|
|
|
|
ItemRect& ir = hitems.Insert(col);
|
|
ir.parent = this;
|
|
ir.items = &items;
|
|
ir.edits = &edits;
|
|
ir.prop = size;
|
|
ir.id = id;
|
|
ir.uid = coluid++;
|
|
ir.index = idx;
|
|
|
|
if(index_as_column && idx)
|
|
{
|
|
size = 70;
|
|
ir.prop = size;
|
|
ir.Fixed(size);
|
|
}
|
|
|
|
ir.Size(size);
|
|
aliases.Add(ToLower(name), id);
|
|
rowbkp.Insert(id);
|
|
edits.Insert(id);
|
|
summary.Insert(id);
|
|
|
|
for(int i = 0; i < total_rows; i++)
|
|
items[i].Insert(id);
|
|
|
|
items[0][id].val = name;
|
|
|
|
colidx = col;
|
|
total_cols++;
|
|
|
|
UpdateJoins(-1, col, 1);
|
|
|
|
firstCol = -1;
|
|
|
|
if(ready)
|
|
{
|
|
RecalcCols();
|
|
UpdateSizes();
|
|
UpdateSb();
|
|
SyncSummary();
|
|
SyncCtrls();
|
|
Refresh(); //RefreshFromCol??
|
|
}
|
|
else
|
|
recalc_cols = true;
|
|
|
|
SetModify();
|
|
|
|
return hitems[col];
|
|
}
|
|
|
|
GridCtrl::ItemRect& GridCtrl::AddColumn(const char *name, int size, bool idx)
|
|
{
|
|
ItemRect::aliases = &aliases;
|
|
|
|
if(size < 0)
|
|
size = GD_COL_WIDTH;
|
|
|
|
if(total_rows > 1)
|
|
for(int i = 1; i < total_rows; ++i)
|
|
items[i].Add();
|
|
else
|
|
total_rows = 1;
|
|
|
|
Item &it = items[0].Add();
|
|
it.val = name;
|
|
|
|
ItemRect &ib = hitems.Add();
|
|
|
|
ib.parent = this;
|
|
ib.items = &items;
|
|
ib.edits = &edits;
|
|
ib.prop = size;
|
|
ib.id = total_cols;
|
|
ib.uid = coluid++;
|
|
ib.index = idx;
|
|
|
|
if(index_as_column && idx)
|
|
{
|
|
size = 70;
|
|
ib.prop = size;
|
|
ib.Fixed(size);
|
|
}
|
|
|
|
ib.Size(size);
|
|
if(!ib.hidden)
|
|
{
|
|
lastVisCol = total_cols;
|
|
if(firstVisCol < 0)
|
|
firstVisCol = lastVisCol;
|
|
}
|
|
|
|
if(header && vitems[0].nsize == 0)
|
|
{
|
|
vitems[0].size = vitems[0].nsize = GD_HDR_HEIGHT;
|
|
vitems[0].hidden = false;
|
|
}
|
|
if(!header)
|
|
{
|
|
vitems[0].size = vitems[0].nsize = 0;
|
|
vitems[0].hidden = true;
|
|
}
|
|
|
|
edits.Add();
|
|
summary.Add();
|
|
rowbkp.Add();
|
|
aliases.Add(ToLower(name), ib.id);
|
|
total_cols++;
|
|
|
|
if(ready && IsOpen())
|
|
{
|
|
recalc_cols = true;
|
|
RefreshLayout();
|
|
}
|
|
|
|
return ib;
|
|
}
|
|
|
|
GridCtrl::ItemRect& GridCtrl::AddColumn(const Id id, const char *name, int size, bool idx)
|
|
{
|
|
return AddColumn(name ? name : (const char *) ~id, size, idx).Alias(id);
|
|
}
|
|
|
|
GridCtrl::ItemRect& GridCtrl::AddColumn(const String& name, int size, bool idx)
|
|
{
|
|
return AddColumn((const char *) name, size, idx);
|
|
}
|
|
|
|
void GridCtrl::RemoveColumn(int n, int count)
|
|
{
|
|
n += fixed_cols;
|
|
if(count < 0)
|
|
count = total_cols - n;
|
|
if(n < fixed_cols || n + count > total_cols)
|
|
return;
|
|
for(int i = 0; i < total_rows; i++)
|
|
items[i].Remove(n, count);
|
|
|
|
Vector<int> r;
|
|
for(int i = 0; i < count; i++)
|
|
{
|
|
if(edits[hitems[n + i].id].factory)
|
|
--genr_ctrls;
|
|
r.Add(hitems[n + i].id);
|
|
}
|
|
|
|
int id = hitems[n].id;
|
|
|
|
Upp::Sort(r);
|
|
|
|
hitems.Remove(n, count);
|
|
|
|
rowbkp.Remove(r);
|
|
summary.Remove(r);
|
|
edits.Remove(r);
|
|
total_cols -= count;
|
|
recalc_cols = true;
|
|
|
|
for(int i = 0; i < total_cols; i++)
|
|
if(hitems[i].id >= id)
|
|
hitems[i].id -= count;
|
|
|
|
valid_cursor = SetCursor0(min(curpos.x, total_cols - 1), curpos.y).IsValid();
|
|
Repaint(true);
|
|
}
|
|
|
|
GridCtrl::ItemRect& GridCtrl::AddRow(int n, int size)
|
|
{
|
|
Append0(n, size);
|
|
return GetRow();
|
|
}
|
|
|
|
GridCtrl& GridCtrl::AddSeparator(Color c)
|
|
{
|
|
Append0(1, 3);
|
|
ItemRect& ir = GetRow();
|
|
ir.Bg(c);
|
|
ir.Editable(false);
|
|
ir.Clickable(false);
|
|
ir.Skip(true);
|
|
return *this;
|
|
}
|
|
|
|
void GridCtrl::SetRowCount(int n, int size)
|
|
{
|
|
Clear();
|
|
Append0(n, size);
|
|
}
|
|
|
|
void GridCtrl::SetColCount(int n, int size)
|
|
{
|
|
Reset();
|
|
for(int i = 0; i < n; i++)
|
|
AddColumn("", size, false);
|
|
}
|
|
|
|
void GridCtrl::MouseMove(Point p, dword keyflags)
|
|
{
|
|
mouse_move = true;
|
|
|
|
if(resizing)
|
|
{
|
|
int si, lp, mp, off;
|
|
RectItems *its;
|
|
static int sub = 0;
|
|
|
|
if(resizeCol)
|
|
{
|
|
mp = p.x;
|
|
lp = leftpnt.x;
|
|
si = splitCol;
|
|
its = &hitems;
|
|
bool top = fixed_top_click || (!fixed_left_click && full_col_resizing);
|
|
off = top ? sbx : 0;
|
|
}
|
|
else
|
|
{
|
|
mp = p.y;
|
|
lp = leftpnt.y;
|
|
si = splitRow;
|
|
its = &vitems;
|
|
bool left = fixed_left_click || (!fixed_top_click && full_row_resizing);
|
|
off = left ? sby : 0;
|
|
}
|
|
|
|
int right = (*its)[si].nRight(off);
|
|
|
|
if(just_clicked)
|
|
{
|
|
sub = right - lp;
|
|
just_clicked = false;
|
|
}
|
|
|
|
if(SetDiffItemSize(resizeCol, *its, si, mp - right + sub))
|
|
{
|
|
Split(GS_MOVE);
|
|
}
|
|
|
|
return;
|
|
}
|
|
else if(fixed_click)
|
|
{
|
|
if((fixed_top_click && !moving_cols) ||
|
|
(fixed_left_click && !moving_rows) ||
|
|
moveCol < 0 || moveRow < 0)
|
|
return;
|
|
|
|
if(!moving_header)
|
|
{
|
|
int diffx = p.x - leftpnt.x;
|
|
int diffy = p.y - leftpnt.y;
|
|
if(abs(diffx) < 5 && abs(diffy) < 5)
|
|
return;
|
|
|
|
p -= Point(diffx, diffy);
|
|
|
|
moving_header = true;
|
|
int idx = hitems[moveCol].id;
|
|
int idy = vitems[moveRow].id;
|
|
pophdr.val = idy > 0 ? GetConvertedColumn(moveCol, items[idy][idx].val) : items[idy][idx].val;
|
|
|
|
if(fixed_top_click)
|
|
{
|
|
pophdr.sortmode = hitems[moveCol].sortmode;
|
|
pophdr.sortcol = hitems[moveCol].sortcol;
|
|
pophdr.sortcnt = sortOrder.GetCount();
|
|
|
|
UpdateHighlighting(GS_POPUP, p);
|
|
}
|
|
else
|
|
{
|
|
pophdr.sortmode = 0;
|
|
pophdr.sortcol = -1;
|
|
pophdr.sortcnt = 0;
|
|
}
|
|
|
|
dx = hitems[moveCol].nLeft(fixed_top_click ? sbx : 0) - p.x;
|
|
dy = vitems[moveRow].nTop(fixed_left_click ? sby : 0) - p.y;
|
|
}
|
|
|
|
|
|
Point pt = p + GetScreenRect().TopLeft() + GetBarOffset();
|
|
|
|
pophdr.display = display;
|
|
pophdr.chameleon = chameleon;
|
|
pophdr.PopUp(this, pt.x + dx, pt.y + dy, hitems[moveCol].nWidth(), vitems[moveRow].nHeight());
|
|
|
|
if(fixed_top_click && curSplitCol != oldMoveCol)
|
|
{
|
|
moving_allowed = CanMoveCol(moveCol, curSplitCol);
|
|
RefreshTop();
|
|
//Refresh(oldMoveCol >= 0 ? hitems[oldMoveCol].nRight(sbx) : 0, 0, hitems[curSplitCol].nRight(sbx), fixed_height);
|
|
oldMoveCol = curSplitCol;
|
|
}
|
|
|
|
if(fixed_left_click && curSplitRow != oldMoveRow)
|
|
{
|
|
Refresh(0, 0, fixed_width, fixed_height);
|
|
RefreshLeft();
|
|
oldMoveRow = curSplitRow;
|
|
}
|
|
return;
|
|
}
|
|
|
|
if(leftpnt != p && p.y < fixed_height)
|
|
{
|
|
UpdateHighlighting(GS_MOVE, p);
|
|
}
|
|
|
|
if(live_cursor && popup.IsOpen())
|
|
{
|
|
LG(2, "MouseMove:LiveCursor");
|
|
if(IsMouseBody(p))
|
|
SetCursor0(p, CU_MOUSE | CU_HIGHLIGHT);
|
|
else
|
|
SetCursor0(-1, -1, CU_HIGHLIGHT);
|
|
}
|
|
|
|
if(HasCapture())
|
|
{
|
|
if(!moving_body)
|
|
{
|
|
if(keyflags & K_SHIFT)
|
|
{
|
|
if(SetCursor0(p, CU_MOUSE))
|
|
{
|
|
DoShiftSelect();
|
|
selecting = true;
|
|
}
|
|
return;
|
|
}
|
|
|
|
bool select = true;
|
|
if(select_row && !multi_select)
|
|
select = false;
|
|
|
|
if(select && (keyflags & K_CTRL))
|
|
{
|
|
if(SetCursor0(p, CU_MOUSE))
|
|
{
|
|
DoCtrlSelect();
|
|
selecting = true;
|
|
}
|
|
return;
|
|
}
|
|
}
|
|
|
|
if(moveCol < 0 || moveRow < 0)
|
|
return;
|
|
|
|
if(!dragging)
|
|
return;
|
|
|
|
if(!moving_body)
|
|
{
|
|
popup.Close();
|
|
|
|
if(!top_click && valid_cursor &&
|
|
p.x < total_width &&
|
|
p.y < total_height &&
|
|
(abs(p.y - leftpnt.y) > 5 ||
|
|
abs(p.x - leftpnt.x) > 5))
|
|
moving_body = true;
|
|
|
|
oldMoveRow = -1;
|
|
}
|
|
else
|
|
{
|
|
Point pt = p + GetScreenRect().TopLeft();
|
|
|
|
int row = curSplitRow - fixed_rows + 2;
|
|
if(select_row)
|
|
{
|
|
int count = max(1, selected_rows);
|
|
|
|
if(vitems[curpos.y].IsSelect())
|
|
popup.val = Format(t_("Moving selection (%d %s) before row %d"), count, count == 1 ? t_("row") : t_("rows"), row);
|
|
else
|
|
popup.val = Format(t_("Moving row %d before row %d"), curpos.y - fixed_rows + 1, row);
|
|
}
|
|
else
|
|
{
|
|
int count = max(1, selected_items);
|
|
popup.val = Format(t_("Moving %d %s before row %d"), count, count == 1 ? t_("cell") : t_("cells"), row);
|
|
}
|
|
|
|
int px = pt.x + 15;
|
|
int py = pt.y + GD_ROW_HEIGHT;
|
|
|
|
popup.gd = display;
|
|
popup.gd->row = 0;
|
|
popup.gd->col = 0;
|
|
popup.fg = SColorText;
|
|
popup.bg = SColorPaper;
|
|
popup.fnt = StdFont();
|
|
popup.style = 0;
|
|
popup.PopUp(this, px, py, GetTextSize((String) popup.val, StdFont()).cx + 10, GD_ROW_HEIGHT);
|
|
SetFocus();
|
|
|
|
if(curSplitRow != oldMoveRow || scrollLeftRight)
|
|
{
|
|
int dy = sby;
|
|
if(oldMoveRow >= 0)
|
|
Refresh(Rect(0, vitems[oldMoveRow].nBottom(dy) - 5, GetSize().cx, vitems[oldMoveRow].nBottom(dy) + 5));
|
|
else
|
|
Refresh(Rect(0, 0, GetSize().cx, 5));
|
|
if(curSplitRow >= 0)
|
|
Refresh(Rect(0, vitems[curSplitRow].nBottom(dy) - 5, GetSize().cx, vitems[curSplitRow].nBottom(dy) + 5));
|
|
else
|
|
Refresh(Rect(0, 0, GetSize().cx, 5));
|
|
|
|
oldMoveRow = curSplitRow;
|
|
popup.Refresh();
|
|
|
|
scrollLeftRight = false;
|
|
}
|
|
}
|
|
}
|
|
else
|
|
SyncPopup();
|
|
}
|
|
|
|
void GridCtrl::SyncPopup()
|
|
{
|
|
if(!IsPopUp() && popups)
|
|
{
|
|
Point p = GetMouseViewPos();
|
|
|
|
bool fc = p.x < fixed_width;
|
|
bool fr = p.y < fixed_height;
|
|
|
|
int c = GetMouseCol(p, !fc, fc);
|
|
int r = GetMouseRow(p, !fr, fr);
|
|
|
|
bool new_cell = false;
|
|
|
|
if(r != oldSplitRow)
|
|
{
|
|
oldSplitRow = r;
|
|
new_cell = true;
|
|
}
|
|
if(c != oldSplitCol)
|
|
{
|
|
oldSplitCol = c;
|
|
new_cell = true;
|
|
}
|
|
|
|
bool valid_pos = c >= 0 && r >= 0;
|
|
|
|
Ctrl* ctrl = valid_pos ? GetCtrl(r, c, true, false, false, false) : NULL;
|
|
|
|
bool close = popup.IsOpen();
|
|
|
|
if(valid_pos && !ctrl)
|
|
{
|
|
Item& it = GetItem(r, c);
|
|
ItemRect& hi = hitems[c];
|
|
ItemRect& vi = vitems[r];
|
|
|
|
if(it.rcx > 0 || it.rcy > 0)
|
|
{
|
|
close = false;
|
|
|
|
Value val = GetStdConvertedValue(r == 0 ? it.val : GetItemValue(it, hi.id, hi, vi));
|
|
|
|
if(new_cell)
|
|
{
|
|
popup.fg = SColorText;
|
|
popup.bg = SColorPaper;
|
|
popup.fnt = StdFont();
|
|
popup.style = 0;
|
|
popup.val = val;
|
|
|
|
Point p0 = GetMousePos();
|
|
int x = hi.npos + p0.x - p.x - 1 - sbx.Get() * int(!fc);
|
|
int y = vi.npos + p0.y - p.y - 1 - sby.Get() * int(!fr);
|
|
|
|
GetItemAttrs(it, Null, r, c, vi, hi, popup.style, popup.gd, popup.fg, popup.bg, popup.fnt);
|
|
popup.gd->row = r < fixed_rows ? -1 : r - fixed_rows;
|
|
popup.gd->col = c < fixed_cols ? -1 : c - fixed_cols;
|
|
Rect scr = GetWorkArea();
|
|
int margin = popup.gd->lm + popup.gd->rm;
|
|
int cx = min(600, min((int) (scr.right * 0.4), max(it.rcx + margin + 2, hi.nsize + 1)));
|
|
int lines = popup.gd->GetLinesCount(cx - margin - 2, WString(val), popup.fnt, true);
|
|
int cy = max(lines * Draw::GetStdFontCy() + popup.gd->tm + popup.gd->bm + 2, vi.nsize + 1);
|
|
if(fr && r == 0)
|
|
{
|
|
y++;
|
|
cy--;
|
|
}
|
|
popup.PopUp(this, x, y, cx, cy);
|
|
if(!close)
|
|
popup.Refresh();
|
|
UpdateHighlighting(GS_BORDER, Point(0, 0));
|
|
}
|
|
else if(val != popup.val)
|
|
{
|
|
popup.val = val;
|
|
popup.Refresh();
|
|
}
|
|
}
|
|
}
|
|
|
|
if(close)
|
|
{
|
|
popup.Close();
|
|
oldSplitCol = -1;
|
|
oldSplitRow = -1;
|
|
UpdateHighlighting(GS_BORDER, Point(0, 0));
|
|
}
|
|
}
|
|
}
|
|
|
|
void GridCtrl::LeftDown(Point p, dword keyflags)
|
|
{
|
|
//popup.Close();
|
|
SetCapture();
|
|
leftpnt = p;
|
|
just_clicked = true;
|
|
selecting = false;
|
|
|
|
fixed_top_click = p.x >= fixed_width && p.y < fixed_height;
|
|
fixed_left_click = p.x < fixed_width && p.y >= fixed_height;
|
|
fixed_click = fixed_top_click || fixed_left_click;
|
|
top_click = p.y < fixed_height;
|
|
|
|
resizing = curResizeCol || curResizeRow;
|
|
|
|
if(resizing)
|
|
{
|
|
popup.Close();
|
|
|
|
splitCol = curSplitCol;
|
|
splitRow = curSplitRow;
|
|
resizeCol = curResizeCol;
|
|
resizeRow = curResizeRow;
|
|
|
|
Split(GS_DOWN);
|
|
return;
|
|
}
|
|
else if(fixed_click)
|
|
{
|
|
moveCol = oldMoveCol = GetMouseCol(p, fixed_top_click, 1);
|
|
moveRow = oldMoveRow = GetMouseRow(p, fixed_left_click, 1);
|
|
return;
|
|
}
|
|
|
|
SetFocus();
|
|
|
|
if(IsEmpty() || IsReadOnly())
|
|
return;
|
|
|
|
bool is_shift = keyflags & K_SHIFT;
|
|
bool is_ctrl = keyflags & K_CTRL;
|
|
|
|
CurState cs = SetCursor0(p, CU_MOUSE | CU_HIDECTRLS);
|
|
bool state_change = cs.IsValid() && !cs.IsNew() && (is_ctrl || is_shift);
|
|
|
|
if(!cs.IsAccepted() && !state_change)
|
|
return;
|
|
|
|
if(cs || state_change)
|
|
{
|
|
moveCol = curpos.x;
|
|
moveRow = curpos.y;
|
|
|
|
if(keyflags & K_CTRL)
|
|
{
|
|
bool select = true;
|
|
if(!select_row)
|
|
ClearSelection();
|
|
else if(!multi_select)
|
|
select = false;
|
|
|
|
if(select)
|
|
{
|
|
if(IsValidCursor(oldcur) && selected_items == 0 && cs.IsNew())
|
|
{
|
|
shiftpos = oldcur;
|
|
|
|
if(select_row)
|
|
{
|
|
SelectRange(oldcur, oldcur, true, true);
|
|
SelectRange(curpos, curpos, true, true);
|
|
}
|
|
else
|
|
{
|
|
SelectRange(oldcur, curpos, true, false);
|
|
}
|
|
}
|
|
else
|
|
{
|
|
shiftpos = curpos;
|
|
bool rowsel = vitems[curpos.y].IsSelect();
|
|
SelectRange(curpos, curpos, !rowsel, select_row);
|
|
}
|
|
selecting = true;
|
|
}
|
|
}
|
|
else if(keyflags & K_SHIFT)
|
|
{
|
|
DoShiftSelect();
|
|
selecting = true;
|
|
}
|
|
}
|
|
|
|
#ifdef LOG_CALLBACKS
|
|
//LGR(2, "WhenLeftClick()");
|
|
#endif
|
|
|
|
WhenLeftClick();
|
|
|
|
if(editing && one_click_edit && cs.IsValid() ) //&& IsRowEditable() ?
|
|
StartEdit();
|
|
else
|
|
RebuildToolBar();
|
|
}
|
|
|
|
void GridCtrl::LeftUp(Point p, dword keyflags)
|
|
{
|
|
LG(0, "LeftUp");
|
|
|
|
ReleaseCapture();
|
|
fixed_click = false;
|
|
|
|
UpdateHighlighting(resizing ? GS_MOVE : GS_UP, p);
|
|
|
|
if(moving_header)
|
|
{
|
|
LG(0, "moving_header");
|
|
pophdr.Close();
|
|
|
|
moving_header = false;
|
|
if(fixed_top_click)
|
|
MoveCol(moveCol, curSplitCol);
|
|
else
|
|
MoveRow(moveRow, curSplitRow);
|
|
|
|
if(focused_ctrl)
|
|
focused_ctrl->SetFocus();
|
|
|
|
fixed_top_click = false;
|
|
fixed_left_click = false;
|
|
|
|
return;
|
|
}
|
|
|
|
if(resizing)
|
|
{
|
|
Split(GS_UP);
|
|
resizeCol = resizeRow = resizing = false;
|
|
return;
|
|
}
|
|
|
|
if(fixed_top_click && sorting && Distance(leftpnt, p) < 3)
|
|
{
|
|
int i = GetMouseRow(leftpnt, false, true);
|
|
int j = GetMouseCol(leftpnt, true, false);
|
|
|
|
if(j >= fixed_cols && i == 0 && hitems[i].sortable)
|
|
{
|
|
int newSortCol = hitems[j].id;
|
|
|
|
if(sorting_multicol && (keyflags & K_CTRL))
|
|
{
|
|
int colidx = InMultisort(newSortCol);
|
|
|
|
if(colidx < 0)
|
|
sortOrder.Add(newSortCol);
|
|
|
|
int cnt = sortOrder.GetCount();
|
|
|
|
hitems[j].ChangeSortMode(newSortCol == sortOrder[cnt - 1]);
|
|
|
|
if(colidx >= 0)
|
|
{
|
|
if(hitems[j].sortmode == 0)
|
|
{
|
|
sortOrder.Remove(colidx);
|
|
cnt--;
|
|
}
|
|
|
|
if(WhenSort)
|
|
WhenSort();
|
|
else
|
|
{
|
|
if(hitems[j].sortmode > 0 && colidx == cnt - 1)
|
|
GSort();
|
|
else
|
|
Multisort();
|
|
}
|
|
}
|
|
else
|
|
{
|
|
hitems[j].sortcol = cnt;
|
|
if(WhenSort)
|
|
WhenSort();
|
|
else
|
|
GSort();
|
|
}
|
|
}
|
|
else
|
|
{
|
|
if(sortCol >= 0 && sortCol != newSortCol)
|
|
{
|
|
int idx = GetIdCol(sortCol, true);
|
|
hitems[idx].sortmode = 0;
|
|
}
|
|
|
|
ClearMultisort(1);
|
|
hitems[j].ChangeSortMode();
|
|
hitems[j].sortcol = 1;
|
|
|
|
if(hitems[j].sortmode == 0)
|
|
sortCol = -1;
|
|
else
|
|
sortCol = newSortCol;
|
|
|
|
sortOrder.Add(newSortCol);
|
|
|
|
if(WhenSort)
|
|
WhenSort();
|
|
else
|
|
GSort(newSortCol, hitems[j].sortmode, fixed_rows);
|
|
}
|
|
|
|
UpdateCursor();
|
|
Repaint(false, true);
|
|
|
|
if(WhenSorted)
|
|
WhenSorted();
|
|
}
|
|
}
|
|
|
|
if(moving_body)
|
|
{
|
|
popup.Close();
|
|
moving_body = false;
|
|
MoveRows(curSplitRow + 1, !vitems[curpos.y].IsSelect());
|
|
return;
|
|
}
|
|
|
|
if(selected_rows > 0 && !selecting)
|
|
ClearSelection();
|
|
}
|
|
|
|
void GridCtrl::LeftDouble(Point p, dword keyflags)
|
|
{
|
|
LG(0, "LeftDouble");
|
|
|
|
if(full_col_resizing && curSplitCol >= 0)
|
|
return;
|
|
|
|
if(full_row_resizing && curSplitRow >= 0)
|
|
return;
|
|
|
|
if(IsEmpty() || !IsMouseBody(p) || IsReadOnly())
|
|
return;
|
|
|
|
if(keyflags & K_SHIFT || keyflags & K_CTRL)
|
|
return;
|
|
|
|
if(!valid_cursor)
|
|
return;
|
|
|
|
if(editing)
|
|
StartEdit();
|
|
|
|
if(!IsCtrl(curpos))
|
|
{
|
|
popup.Close();
|
|
#ifdef LOG_CALLBACKS
|
|
LGR(2, "WhenLeftDouble()");
|
|
#endif
|
|
WhenLeftDouble();
|
|
}
|
|
}
|
|
|
|
void GridCtrl::LeftRepeat(Point p, dword keyflags)
|
|
{
|
|
if(!moving_header && !resizeCol && !resizeRow)
|
|
MouseAccel(p, resize_col_mode == 0, resize_row_mode == 0, keyflags);
|
|
}
|
|
|
|
void GridCtrl::RightDown(Point p, dword keyflags)
|
|
{
|
|
if(IsReadOnly())
|
|
return;
|
|
|
|
if(total_rows > fixed_rows)
|
|
{
|
|
if(!EndEdit())
|
|
return;
|
|
|
|
SetCursor0(p, CU_MOUSE);
|
|
}
|
|
|
|
RebuildToolBar();
|
|
SetFocus(); //jak nie bedzie menu to fokous zostanie na danym wierszu
|
|
MenuBar::Execute(WhenMenuBar);
|
|
}
|
|
|
|
void GridCtrl::Init()
|
|
{
|
|
bar.Set(WhenToolBar);
|
|
UpdateCols(true);
|
|
/* recalc_rows bo przed otworzeniem grida moglo zostac wywolane setrowheight */
|
|
UpdateRows(resize_row_mode > 0 || recalc_rows);
|
|
|
|
UpdateSizes();
|
|
UpdateSb();
|
|
UpdateHolder(true);
|
|
SyncSummary();
|
|
SyncCtrls();
|
|
}
|
|
|
|
void GridCtrl::State(int reason)
|
|
{
|
|
if(reason == OPEN)
|
|
{
|
|
Init();
|
|
ready = true;
|
|
//ready po init - updatesb wola layout() a ten syncctrl
|
|
//(ktory w sumie wola sie 3 razy zanim grid sie wyswietli - niepotrzebnie)
|
|
}
|
|
else if(reason == CLOSE)
|
|
{
|
|
if(live_cursor)
|
|
SetCursor0(-1, -1, CU_HIGHLIGHT);
|
|
}
|
|
else if(reason == ENABLE)
|
|
{
|
|
bool e = IsEnabled();
|
|
if(e != enabled)
|
|
{
|
|
RebuildToolBar();
|
|
enabled = e;
|
|
}
|
|
}
|
|
}
|
|
|
|
void GridCtrl::Layout()
|
|
{
|
|
if(!ready)
|
|
return;
|
|
|
|
UpdateCols();
|
|
UpdateRows();
|
|
UpdateSizes();
|
|
UpdateSb();
|
|
UpdateHolder();
|
|
UpdateCtrls(UC_CHECK_VIS | UC_SHOW);
|
|
SyncCtrls();
|
|
}
|
|
|
|
void GridCtrl::ChildAction(Ctrl *child, int event)
|
|
{
|
|
if(child != &holder && child->IsShown())
|
|
popup.Close();
|
|
|
|
if(child != focused_ctrl)
|
|
{
|
|
if(event == LEFTDOWN || event == RIGHTDOWN || event == MOUSEWHEEL)
|
|
{
|
|
//LG(2, "got event :%x child: %x", event, child);
|
|
Point cp = GetCtrlPos(child);
|
|
if(cp.x < 0 || cp.y < 0)
|
|
return;
|
|
|
|
SetCursor0(cp);
|
|
UpdateCtrls(UC_SHOW);
|
|
WhenCtrlAction();
|
|
}
|
|
}
|
|
|
|
if(event == MOUSEMOVE)
|
|
{
|
|
if(live_cursor)
|
|
{
|
|
LG(2, "Child:LiveCursor");
|
|
Point p = GetMouseViewPos();
|
|
if(IsMouseBody(p))
|
|
SetCursor0(p, CU_MOUSE | CU_HIGHLIGHT);
|
|
else
|
|
SetCursor0(-1, -1, CU_HIGHLIGHT);
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
void GridCtrl::ChildMouseEvent(Ctrl *child, int event, Point p, int zdelta, dword keyflags)
|
|
{
|
|
ChildAction(child, event);
|
|
Ctrl::ChildMouseEvent(child, event, p, zdelta, keyflags);
|
|
}
|
|
|
|
void GridCtrl::ChildFrameMouseEvent(Ctrl *child, int event, Point p, int zdelta, dword keyflags)
|
|
{
|
|
ChildAction(child, event);
|
|
Ctrl::ChildFrameMouseEvent(child, event, p, zdelta, keyflags);
|
|
}
|
|
|
|
void GridCtrl::DragAndDrop(Point p, PasteClip& d)
|
|
{
|
|
/*
|
|
moving_body = true;
|
|
if(curSplitRow != oldMoveRow || scrollLeftRight)
|
|
{
|
|
int dy = sby;
|
|
if(oldMoveRow >= 0)
|
|
Refresh(Rect(0, vitems[oldMoveRow].nBottom(dy) - 5, GetSize().cx, vitems[oldMoveRow].nBottom(dy) + 5));
|
|
else
|
|
Refresh(Rect(0, 0, GetSize().cx, 5));
|
|
if(curSplitRow >= 0)
|
|
Refresh(Rect(0, vitems[curSplitRow].nBottom(dy) - 5, GetSize().cx, vitems[curSplitRow].nBottom(dy) + 5));
|
|
else
|
|
Refresh(Rect(0, 0, GetSize().cx, 5));
|
|
|
|
oldMoveRow = curSplitRow;
|
|
popup.Refresh();
|
|
|
|
scrollLeftRight = false;
|
|
}
|
|
*/
|
|
}
|
|
|
|
Rect GridCtrl::GetItemRect(int r, int c, bool hgrid, bool vgrid, bool hrel, bool vrel)
|
|
{
|
|
int dx = sbx + (hrel ? fixed_width : 0);
|
|
int dy = sby + (vrel ? fixed_height : 0);
|
|
|
|
int idx = hitems[c].id;
|
|
int idy = vitems[r].id;
|
|
|
|
Item &it = items[idy][idx];
|
|
|
|
int left, top, right, bottom;
|
|
|
|
if(it.isjoined)
|
|
{
|
|
int group = it.group;
|
|
|
|
while(r > fixed_rows && items[vitems[r].id][idx].group == group) --r; ++r;
|
|
|
|
top = vitems[r].nTop(dy);
|
|
bottom = vitems[r + it.cy].nBottom(dy);
|
|
|
|
while(c > fixed_cols && items[idy][hitems[c].id].group == group) --c; ++c;
|
|
|
|
left = hitems[c].nLeft(dx);
|
|
right = hitems[c + it.cx].nRight(dx);
|
|
}
|
|
else
|
|
{
|
|
left = hitems[c].nLeft(dx);
|
|
top = vitems[r].nTop(dy);
|
|
right = hitems[c].nRight(dx);
|
|
bottom = vitems[r].nBottom(dy);
|
|
}
|
|
|
|
return Rect(left, top, right - (int) vgrid, bottom - (int) hgrid);
|
|
}
|
|
|
|
Rect& GridCtrl::AlignRect(Rect &r, int i)
|
|
{
|
|
Rect c(r);
|
|
int align = hitems[i].calign;
|
|
int sx = hitems[i].sx;
|
|
int sy = hitems[i].sy;
|
|
|
|
if(sx > 0)
|
|
{
|
|
if(align & GD::HCENTER)
|
|
{
|
|
int d = (r.Width() - sx - 1) / 2;
|
|
r.left += d;
|
|
r.right -= d;
|
|
}
|
|
else if(align & GD::LEFT)
|
|
{
|
|
r.left += hitems[i].sl;
|
|
r.right = r.left + sx;
|
|
}
|
|
else if(align & GD::RIGHT)
|
|
{
|
|
r.right -= hitems[i].sr;
|
|
r.left = r.right - sx;
|
|
}
|
|
else if(align & GD::HPOS)
|
|
{
|
|
r.left += hitems[i].sl;
|
|
r.right -= hitems[i].sr;
|
|
}
|
|
}
|
|
|
|
if(sy > 0)
|
|
{
|
|
if(align & GD::VCENTER)
|
|
{
|
|
int d = (r.Height() - sy - 1) / 2;
|
|
r.top += d;
|
|
r.bottom -= d;
|
|
}
|
|
else if(align & GD::TOP)
|
|
{
|
|
r.top += hitems[i].st;
|
|
r.bottom = r.top + sy;
|
|
}
|
|
else if(align & GD::RIGHT)
|
|
{
|
|
r.bottom -= hitems[i].sb;
|
|
r.top = r.bottom - sy;
|
|
}
|
|
else if(align & GD::VPOS)
|
|
{
|
|
r.top += hitems[i].st;
|
|
r.bottom -= hitems[i].sb;
|
|
}
|
|
}
|
|
|
|
if(r.left < c.left) r.left = c.left;
|
|
if(r.right > c.right) r.right = c.right;
|
|
if(r.top < c.top) r.top = c.top;
|
|
if(r.bottom > c.bottom) r.bottom = c.bottom;
|
|
|
|
return r;
|
|
}
|
|
|
|
|
|
void GridCtrl::Scroll()
|
|
{
|
|
Point newpos(sbx, sby);
|
|
Size delta = oldpos - newpos;
|
|
oldpos = newpos;
|
|
|
|
if(delta.cx != 0) firstCol = -1;
|
|
if(delta.cy != 0) firstRow = -1;
|
|
|
|
if(!doscroll)
|
|
return;
|
|
|
|
LG(0, "Scroll (%d, %d)", delta.cx, delta.cy);
|
|
|
|
SyncCtrls();
|
|
UpdateCtrls(UC_CHECK_VIS | UC_SHOW | UC_SCROLL);
|
|
|
|
if(resizeCol || resizeRow)
|
|
return;
|
|
|
|
if(!IsFullRefresh())
|
|
{
|
|
Size sz = GetSize();
|
|
holder.ScrollView(delta);
|
|
if(delta.cx != 0)
|
|
{
|
|
ScrollView(Rect(fixed_width, 0, sz.cx, fixed_height), delta.cx, 0);
|
|
ScrollView(Rect(fixed_width, sz.cy - summary_height, sz.cx, sz.cy), delta.cx, 0);
|
|
scrollLeftRight = true;
|
|
}
|
|
if(delta.cy != 0)
|
|
{
|
|
ScrollView(Rect(0, fixed_height, fixed_width, sz.cy - summary_height), 0, delta.cy);
|
|
}
|
|
}
|
|
|
|
if(live_cursor)
|
|
SetCursor0(GetMousePos() - GetScreenRect().TopLeft(), CU_MOUSE | CU_HIGHLIGHT);
|
|
|
|
SyncPopup();
|
|
}
|
|
|
|
void GridCtrl::SetFixedRows(int n)
|
|
{
|
|
if(n >= 0 && n <= total_rows)
|
|
{
|
|
LG(0, "SetFixedRows");
|
|
fixed_rows = n;
|
|
firstRow = -1;
|
|
UpdateSizes();
|
|
UpdateHolder();
|
|
UpdateVisColRow(false);
|
|
if(ready)
|
|
SyncCtrls();
|
|
Refresh();
|
|
}
|
|
}
|
|
|
|
void GridCtrl::SetFixedCols(int n)
|
|
{
|
|
if(n >= 0 && n < total_cols)
|
|
{
|
|
LG(0, "SetFixedCols");
|
|
fixed_cols = n + 1; /* +1 - indicator! */
|
|
firstCol = -1;
|
|
UpdateSizes();
|
|
UpdateHolder();
|
|
UpdateVisColRow(true);
|
|
if(ready)
|
|
SyncCtrls();
|
|
Refresh();
|
|
}
|
|
}
|
|
|
|
void GridCtrl::Set0(int r, int c, const Value &val_, bool paste)
|
|
{
|
|
Value val = val_;
|
|
if(c > total_cols - 1)
|
|
return;
|
|
if(r > total_rows - 1)
|
|
AddRow(r - total_rows + 1);
|
|
|
|
vitems[r].operation = GridOperation::UPDATE;
|
|
|
|
int ri = vitems[r].id;
|
|
Item &it = items[ri][c];
|
|
|
|
if(it.isjoined) {
|
|
ri = it.idy;
|
|
c = it.idx;
|
|
}
|
|
|
|
Ctrl *ctrl = items[ri][c].ctrl;
|
|
bool setctrl = true;
|
|
if(!ctrl) {
|
|
ctrl = edits[c].ctrl;
|
|
setctrl = ctrlid.y == ri;
|
|
}
|
|
|
|
if(ctrl) {
|
|
if(paste && IsString(val)) {
|
|
Convert *cv = dynamic_cast<Convert *>(ctrl);
|
|
if(cv)
|
|
val = cv->Scan(val);
|
|
}
|
|
if(setctrl)
|
|
ctrl->SetData(val);
|
|
}
|
|
|
|
items[ri][c].val = val;
|
|
RefreshItem(r, c, false);
|
|
|
|
if(paste)
|
|
WhenUpdateCell();
|
|
|
|
SyncSummary();
|
|
}
|
|
|
|
void GridCtrl::Set(int r, int c, const Value &val)
|
|
{
|
|
Set0(r + fixed_rows, c + fixed_cols, val);
|
|
}
|
|
|
|
void GridCtrl::Set(int r, Id id, const Value &val)
|
|
{
|
|
Set0(r + fixed_rows, aliases.Get(id), val);
|
|
}
|
|
|
|
void GridCtrl::Set(int r, const char *s, const Value &val)
|
|
{
|
|
Set0(r + fixed_rows, aliases.Get(s), val);
|
|
}
|
|
|
|
void GridCtrl::Set(int c, const Value &val)
|
|
{
|
|
Set0(rowidx, c + fixed_cols, val);
|
|
}
|
|
|
|
void GridCtrl::Set(Id id, const Value &val)
|
|
{
|
|
Set0(rowidx, aliases.Get(id), val);
|
|
}
|
|
|
|
void GridCtrl::Set(int r, const Vector<Value> &v, int data_offset /* = 0*/, int column_offset /* = 0*/)
|
|
{
|
|
r += fixed_rows;
|
|
vitems[r].operation = GridOperation::UPDATE;
|
|
int cnt = min(v.GetCount(), total_cols - fixed_cols);
|
|
int r0 = vitems[r].id;
|
|
int c = fixed_cols + column_offset;
|
|
for(int i = data_offset; i < cnt; i++)
|
|
items[r0][c++].val = v[i];
|
|
|
|
RefreshRow(r, false, 0);
|
|
}
|
|
|
|
void GridCtrl::Set(const Vector<Value> &v, int data_offset /* = 0*/, int column_offset /* = 0*/)
|
|
{
|
|
int r = rowidx - fixed_rows;
|
|
Set(r, v, data_offset, column_offset);
|
|
}
|
|
|
|
void GridCtrl::SetAny(int r, int c, const Value &val)
|
|
{
|
|
Set0(r, c, val);
|
|
}
|
|
|
|
void GridCtrl::SetRaw(int r, int c, const Value &val)
|
|
{
|
|
items[r][c].val = val;
|
|
}
|
|
|
|
void GridCtrl::SetIndicator(int r, const Value &val)
|
|
{
|
|
Set0(r, 0, val);
|
|
}
|
|
|
|
void GridCtrl::SetCtrl(int r, int c, Ctrl& ctrl)
|
|
{
|
|
r += fixed_rows;
|
|
c += fixed_cols;
|
|
GetItem(r, c).SetCtrl(ctrl, false);
|
|
++genr_ctrls;
|
|
if(ready)
|
|
SyncCtrls(r, c);
|
|
}
|
|
|
|
void GridCtrl::SetCtrl(int r, int c, Ctrl* ctrl)
|
|
{
|
|
r += fixed_rows;
|
|
c += fixed_cols;
|
|
GetItem(r, c).SetCtrl(*ctrl, true);
|
|
++genr_ctrls;
|
|
if(ready)
|
|
SyncCtrls(r, c);
|
|
}
|
|
|
|
void GridCtrl::SetCtrl(int c, Ctrl& ctrl)
|
|
{
|
|
c += fixed_cols;
|
|
GetItem(rowidx, c).SetCtrl(ctrl, false);
|
|
++genr_ctrls;
|
|
if(ready)
|
|
SyncCtrls(rowidx, c);
|
|
}
|
|
|
|
void GridCtrl::SetCtrl(int c, Ctrl* ctrl)
|
|
{
|
|
c += fixed_cols;
|
|
GetItem(rowidx, c).SetCtrl(*ctrl, true);
|
|
++genr_ctrls;
|
|
if(ready)
|
|
SyncCtrls(rowidx, c);
|
|
}
|
|
|
|
void GridCtrl::ClearCtrl(int r, int c)
|
|
{
|
|
GridCtrl::Item& item = GetItem(r + fixed_rows, c + fixed_cols);
|
|
if(item.ctrl)
|
|
{
|
|
item.ClearCtrl();
|
|
--genr_ctrls;
|
|
}
|
|
}
|
|
|
|
void GridCtrl::SetCtrlValue(int r, int c, const Value &val)
|
|
{
|
|
c += fixed_cols;
|
|
int ri = vitems[r].id;
|
|
Ctrl * ctrl = items[ri][c].ctrl;
|
|
if(ctrl)
|
|
ctrl->SetData(val);
|
|
else
|
|
{
|
|
ctrl = edits[c].ctrl;
|
|
if(ctrl && ctrlid.y == ri)
|
|
ctrl->SetData(val);
|
|
}
|
|
}
|
|
|
|
void GridCtrl::SetCtrlValue(int c, const Value &val)
|
|
{
|
|
SetCtrlValue(rowidx, c, val);
|
|
}
|
|
|
|
void GridCtrl::SetLast(int c, const Value &val)
|
|
{
|
|
c += fixed_cols;
|
|
items[vitems[rowidx].id][c].val = val;
|
|
RefreshItem(rowidx, c, false);
|
|
}
|
|
|
|
void GridCtrl::SetFixed(int r, int c, const Value &val)
|
|
{
|
|
items[r][c + 1].val = val;
|
|
Refresh();
|
|
}
|
|
|
|
Value GridCtrl::GetFixed(int r, int c) const
|
|
{
|
|
return items[vitems[r].id][c + fixed_cols].val;
|
|
}
|
|
|
|
Value GridCtrl::GetFixed(int c) const
|
|
{
|
|
return items[0][c + fixed_cols].val;
|
|
}
|
|
|
|
Value GridCtrl::Get0(int r, int c) const
|
|
{
|
|
r = vitems[r].id;
|
|
const Item &it = items[r][c];
|
|
if(it.isjoined)
|
|
{
|
|
r = it.idy;
|
|
c = it.idx;
|
|
}
|
|
|
|
Ctrl * ctrl = items[r][c].ctrl;
|
|
|
|
if(!ctrl && ctrlid.y == r)
|
|
ctrl = edits[c].ctrl;
|
|
|
|
return ctrl ? ctrl->GetData() : items[r][c].val;
|
|
}
|
|
|
|
Value GridCtrl::Get(int r, int c) const
|
|
{
|
|
return Get0(r + fixed_rows, c + fixed_cols);
|
|
}
|
|
|
|
Value GridCtrl::Get(int c) const
|
|
{
|
|
return Get0(rowidx, c + fixed_cols);
|
|
}
|
|
|
|
Value GridCtrl::Get(Id id) const
|
|
{
|
|
return Get0(rowidx, aliases.Get(id));
|
|
}
|
|
|
|
Value GridCtrl::Get(int r, Id id) const
|
|
{
|
|
return Get0(r + fixed_rows, aliases.Get(id));
|
|
}
|
|
|
|
Value GridCtrl::Get() const
|
|
{
|
|
return Get0(curpos.y, curpos.x);
|
|
}
|
|
|
|
Value GridCtrl::Get(const char * alias) const
|
|
{
|
|
return Get0(rowidx, aliases.Get(alias));
|
|
}
|
|
|
|
Value GridCtrl::Get(int r, const char * alias) const
|
|
{
|
|
return Get0(r + fixed_rows, aliases.Get(alias));
|
|
}
|
|
|
|
Value GridCtrl::GetRaw(int r, int c) const
|
|
{
|
|
return items[r][c].val;
|
|
}
|
|
|
|
Value GridCtrl::GetFirst(int c) const
|
|
{
|
|
return Get0(fixed_rows, c + fixed_cols);
|
|
}
|
|
|
|
Value GridCtrl::GetLast(int c) const
|
|
{
|
|
return Get0(total_rows - 1, c + fixed_cols);
|
|
}
|
|
|
|
Value GridCtrl::GetPrev(Id id) const
|
|
{
|
|
return rowbkp[aliases.Get(id)];
|
|
}
|
|
|
|
Value GridCtrl::GetPrev(int c) const
|
|
{
|
|
return rowbkp[c + fixed_cols];
|
|
}
|
|
|
|
Value GridCtrl::GetNew(int c) const
|
|
{
|
|
return Get0(rowidx, c + fixed_cols);
|
|
}
|
|
|
|
Value& GridCtrl::operator() (int r, int c)
|
|
{
|
|
return items[vitems[r + fixed_rows].id][c + fixed_cols].val;
|
|
}
|
|
|
|
Value& GridCtrl::operator() (int c)
|
|
{
|
|
return items[vitems[rowidx].id][c + fixed_cols].val;
|
|
}
|
|
|
|
Value& GridCtrl::operator() (Id id)
|
|
{
|
|
return items[vitems[rowidx].id][aliases.Get(id)].val;
|
|
}
|
|
|
|
Value& GridCtrl::operator() (int r, Id id)
|
|
{
|
|
return items[vitems[r + fixed_rows].id][aliases.Get(id)].val;
|
|
}
|
|
|
|
Value& GridCtrl::operator() (const char * alias)
|
|
{
|
|
return items[vitems[rowidx].id][aliases.Get(alias)].val;
|
|
}
|
|
|
|
Value& GridCtrl::operator() (int r, const char * alias)
|
|
{
|
|
return items[vitems[r + fixed_rows].id][aliases.Get(alias)].val;
|
|
}
|
|
|
|
void GridCtrl::SetSummary(int c, const Value& val)
|
|
{
|
|
summary[c].val = val;
|
|
RefreshSummary();
|
|
}
|
|
|
|
void GridCtrl::SetSummary(Id id, const Value& val)
|
|
{
|
|
summary[aliases.Get(id)].val = val;
|
|
RefreshSummary();
|
|
}
|
|
|
|
Value GridCtrl::GetSummary(int c)
|
|
{
|
|
return summary[c + fixed_cols].val;
|
|
}
|
|
|
|
Value GridCtrl::GetSummary(Id id)
|
|
{
|
|
return summary[aliases.Get(id)].val;
|
|
}
|
|
|
|
bool GridCtrl::IsModified(int r, int c)
|
|
{
|
|
return items[vitems[r + fixed_rows].id][c + fixed_cols].modified;
|
|
}
|
|
|
|
bool GridCtrl::IsModified(int c)
|
|
{
|
|
return items[vitems[rowidx].id][c + fixed_cols].modified;
|
|
}
|
|
|
|
bool GridCtrl::IsModified(int r, Id id)
|
|
{
|
|
return items[vitems[r + fixed_rows].id][aliases.Get(id)].modified;
|
|
}
|
|
|
|
bool GridCtrl::IsModified(Id id)
|
|
{
|
|
return items[vitems[rowidx].id][aliases.Get(id)].modified;
|
|
}
|
|
|
|
Vector<Value> GridCtrl::ReadCol(int n, int start_row, int end_row) const
|
|
{
|
|
Vector<Value> v;
|
|
int idx = hitems[n < 0 ? colidx : n + fixed_cols].id;
|
|
|
|
if(start_row < 0)
|
|
start_row = fixed_rows;
|
|
else
|
|
start_row += fixed_rows;
|
|
|
|
if(end_row < 0)
|
|
end_row = total_rows - 1;
|
|
else
|
|
end_row += fixed_rows;
|
|
|
|
for(int i = start_row; i <= end_row; i++)
|
|
v.Add(items[i][idx].val);
|
|
|
|
return v;
|
|
}
|
|
|
|
Vector<Value> GridCtrl::ReadRow(int n, int start_col, int end_col) const
|
|
{
|
|
Vector<Value> v;
|
|
int idy = vitems[n < 0 ? rowidx : n + fixed_rows].id;
|
|
|
|
if(start_col < 0)
|
|
start_col = fixed_cols;
|
|
else
|
|
start_col += fixed_cols;
|
|
|
|
if(end_col < 0)
|
|
end_col = total_cols - 1;
|
|
else
|
|
end_col += fixed_cols;
|
|
|
|
for(int i = start_col; i <= end_col; i++)
|
|
v.Add(items[idy][i].val);
|
|
|
|
return v;
|
|
}
|
|
|
|
Vector< Vector<Value> > GridCtrl::GetValues()
|
|
{
|
|
Vector< Vector<Value> > v;
|
|
|
|
int rows_cnt = total_rows - fixed_rows;
|
|
int cols_cnt = total_cols - fixed_cols;
|
|
|
|
v.SetCount(rows_cnt);
|
|
|
|
for(int i = 0; i < rows_cnt; i++)
|
|
{
|
|
v[i].SetCount(cols_cnt);
|
|
|
|
for(int j = 0; j < cols_cnt; j++)
|
|
{
|
|
const Value &val = items[i + fixed_rows][j + fixed_cols].val;
|
|
if(IsType<AttrText>(val))
|
|
{
|
|
const AttrText& t = ValueTo<AttrText>(val);
|
|
v[i][j] = t.text;
|
|
}
|
|
else
|
|
v[i][j] = val;
|
|
}
|
|
}
|
|
|
|
return v;
|
|
}
|
|
|
|
void GridCtrl::SetValues(const Vector< Vector<Value> >& v)
|
|
{
|
|
int rows_cnt = v.GetCount();
|
|
|
|
if(rows_cnt <= 0)
|
|
return;
|
|
|
|
int cols_cnt = v[0].GetCount();
|
|
|
|
int tc = total_cols - fixed_cols;
|
|
if(cols_cnt > tc)
|
|
cols_cnt = tc;
|
|
|
|
SetRowCount(rows_cnt);
|
|
|
|
for(int i = 0; i < rows_cnt; i++)
|
|
for(int j = 0; j < cols_cnt; j++)
|
|
{
|
|
int r = i + fixed_rows;
|
|
int c = j + fixed_cols;
|
|
Ctrl * ctrl = items[r][c].ctrl;
|
|
if(ctrl)
|
|
ctrl->SetData(v[i][j]);
|
|
items[r][c].val = v[i][j];
|
|
}
|
|
|
|
SyncCtrls();
|
|
SyncSummary();
|
|
Refresh();
|
|
}
|
|
|
|
GridCtrl& GridCtrl::Add(const Vector<Value> &v, int offset, int count, bool hidden)
|
|
{
|
|
Append0(1, hidden ? 0 : GD_ROW_HEIGHT);
|
|
|
|
int cnt = min(count < 0 ? v.GetCount() : count,
|
|
total_cols - fixed_cols);
|
|
|
|
int r0 = total_rows - 1;
|
|
int r = vitems[r0].id;
|
|
for(int i = offset; i < cnt; i++)
|
|
items[r][i + fixed_cols].val = v[i];
|
|
|
|
RefreshRow(r0, 0, 0);
|
|
|
|
return *this;
|
|
}
|
|
|
|
bool GridCtrl::IsColumn(const Id& id)
|
|
{
|
|
return valid_cursor ? hitems[curpos.x].id == aliases.Get(id) : false;
|
|
}
|
|
|
|
GridCtrl::ItemRect& GridCtrl::GetColumn(int n)
|
|
{
|
|
return hitems[GetIdCol(n + fixed_cols)];
|
|
}
|
|
|
|
GridCtrl::ItemRect& GridCtrl::GetColumn()
|
|
{
|
|
return hitems[curpos.x];
|
|
}
|
|
|
|
GridCtrl::ItemRect& GridCtrl::GetRow(int n)
|
|
{
|
|
return vitems[n + fixed_rows];
|
|
}
|
|
|
|
GridCtrl::ItemRect& GridCtrl::GetRow()
|
|
{
|
|
return vitems[rowidx];
|
|
}
|
|
|
|
int GridCtrl::GetCurrentRow() const
|
|
{
|
|
return rowidx - fixed_rows;
|
|
}
|
|
|
|
bool GridCtrl::IsCurrentRow() const
|
|
{
|
|
return rowidx == curpos.y;
|
|
}
|
|
|
|
void GridCtrl::RestoreCurrentRow()
|
|
{
|
|
rowidx = curpos.y;
|
|
}
|
|
|
|
GridCtrl::Item& GridCtrl::GetCell(int n, int m)
|
|
{
|
|
return items[vitems[n + fixed_rows].id][hitems[m + fixed_cols].id];
|
|
}
|
|
|
|
GridCtrl::Item& GridCtrl::GetCell(int n, Id id)
|
|
{
|
|
return items[vitems[n + fixed_rows].id][hitems[aliases.Get(id)].id];
|
|
}
|
|
|
|
int GridCtrl::GetMouseCol(Point &p, bool relative, bool fixed, bool full)
|
|
{
|
|
if(!full && p.x < fixed_width)
|
|
return -1;
|
|
|
|
int dx = 0;
|
|
|
|
if(relative)
|
|
dx += sbx;
|
|
|
|
int first_col = fixed ? 0 : max(firstVisCol, fixed_cols);
|
|
int last_col = max(lastVisCol, fixed_cols - 1);
|
|
|
|
if(!fixed && last_col >= total_cols)
|
|
return -1;
|
|
|
|
for(int i = first_col; i <= last_col; i++)
|
|
{
|
|
if(p.x >= hitems[i].nLeft(dx) &&
|
|
p.x < hitems[i].nRight(dx))
|
|
return i;
|
|
}
|
|
return -1;
|
|
}
|
|
|
|
int GridCtrl::GetMouseRow(Point &p, bool relative, bool fixed, bool full)
|
|
{
|
|
if(!full && p.y < fixed_height)
|
|
return -1;
|
|
|
|
int dy = 0;
|
|
|
|
if(relative)
|
|
dy += sby;
|
|
|
|
int first_row = fixed ? 0 : max(firstVisRow, fixed_rows);
|
|
int last_row = max(lastVisRow, fixed_rows - 1);
|
|
|
|
if(!fixed && last_row >= total_rows)
|
|
return -1;
|
|
|
|
for(int i = first_row; i <= last_row; i++)
|
|
{
|
|
if(p.y >= vitems[i].nTop(dy) &&
|
|
p.y < vitems[i].nBottom(dy))
|
|
return i;
|
|
}
|
|
return -1;
|
|
}
|
|
|
|
void GridCtrl::MouseAccel(const Point &p, bool horz, bool vert, dword keyflags)
|
|
{
|
|
Size sz = GetSize();
|
|
int speedx = 0, speedy = 0;
|
|
const int bound = 5;
|
|
|
|
if(horz)
|
|
{
|
|
if(p.x > sz.cx - bound)
|
|
speedx = p.x - (sz.cx - bound);
|
|
else if(p.x < fixed_width + bound)
|
|
speedx = -(bound - p.x + fixed_width);
|
|
}
|
|
|
|
if(vert)
|
|
{
|
|
if(p.y > sz.cy - bound)
|
|
speedy = p.y - (sz.cy - bound);
|
|
else if(p.y < fixed_height + bound)
|
|
speedy = -(bound - p.y + fixed_height);
|
|
}
|
|
|
|
if(speedx) sbx.Set(sbx + speedx);
|
|
if(speedy) sby.Set(sby + speedy);
|
|
|
|
if(speedx || speedy)
|
|
{
|
|
LG(0, "speedx %d, speedy %d", speedx, speedy);
|
|
MouseMove(p, keyflags);
|
|
}
|
|
|
|
}
|
|
|
|
Image GridCtrl::HorzPosImage()
|
|
{
|
|
#ifdef PLATFORM_X11
|
|
return Image::SizeHorz();
|
|
#else
|
|
return GridImg::HorzPos();
|
|
#endif
|
|
}
|
|
|
|
Image GridCtrl::VertPosImage()
|
|
{
|
|
#ifdef PLATFORM_X11
|
|
return Image::SizeVert();
|
|
#else
|
|
return GridImg::VertPos();
|
|
#endif
|
|
}
|
|
|
|
Image GridCtrl::CursorImage(Point p, dword keyflags)
|
|
{
|
|
if(!moving_header && !moving_body && HasCapture())
|
|
{
|
|
if(resizing_cols && curSplitCol >= 0)
|
|
return HorzPosImage();
|
|
if(resizing_rows && curSplitRow >= 0)
|
|
return VertPosImage();
|
|
else
|
|
return Image::Arrow();
|
|
}
|
|
|
|
if(moving_header)
|
|
{
|
|
curSplitCol = GetSplitCol(p, -1);
|
|
curSplitRow = GetSplitRow(p, -1);
|
|
|
|
if(resize_col_mode == 0 || resize_row_mode == 0)
|
|
MouseAccel(p, fixed_top_click, fixed_left_click, keyflags);
|
|
|
|
return Image::Arrow();
|
|
}
|
|
else if(moving_body)
|
|
{
|
|
curSplitRow = GetSplitRow(Point(0, p.y), -1);
|
|
return Image::Arrow();
|
|
}
|
|
else if(mouse_move)
|
|
{
|
|
curSplitCol = GetSplitCol(p);
|
|
curSplitRow = GetSplitRow(p);
|
|
mouse_move = false;
|
|
}
|
|
|
|
curResizeCol = curResizeRow = false;
|
|
|
|
if(resizing_cols && curSplitCol >= 0 || resizeCol)
|
|
{
|
|
if(curSplitCol >= 0 && hitems[curSplitCol].join > 0)
|
|
{
|
|
int idy = GetMouseRow(p, true, p.y < fixed_height, true);
|
|
if(idy >= 0)
|
|
{
|
|
Item &it = items[vitems[idy].id][hitems[curSplitCol].id];
|
|
if(it.isjoined && it.idx + it.cx != curSplitCol)
|
|
return Image::Arrow();
|
|
}
|
|
}
|
|
curResizeCol = true;
|
|
return HorzPosImage();
|
|
}
|
|
else if(resizing_rows && curSplitRow >= 0 || resizeRow)
|
|
{
|
|
if(curSplitRow >= 0 && vitems[curSplitRow].join > 0)
|
|
{
|
|
int idx = GetMouseCol(p, true, p.x < fixed_width, true);
|
|
if(idx >= 0)
|
|
{
|
|
Item &it = items[vitems[curSplitRow].id][hitems[idx].id];
|
|
if(it.isjoined && it.idy + it.cy != curSplitRow)
|
|
return Image::Arrow();
|
|
}
|
|
}
|
|
curResizeRow = true;
|
|
return VertPosImage();
|
|
}
|
|
return Image::Arrow();
|
|
}
|
|
|
|
|
|
void GridCtrl::UpdateHolder(bool force)
|
|
{
|
|
if(size_changed || force)
|
|
{
|
|
holder.SetOffset(Point(fixed_width, fixed_height));
|
|
holder.HSizePos(fixed_width, 0).VSizePos(fixed_height, summary_height);
|
|
size_changed = false;
|
|
}
|
|
}
|
|
|
|
GridCtrl::CurState GridCtrl::SetCursor0(int x, int y, int opt, int dirx, int diry)
|
|
{
|
|
return SetCursor0(Point(x, y), opt, dirx, diry);
|
|
}
|
|
|
|
GridCtrl::CurState GridCtrl::SetCursor0(Point p, int opt, int dirx, int diry)
|
|
{
|
|
CurState cs;
|
|
if(!row_changing)
|
|
{
|
|
cs.valid = false;
|
|
return cs;
|
|
}
|
|
|
|
bool mouse = opt & CU_MOUSE;
|
|
bool highlight = opt & CU_HIGHLIGHT;
|
|
bool ctrlmode = opt & CU_CTRLMODE;
|
|
bool hidectrls = opt & CU_HIDECTRLS;
|
|
|
|
Point tmpcur;
|
|
|
|
bool mouse_valid = true;
|
|
|
|
if(mouse)
|
|
{
|
|
tmpcur.x = GetMouseCol(p, true, false);
|
|
tmpcur.y = GetMouseRow(p, true, false);
|
|
if(tmpcur.x < 0 || tmpcur.y < 0)
|
|
mouse_valid = false;
|
|
}
|
|
else
|
|
tmpcur = p;
|
|
|
|
if(!highlight && dirx == 0 && diry == 0 && !IsValidCursor(tmpcur))
|
|
{
|
|
cs.valid = false;
|
|
return cs;
|
|
}
|
|
|
|
Point oldcur = highlight ? livecur : curpos;
|
|
|
|
bool oldvalid = IsValidCursorAll(oldcur);
|
|
bool newvalid = false;
|
|
Item *nit = NULL;
|
|
|
|
if(!highlight && mouse_valid)
|
|
{
|
|
bool quit = false;
|
|
|
|
int fc = max(fixed_cols, firstVisCol);
|
|
int lc = lastVisCol;
|
|
int fr = max(fixed_rows, firstVisRow);
|
|
int lr = lastVisRow;
|
|
|
|
Item *oit = oldvalid ? &GetItem(oldcur) : NULL;
|
|
|
|
while(true)
|
|
{
|
|
bool cur = IsValidCursor(tmpcur, fc, lc, fr, lr);
|
|
|
|
bool hidden = true;
|
|
bool clickable = true;
|
|
bool group = true;
|
|
|
|
if(cur)
|
|
{
|
|
ItemRect& h = hitems[tmpcur.x];
|
|
ItemRect& v = vitems[tmpcur.y];
|
|
bool hx = dirx != 0 ? h.hidden : false;
|
|
bool hy = diry != 0 ? v.hidden : false;
|
|
hidden = hx || hy;
|
|
clickable = h.clickable && v.clickable;
|
|
if(oit && oit->group >= 0 && !select_row)
|
|
{
|
|
nit = &GetItem(tmpcur);
|
|
group = nit->group != oit->group;
|
|
}
|
|
}
|
|
|
|
newvalid = cur && !hidden && clickable && group;
|
|
|
|
if(newvalid)
|
|
{
|
|
int idx = hitems[tmpcur.x].id;
|
|
int idy = vitems[tmpcur.y].id;
|
|
|
|
Item &it = items[idy][idx];
|
|
|
|
newvalid = it.clickable;
|
|
|
|
if(newvalid && ctrlmode)
|
|
{
|
|
Ctrl * ctrl = it.ctrl;
|
|
if(!ctrl && isedit)
|
|
ctrl = edits[idx].ctrl;
|
|
|
|
if(ctrl && it.editable && ctrl->IsEnabled())
|
|
break;
|
|
}
|
|
}
|
|
|
|
if(newvalid && !ctrlmode)
|
|
break;
|
|
|
|
if(quit || (dirx == 0 && diry == 0))
|
|
return cs;
|
|
|
|
if(dirx != 0)
|
|
{
|
|
tmpcur.x += dirx;
|
|
|
|
if(tmpcur.x > lc)
|
|
{
|
|
if(tab_changes_row && diry == 0)
|
|
{
|
|
tmpcur.y += 1;
|
|
if(tmpcur.y > lr)
|
|
{
|
|
tmpcur.y = lr;
|
|
tmpcur.x = lc;
|
|
quit = true;
|
|
}
|
|
else
|
|
tmpcur.x = fc;
|
|
}
|
|
else
|
|
quit = true;
|
|
}
|
|
else if(tmpcur.x < fc)
|
|
{
|
|
if(tab_changes_row && diry == 0)
|
|
{
|
|
tmpcur.y -= 1;
|
|
if(tmpcur.y < fr)
|
|
{
|
|
tmpcur.y = fr;
|
|
tmpcur.x = fc;
|
|
quit = true;
|
|
}
|
|
else
|
|
tmpcur.x = lc;
|
|
}
|
|
else
|
|
quit = true;
|
|
}
|
|
continue;
|
|
}
|
|
|
|
if(diry != 0)
|
|
{
|
|
tmpcur.y += diry;
|
|
|
|
if(tmpcur.y < fr)
|
|
{
|
|
tmpcur.y = fr;
|
|
quit = true;
|
|
}
|
|
else if(tmpcur.y > lr)
|
|
{
|
|
tmpcur.y = lr;
|
|
quit = true;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
else
|
|
{
|
|
newvalid = IsValidCursor(tmpcur);
|
|
if(newvalid && highlight)
|
|
{
|
|
if(!vitems[tmpcur.y].clickable || !hitems[tmpcur.x].clickable)
|
|
newvalid = false;
|
|
}
|
|
}
|
|
|
|
bool isnewcol = oldcur.x != tmpcur.x;
|
|
bool isnewrow = oldcur.y != tmpcur.y;
|
|
|
|
if(isnewcol || isnewrow)
|
|
this->oldcur = oldcur;
|
|
|
|
cs.valid = newvalid;
|
|
|
|
if(!highlight)
|
|
{
|
|
if(!GetCtrlsData(!isnewrow))
|
|
{
|
|
cs.accepted = false;
|
|
return cs;
|
|
}
|
|
else
|
|
{
|
|
cs.accepted = true;
|
|
if(hidectrls && (edit_mode == GE_CELL || (edit_mode == GE_ROW && (isnewrow || !newvalid))))
|
|
{
|
|
UpdateCtrls(UC_HIDE | UC_CTRLS | UC_OLDCUR);
|
|
if(!one_click_edit || !newvalid)
|
|
WhenEndEdit();
|
|
}
|
|
}
|
|
|
|
oldvalid = IsValidCursorAll(oldcur);
|
|
}
|
|
|
|
if(tmpcur == oldcur)
|
|
return cs;
|
|
|
|
if(highlight)
|
|
{
|
|
livecur = tmpcur;
|
|
|
|
if(oldvalid)
|
|
{
|
|
SetItemCursor(oldcur, false, true);
|
|
RefreshRow(oldcur.y, 0);
|
|
}
|
|
if(newvalid)
|
|
{
|
|
SetItemCursor(tmpcur, true, true);
|
|
RefreshRow(tmpcur.y, 0);
|
|
}
|
|
return cs;
|
|
}
|
|
|
|
if(!newvalid)
|
|
return cs;
|
|
|
|
if(isnewrow)
|
|
WhenBeforeChangeRow();
|
|
|
|
if(isnewcol)
|
|
WhenBeforeChangeCol();
|
|
|
|
cs.newx = isnewcol;
|
|
cs.newy = isnewrow;
|
|
|
|
Point t_curpos = curpos;
|
|
Point t_curid = curid;
|
|
int t_colidx = colidx;
|
|
int t_rowidx = rowidx;
|
|
bool t_valid_cursor = valid_cursor;
|
|
|
|
valid_cursor = true;
|
|
curpos = tmpcur;
|
|
colidx = curpos.x;
|
|
rowidx = curpos.y;
|
|
|
|
curid.x = hitems[curpos.x].id;
|
|
curid.y = vitems[curpos.y].id;
|
|
|
|
WhenCursor();
|
|
|
|
if(cancel_cursor)
|
|
{
|
|
cancel_cursor = false;
|
|
curpos = t_curpos;
|
|
curid = t_curid;
|
|
colidx = t_colidx;
|
|
rowidx = t_rowidx;
|
|
valid_cursor = t_valid_cursor;
|
|
cs.Clear();
|
|
return cs;
|
|
}
|
|
|
|
if(oldvalid)
|
|
{
|
|
SetItemCursor(oldcur, false, highlight);
|
|
RefreshRow(oldcur.y, 0);
|
|
}
|
|
|
|
SetItemCursor(tmpcur, true, false);
|
|
if(isnewrow || (!select_row && isnewcol))
|
|
RefreshRow(tmpcur.y, 0);
|
|
|
|
if(call_whenchangerow && isnewrow)
|
|
{
|
|
#ifdef LOG_CALLBACKS
|
|
LGR(2, "WhenChangeRow()");
|
|
LGR(2, Format("[row: %d]", rowidx));
|
|
#endif
|
|
WhenChangeRow();
|
|
}
|
|
|
|
if(call_whenchangecol && isnewcol)
|
|
{
|
|
#ifdef LOG_CALLBACKS
|
|
LGR(2, "WhenChangeCol()");
|
|
LGR(2, Format("[col: %d]",colidx));
|
|
#endif
|
|
WhenChangeCol();
|
|
}
|
|
|
|
if(isnewrow)
|
|
SetCtrlsData();
|
|
|
|
LG(0, "cur(%d, %d)", curpos.x, curpos.y);
|
|
|
|
return cs;
|
|
}
|
|
|
|
int GridCtrl::GetWidth(int n)
|
|
{
|
|
if(n < 0) n = total_cols;
|
|
if(n == 0) return 0;
|
|
return hitems[n - 1].nRight();
|
|
}
|
|
|
|
int GridCtrl::GetHeight(int n)
|
|
{
|
|
if(n < 0) n = total_rows;
|
|
if(n == 0) return 0;
|
|
return vitems[n - 1].nBottom();
|
|
}
|
|
|
|
int GridCtrl::GetFixedWidth()
|
|
{
|
|
return GetWidth(fixed_cols);
|
|
}
|
|
|
|
int GridCtrl::GetFixedHeight()
|
|
{
|
|
return GetHeight(fixed_rows);
|
|
}
|
|
|
|
int GridCtrl::GetFirst0(Vector<ItemRect> &its, int total, int sb, int p)
|
|
{
|
|
int l = 0;
|
|
int r = total - 1;
|
|
|
|
while(l <= r)
|
|
{
|
|
int i = (l + r) / 2;
|
|
|
|
int p0 = its[i].nLeft(sb);
|
|
int p1 = its[i].nRight(sb);
|
|
|
|
if(p0 <= p && p1 >= p)
|
|
{
|
|
if(!its[i].hidden)
|
|
{
|
|
return i;
|
|
}
|
|
else
|
|
{
|
|
for(int j = i + 1; j < total; j++)
|
|
if(!its[j].hidden)
|
|
return j;
|
|
for(int j = i - 1; j > 0; j--)
|
|
if(!its[j].hidden)
|
|
return j;
|
|
|
|
return -1;
|
|
}
|
|
}
|
|
|
|
if(p1 < p)
|
|
l = i + 1;
|
|
else
|
|
r = i - 1;
|
|
}
|
|
return -1;
|
|
}
|
|
|
|
int GridCtrl::GetFirstVisCol(int p)
|
|
{
|
|
return total_cols <= 2 ? fixed_cols : GetFirst0(hitems, total_cols, sbx, p);
|
|
}
|
|
|
|
int GridCtrl::GetFirstVisRow(int p)
|
|
{
|
|
return total_rows <= 1 ? fixed_rows : GetFirst0(vitems, total_rows, sby, p);
|
|
}
|
|
|
|
GridCtrl& GridCtrl::SetColWidth(int n, int width, bool recalc /* = true */)
|
|
{
|
|
if(resize_col_mode > 0 && n >= fixed_cols)
|
|
return *this;
|
|
|
|
hitems[n].Width(width);
|
|
Repaint(true, false);
|
|
|
|
return *this;
|
|
}
|
|
|
|
GridCtrl& GridCtrl::SetRowHeight(int n, int height, bool recalc)
|
|
{
|
|
LG(0, "SetRowHeight %d %d", n, height);
|
|
|
|
if(resize_row_mode > 0 && n >= fixed_rows)
|
|
return *this;
|
|
|
|
vitems[n].Height(height);
|
|
Repaint(false, true);
|
|
|
|
return *this;
|
|
}
|
|
|
|
bool GridCtrl::SetDiffItemSize(bool horizontal, RectItems &its, int n, int diff, bool newsize)
|
|
{
|
|
if(diff == 0)
|
|
return false;
|
|
|
|
if(diff < 0 && its[n].IsMin())
|
|
return false;
|
|
|
|
if(diff > 0 && its[n].IsMax())
|
|
return false;
|
|
|
|
int resize_mode = horizontal ? resize_col_mode : resize_row_mode;
|
|
|
|
if(resize_mode > 0 && diff > 0)
|
|
{
|
|
bool ismin = true;
|
|
for(int i = n + 1; i < (horizontal ? total_cols : total_rows); i++)
|
|
if(!its[i].IsMin())
|
|
{
|
|
ismin = false;
|
|
break;
|
|
}
|
|
if(ismin)
|
|
return false;
|
|
}
|
|
|
|
double size = its[n].size + diff;
|
|
|
|
if(size <= its[n].min)
|
|
{
|
|
size = its[n].min;
|
|
its[n].ismin = true;
|
|
}
|
|
else if(size >= its[n].max)
|
|
{
|
|
size = its[n].max;
|
|
its[n].ismax = true;
|
|
}
|
|
else
|
|
{
|
|
its[n].ismin = false;
|
|
its[n].ismax = false;
|
|
}
|
|
|
|
double ddiff = size - its[n].size;
|
|
|
|
if(ddiff != 0)
|
|
{
|
|
Recalc(horizontal, its, n, size, ddiff);
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
void GridCtrl::Recalc(bool horizontal, RectItems &its, int n, double size, double diff)
|
|
{
|
|
its[n].size = size;
|
|
|
|
Size sz = GetSize();
|
|
int cnt = horizontal ? total_cols : total_rows;
|
|
int maxsize = horizontal ? sz.cx : sz.cy;
|
|
int tcnt = cnt;
|
|
|
|
int resize_mode = horizontal ? resize_col_mode : resize_row_mode;
|
|
|
|
if(resize_mode == 0)
|
|
{
|
|
for(int i = n + 1; i < cnt; i++)
|
|
its[i].pos += diff;
|
|
}
|
|
else if(resize_mode == 1)
|
|
{
|
|
double imaxsize = 1.0 / (double) maxsize;
|
|
double ms = maxsize;
|
|
|
|
loop:
|
|
double sumprop = 0;
|
|
|
|
for(int i = cnt - 1; i >= n + 1; --i)
|
|
{
|
|
if(its[i].hidden) continue;
|
|
|
|
bool prop = (diff > 0 && its[i].IsMin() || diff < 0 && its[i].IsMax());
|
|
if(!prop)
|
|
sumprop += its[i].prop;
|
|
}
|
|
|
|
double cps = sumprop != 0 ? -diff / sumprop : 0;
|
|
|
|
for(int i = cnt - 1; i >= n + 1; --i)
|
|
{
|
|
if(its[i].hidden)
|
|
{
|
|
its[i].pos = ms;
|
|
continue;
|
|
}
|
|
|
|
if(!(diff > 0 && its[i].IsMin() || diff < 0 && its[i].IsMax()))
|
|
{
|
|
double size = its[i].size + its[i].prop * cps;
|
|
|
|
bool minsize = (diff > 0 && size < its[i].min);
|
|
bool maxsize = (diff < 0 && size > its[i].max);
|
|
|
|
its[i].ismin = minsize;
|
|
its[i].ismax = maxsize;
|
|
|
|
if(minsize || maxsize)
|
|
{
|
|
diff += size - its[i].size;
|
|
double ns = minsize ? its[i].min : its[i].max;
|
|
its[i].size = ns;
|
|
its[i].prop = ns * imaxsize;
|
|
cnt = i + 1;
|
|
goto loop;
|
|
}
|
|
its[i].size = size;
|
|
its[i].prop = size * imaxsize;
|
|
}
|
|
ms -= its[i].size;
|
|
its[i].pos = ms;
|
|
}
|
|
|
|
its[n].size -= its[n].pos + its[n].size - ms;
|
|
its[n].prop = its[n].size * imaxsize;
|
|
}
|
|
|
|
CalcIntPos(its, n, maxsize, tcnt - 1, resize_mode, false);
|
|
}
|
|
|
|
void GridCtrl::CalcIntPos(RectItems &its, int n, int maxsize, int cnt, int resize_mode, bool renumber)
|
|
{
|
|
its[0].npos = 0;
|
|
|
|
int last_vis = 1;
|
|
int hidden = 0;
|
|
|
|
for(int i = (renumber ? 1 : max(1, n)); i <= cnt ; i++)
|
|
{
|
|
its[i].npos = Round(its[i].Left());
|
|
its[i - 1].nsize = its[i].npos - its[i - 1].npos;
|
|
|
|
if(renumber)
|
|
its[i].n = hidden;
|
|
|
|
if(its[i].hidden)
|
|
hidden++;
|
|
else
|
|
last_vis = i;
|
|
}
|
|
|
|
last_vis = cnt;
|
|
if(resize_mode > 0)
|
|
{
|
|
int size = maxsize - its[last_vis].npos;
|
|
its[last_vis].nsize = size ;//>= its[cnt].min && size <= its[cnt].max ? size : Round(its[cnt].size);
|
|
}
|
|
else
|
|
its[last_vis].nsize = Round(its[last_vis].size);
|
|
}
|
|
|
|
bool GridCtrl::UpdateSizes()
|
|
{
|
|
total_width = total_cols ? hitems[total_cols - 1].nRight() : 0;
|
|
total_height = total_rows ? vitems[total_rows - 1].nRight() : 0;
|
|
|
|
int prev_summary_height = summary_height;
|
|
|
|
summary_height = summary_row ? GD_HDR_HEIGHT : 0;
|
|
|
|
size_changed = prev_summary_height != summary_height;
|
|
|
|
int new_fixed_width = fixed_cols ? hitems[fixed_cols - 1].nRight() : 0;
|
|
int new_fixed_height = fixed_rows ? vitems[fixed_rows - 1].nRight() : 0;
|
|
|
|
Size sz = GetSize();
|
|
|
|
if(resize_col_mode > 0 && new_fixed_width >= sz.cx)
|
|
new_fixed_width = GridCtrl::GD_IND_WIDTH;
|
|
|
|
if(resize_row_mode > 0 && new_fixed_height >= sz.cy)
|
|
new_fixed_height = GridCtrl::GD_HDR_HEIGHT;
|
|
|
|
if(fixed_cols == 1 && !indicator)
|
|
new_fixed_width = 0;
|
|
|
|
if(new_fixed_width != fixed_width)
|
|
{
|
|
fixed_width = new_fixed_width;
|
|
size_changed = true;
|
|
}
|
|
|
|
if(new_fixed_height != fixed_height)
|
|
{
|
|
fixed_height = new_fixed_height;
|
|
size_changed = true;
|
|
}
|
|
|
|
return size_changed;
|
|
}
|
|
|
|
bool GridCtrl::UpdateCols(bool force)
|
|
{
|
|
Size sz = GetSize();
|
|
bool change = false;;
|
|
|
|
if((osz.cx != sz.cx && resize_col_mode > 0) || force || recalc_cols)
|
|
{
|
|
RecalcCols(-1);
|
|
recalc_cols = false;
|
|
change = true;
|
|
}
|
|
|
|
osz.cx = sz.cx;
|
|
return change;
|
|
}
|
|
|
|
bool GridCtrl::UpdateRows(bool force)
|
|
{
|
|
Size sz = GetSize();
|
|
bool change = false;;
|
|
|
|
if((osz.cy != sz.cy && resize_row_mode > 0) || force || recalc_rows)
|
|
{
|
|
RecalcRows(-1);
|
|
recalc_rows = false;
|
|
change = true;
|
|
}
|
|
osz.cy = sz.cy;
|
|
return change;
|
|
}
|
|
|
|
bool GridCtrl::Recalc(bool horizontal, RectItems &its, int resize_mode)
|
|
{
|
|
Size sz = GetSize();
|
|
|
|
if(resize_mode < 0)
|
|
resize_mode = horizontal ? resize_col_mode : resize_row_mode;
|
|
|
|
int fixed = horizontal ? fixed_cols : fixed_rows;
|
|
int cnt = horizontal ? total_cols : total_rows;
|
|
int tcnt = cnt;
|
|
|
|
its[0].pos = 0;
|
|
|
|
if(!horizontal && !header)
|
|
its[0].size = 0;
|
|
|
|
if(resize_mode == 0)
|
|
{
|
|
for(int i = 1; i < cnt; i++)
|
|
its[i].pos = its[i - 1].pos + its[i - 1].size;
|
|
}
|
|
else if(resize_mode == 1)
|
|
{
|
|
int cs = horizontal ? sz.cx - fixed_width
|
|
: sz.cy - fixed_height;
|
|
|
|
//int cs = horizontal ? sz.cx : sz.cy;
|
|
|
|
if(cs <= 0)
|
|
return false;
|
|
|
|
double imaxsize = 1.0 / cs;
|
|
|
|
for(int i = fixed; i < cnt; i++)
|
|
{
|
|
its[i].ismin = false;
|
|
its[i].ismax = false;
|
|
}
|
|
|
|
double sumprop = 0;
|
|
for(int i = fixed; i < cnt; i++)
|
|
if(!its[i].hidden)
|
|
sumprop += its[i].prop;
|
|
|
|
double ics = sumprop <= 0 ? 0 : cs / sumprop;
|
|
sumprop = 0;
|
|
|
|
for(int i = fixed; i < cnt; i++)
|
|
{
|
|
if(its[i].hidden)
|
|
continue;
|
|
|
|
its[i].size = its[i].prop * ics;
|
|
|
|
if(its[i].size < its[i].min)
|
|
{
|
|
cs -= its[i].min;
|
|
its[i].size = its[i].min;
|
|
its[i].ismin = true;
|
|
its[i].prop = its[i].min * imaxsize;
|
|
}
|
|
else if(its[i].size > its[i].max)
|
|
{
|
|
cs -= its[i].max;
|
|
its[i].size = its[i].max;
|
|
its[i].ismax = true;
|
|
its[i].prop = its[i].max * imaxsize;
|
|
}
|
|
else
|
|
sumprop += its[i].prop;
|
|
}
|
|
|
|
ics = sumprop <= 0 ? 0 : cs / sumprop;
|
|
|
|
for(int i = fixed; i < cnt; i++)
|
|
{
|
|
its[i].pos = i == 0 ? 0 : its[i - 1].Right();
|
|
if(its[i].hidden)
|
|
{
|
|
its[i].size = 0;
|
|
//its[i].prop = 0;
|
|
continue;
|
|
}
|
|
|
|
if(!its[i].ismin && !its[i].ismax)
|
|
its[i].size = its[i].prop * ics;
|
|
its[i].prop = its[i].size * imaxsize;
|
|
}
|
|
}
|
|
|
|
CalcIntPos(its, 0, horizontal ? sz.cx : sz.cy, tcnt - 1, resize_mode, true);
|
|
|
|
UpdateVisColRow(horizontal);
|
|
oldpos.x = sbx;
|
|
oldpos.y = sby;
|
|
|
|
return true;
|
|
}
|
|
|
|
bool GridCtrl::RecalcCols(int mode)
|
|
{
|
|
return Recalc(true, hitems, mode);
|
|
}
|
|
|
|
bool GridCtrl::RecalcRows(int mode)
|
|
{
|
|
return Recalc(false, vitems, mode);
|
|
}
|
|
|
|
int GridCtrl::GetSplitCol(const Point &p, int splitSize, bool full)
|
|
{
|
|
if(total_cols < 2)
|
|
return -1;
|
|
|
|
int diff = 0;
|
|
if(p.x > fixed_width || moving_body || moving_header)
|
|
{
|
|
if(!full && !full_col_resizing && p.y >= fixed_height)
|
|
return -1;
|
|
diff = sbx;
|
|
}
|
|
else if(p.y < fixed_height - splitSize)
|
|
return -1;
|
|
|
|
int tc = splitSize >= 0 ? (resize_col_mode == 0 ? 0 : 1) : 0;
|
|
|
|
int fc = lastVisCol - tc;
|
|
int lc = resizing_fixed_cols ? 1 : firstVisCol;
|
|
|
|
if(splitSize >= 0)
|
|
{
|
|
for(int i = fc; i >= lc; i--)
|
|
{
|
|
if(hitems[i].hidden) continue;
|
|
int x = hitems[i].nRight(diff);
|
|
if(p.x >= x - splitSize &&
|
|
p.x <= x + splitSize)
|
|
return i;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
int c = fc;
|
|
for(int i = fc; i >= lc; i--)
|
|
{
|
|
if(!hitems[i].hidden) c = i;
|
|
int x = hitems[c].nLeft(diff) + hitems[c].nWidth() / 2;
|
|
if(p.x >= x)
|
|
return c < fixed_cols ? firstVisCol - 1 : c;
|
|
else if(i == lc)
|
|
return c - 1;
|
|
}
|
|
}
|
|
|
|
return -1;
|
|
}
|
|
|
|
int GridCtrl::GetSplitRow(const Point &p, int splitSize, bool full)
|
|
{
|
|
if(total_rows < 2)
|
|
return -1;
|
|
|
|
int diff = 0;
|
|
if(p.y > fixed_height || moving_body || moving_header)
|
|
{
|
|
if(!full && !moving_header && !moving_body && !full_row_resizing && p.x >= fixed_width)
|
|
return -1;
|
|
diff = sby;
|
|
}
|
|
else if(p.x < fixed_width)
|
|
return -1;
|
|
|
|
int tr = splitSize >= 0 ? (resize_row_mode == 0 ? 0 : 1) : 0;
|
|
|
|
int fr = lastVisRow - tr;
|
|
int lr = p.y < fixed_height && resizing_fixed_rows ? 0 : firstVisRow;
|
|
|
|
if(splitSize >= 0)
|
|
{
|
|
for(int i = fr; i >= lr; i--)
|
|
{
|
|
if(vitems[i].hidden)
|
|
continue;
|
|
int y = vitems[i].nBottom(diff);
|
|
if(p.y >= y - splitSize &&
|
|
p.y <= y + splitSize)
|
|
return i;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
int c = fr;
|
|
for(int i = fr; i >= lr; i--)
|
|
{
|
|
if(!vitems[i].hidden) c = i;
|
|
int y = vitems[c].nTop(diff) + vitems[c].nHeight() / 2;
|
|
if(p.y >= y)
|
|
return c < fixed_rows ? firstVisRow - 1 : c;
|
|
else if(i == lr)
|
|
return c - 1;
|
|
}
|
|
}
|
|
|
|
return -1;
|
|
}
|
|
|
|
bool GridCtrl::IsValidCursor(const Point &p, int fc, int lc, int fr, int lr) const
|
|
{
|
|
return p.x >= fc && p.x <= lc &&
|
|
p.y >= fr && p.y <= lr;
|
|
}
|
|
|
|
bool GridCtrl::IsValidCursorVis(const Point &p) const
|
|
{
|
|
return p.x >= firstVisCol && p.x <= lastVisCol &&
|
|
p.y >= firstVisRow && p.y <= lastVisRow;
|
|
}
|
|
|
|
bool GridCtrl::IsValidCursorAll(const Point &p) const
|
|
{
|
|
return p.x >= fixed_cols && p.x < total_cols &&
|
|
p.y >= fixed_rows && p.y < total_rows;
|
|
}
|
|
|
|
bool GridCtrl::IsValidCursor(const Point &p) const
|
|
{
|
|
return ready ? IsValidCursorVis(p) : IsValidCursorAll(p);
|
|
}
|
|
|
|
bool GridCtrl::IsValidCursor(int c) const
|
|
{
|
|
c += fixed_rows;
|
|
return c >= fixed_rows && c < total_rows;
|
|
}
|
|
|
|
bool GridCtrl::IsRowEditable(int r)
|
|
{
|
|
if(r < 0)
|
|
r = curpos.y;
|
|
else
|
|
r += fixed_rows;
|
|
|
|
return vitems[r].editable && hitems[curpos.x].editable;
|
|
}
|
|
|
|
bool GridCtrl::IsRowClickable(int r /* = -1*/)
|
|
{
|
|
if(r < 0)
|
|
r = curpos.y;
|
|
else
|
|
r += fixed_rows;
|
|
|
|
return vitems[r].clickable && hitems[curpos.x].clickable;
|
|
}
|
|
|
|
void GridCtrl::SetItemCursor(Point p, bool b, bool highlight)
|
|
{
|
|
if(highlight)
|
|
{
|
|
hitems[p.x].Live(b);
|
|
vitems[p.y].Live(b);
|
|
GetItem(p).Live(b);
|
|
}
|
|
else
|
|
{
|
|
hitems[p.x].Cursor(b);
|
|
vitems[p.y].Cursor(b);
|
|
GetItem(p).Cursor(b);
|
|
}
|
|
}
|
|
|
|
GridCtrl& GridCtrl::Indicator(bool b, int size)
|
|
{
|
|
if(size < 0)
|
|
size = GD_IND_WIDTH;
|
|
indicator = b;
|
|
fixed_width += size * (b ? 1 : -1);
|
|
SetColWidth(0, b ? size : 0);
|
|
return *this;
|
|
}
|
|
|
|
void GridCtrl::RefreshRow(int n, bool relative, bool fixed)
|
|
{
|
|
if(!ready)
|
|
return;
|
|
if(n < 0) { n = rowidx; relative = false; }
|
|
if(relative) n += fixed_rows;
|
|
if(vitems[n].hidden) return;
|
|
int dy = fixed ? 0 : sby;
|
|
int join = vitems[n].join;
|
|
if(join > 0)
|
|
{
|
|
int s = n;
|
|
while(s >= 0 && vitems[s].join > 0) s--; s++;
|
|
int e = n;
|
|
while(e < total_rows && vitems[e].join > 0) e++; e--;
|
|
Refresh(Rect(0, vitems[s].nTop(dy), GetSize().cx, vitems[e].nBottom(dy)));
|
|
}
|
|
else
|
|
Refresh(Rect(0, vitems[n].nTop(dy), GetSize().cx, vitems[n].nBottom(dy)));
|
|
}
|
|
|
|
void GridCtrl::RefreshCol(int n, bool relative, bool fixed)
|
|
{
|
|
if(!ready)
|
|
return;
|
|
if(n < 0) { n = curpos.x; relative = false; }
|
|
if(relative) n += fixed_cols;
|
|
if(hitems[n].hidden) return;
|
|
int dx = fixed ? 0 : sbx;
|
|
Refresh(Rect(hitems[n].nLeft(dx), 0, hitems[n].nRight(dx), GetSize().cy));
|
|
}
|
|
|
|
void GridCtrl::RefreshRows(int from, int to, bool relative, bool fixed)
|
|
{
|
|
if(!ready)
|
|
return;
|
|
if(relative)
|
|
{
|
|
from += fixed_rows;
|
|
to += fixed_rows;
|
|
}
|
|
Refresh(Rect(0, vitems[from].nTop(sby), GetSize().cx, vitems[to].nBottom(sby)));
|
|
}
|
|
|
|
void GridCtrl::RefreshFrom(int from)
|
|
{
|
|
Size sz = GetSize();
|
|
int y = 0;
|
|
if(resize_row_mode == 0)
|
|
if(from > 2 && from <= total_rows)
|
|
y = vitems[from - 1].nBottom(sby);
|
|
Refresh(Rect(0, y, sz.cx, sz.cy));
|
|
}
|
|
|
|
void GridCtrl::RefreshItem(int r, int c, bool relative)
|
|
{
|
|
if(!ready)
|
|
return;
|
|
if(relative)
|
|
{
|
|
c += fixed_cols;
|
|
r += fixed_rows;
|
|
}
|
|
Refresh(GetItemRect(r, c));
|
|
}
|
|
|
|
void GridCtrl::RefreshNewRow()
|
|
{
|
|
RefreshRow(rowidx, 0);
|
|
}
|
|
|
|
void GridCtrl::RefreshTop()
|
|
{
|
|
Refresh(0, 0, GetSize().cx, fixed_height);
|
|
}
|
|
|
|
void GridCtrl::RefreshLeft()
|
|
{
|
|
Refresh(0, fixed_height, fixed_width, GetSize().cy - fixed_height);
|
|
}
|
|
|
|
void GridCtrl::RefreshSummary()
|
|
{
|
|
Size sz = GetSize();
|
|
Refresh(0, sz.cy - GD_HDR_HEIGHT, sz.cx, GD_HDR_HEIGHT);
|
|
}
|
|
|
|
bool GridCtrl::IsMouseBody(Point &p)
|
|
{
|
|
return p.x >= fixed_width && p.x < total_width && p.y >= fixed_height && p.y < total_height;
|
|
}
|
|
|
|
int GridCtrl::GetIdCol(int id, bool checkall) const
|
|
{
|
|
for(int i = checkall ? 1 : fixed_cols; i < total_cols; i++)
|
|
{
|
|
if(id == hitems[i].id)
|
|
return i;
|
|
}
|
|
return -1;
|
|
}
|
|
|
|
int GridCtrl::GetIdRow(int id, bool checkall) const
|
|
{
|
|
for(int i = checkall ? 0 : fixed_rows; i < total_rows; i++)
|
|
{
|
|
if(id == vitems[i].id)
|
|
return i;
|
|
}
|
|
return -1;
|
|
}
|
|
|
|
int GridCtrl::GetNextRow(int n)
|
|
{
|
|
n += fixed_rows;
|
|
for(int i = n + 1; i < total_rows; i++)
|
|
if(!vitems[i].hidden)
|
|
return i - fixed_rows;
|
|
return -1;
|
|
}
|
|
|
|
int GridCtrl::GetPrevRow(int n)
|
|
{
|
|
n += fixed_rows;
|
|
for(int i = n - 1; i >= fixed_rows; i--)
|
|
if(!vitems[i].hidden)
|
|
return i - fixed_rows;
|
|
return -1;
|
|
}
|
|
|
|
void GridCtrl::UpdateCursor()
|
|
{
|
|
curpos.x = GetIdCol(curid.x);
|
|
curpos.y = GetIdRow(curid.y);
|
|
rowidx = curpos.y;
|
|
shiftpos = curpos;
|
|
ctrlid.y = curpos.y < 0 ? -1 : curid.y;
|
|
ctrlpos.y = curpos.y;
|
|
rowfnd = curpos.y;
|
|
}
|
|
|
|
int GridCtrl::Find(const Value &v, int col, int start_from, int opt) const
|
|
{
|
|
for(int i = fixed_rows + start_from; i < total_rows; i++)
|
|
{
|
|
if(opt & GF::SKIP_CURRENT_ROW && i == rowidx)
|
|
continue;
|
|
if(opt & GF::SKIP_HIDDEN && vitems[i].hidden)
|
|
continue;
|
|
if(!vitems[i].skip && items[vitems[i].id][col + fixed_cols].val == v)
|
|
return i - fixed_rows;
|
|
}
|
|
return -1;
|
|
}
|
|
|
|
int GridCtrl::Find(const Value &v, Id id, int opt) const
|
|
{
|
|
return Find(v, aliases.Get(id) - fixed_cols, 0, opt);
|
|
}
|
|
|
|
int GridCtrl::FindInRow(const Value& v, int row, int start_from) const
|
|
{
|
|
for(int i = fixed_cols + start_from; i < total_cols; i++)
|
|
{
|
|
if(!hitems[i].skip && items[row + fixed_rows][hitems[i].id].val == v)
|
|
return i - fixed_cols;
|
|
}
|
|
return -1;
|
|
}
|
|
|
|
int GridCtrl::FindCurrent(Id id, int opt) const
|
|
{
|
|
int col = aliases.Get(id) - fixed_cols;
|
|
return Find(Get(col), col, 0, opt);
|
|
}
|
|
|
|
int GridCtrl::Find(const Value &v0, Id id0, const Value&v1, Id id1, int opt) const
|
|
{
|
|
int col0 = aliases.Get(id0);
|
|
int col1 = aliases.Get(id1);
|
|
|
|
for(int i = fixed_rows; i < total_rows; i++)
|
|
{
|
|
if(opt & GF::SKIP_CURRENT_ROW && i == rowidx)
|
|
continue;
|
|
if(opt & GF::SKIP_HIDDEN && vitems[i].hidden)
|
|
continue;
|
|
if(!vitems[i].skip &&
|
|
items[vitems[i].id][col0].val == v0 &&
|
|
items[vitems[i].id][col1].val == v1)
|
|
return i - fixed_rows;
|
|
}
|
|
return -1;
|
|
}
|
|
|
|
int GridCtrl::FindCurrent(Id id0, Id id1, int opt) const
|
|
{
|
|
int col0 = aliases.Get(id0);
|
|
int col1 = aliases.Get(id1);
|
|
|
|
const Value& val0 = items[vitems[rowidx].id][col0].val;
|
|
const Value& val1 = items[vitems[rowidx].id][col1].val;
|
|
|
|
return Find(val0, id0, val1, id1, opt);
|
|
}
|
|
|
|
void GridCtrl::UpdateDefaults(int ri)
|
|
{
|
|
for(int i = 1; i < total_cols; i++)
|
|
if(!IsNull(hitems[i].defval))
|
|
items[ri][hitems[i].id].val = hitems[i].defval;
|
|
}
|
|
|
|
void GridCtrl::SetCtrlsData()
|
|
{
|
|
if(!valid_cursor)
|
|
return;
|
|
|
|
for(int i = 1; i < total_cols; i++)
|
|
{
|
|
int idx = hitems[i].id;
|
|
Item &it = items[curid.y][idx];
|
|
Ctrl * ctrl = it.ctrl;
|
|
if(!ctrl)
|
|
ctrl = edits[idx].ctrl;
|
|
if(ctrl)
|
|
{
|
|
ctrl->SetData(it.val);
|
|
rowbkp[idx] = it.val;
|
|
}
|
|
}
|
|
}
|
|
|
|
bool GridCtrl::GetCtrlsData(bool samerow, bool doall, bool updates)
|
|
{
|
|
if(!valid_cursor || !HasCtrls())
|
|
return true;
|
|
|
|
bool newrow = newrow_inserted || newrow_appended;
|
|
|
|
if(focused_ctrl)
|
|
{
|
|
Item &it = items[curid.y][focused_ctrl_id];
|
|
|
|
if(updates && edit_mode == GE_CELL && !focused_ctrl->Accept())
|
|
return false;
|
|
|
|
Value v = focused_ctrl->GetData();
|
|
|
|
if(v.IsError())
|
|
v = Null;
|
|
|
|
bool was_modified = it.modified;
|
|
|
|
it.modified = edit_mode == GE_CELL
|
|
? it.val != v
|
|
: rowbkp[focused_ctrl_id] != v;
|
|
|
|
it.val = v;
|
|
|
|
if(it.modified)
|
|
{
|
|
if(!was_modified)
|
|
row_modified++;
|
|
|
|
//it.val = v;
|
|
|
|
if(updates)
|
|
{
|
|
#ifdef LOG_CALLBACKS
|
|
LGR(2, "WhenUpdateCell()");
|
|
LGR(2, Format("[row: %d, colid: %d]", curid.y, focused_ctrl_id));
|
|
LGR(2, Format("[oldval : %s]", AsString(rowbkp[focused_ctrl_id])));
|
|
LGR(2, Format("[newval : %s]", AsString(v)));
|
|
#endif
|
|
WhenUpdateCell();
|
|
|
|
if(cancel_update_cell)
|
|
{
|
|
it.val = rowbkp[focused_ctrl_id];
|
|
it.modified = false;
|
|
if(edit_mode == GE_CELL)
|
|
rowbkp[focused_ctrl_id] = it.val;
|
|
cancel_update_cell = false;
|
|
row_modified--;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
if(!updates)
|
|
return false;
|
|
|
|
if(!samerow || doall)
|
|
{
|
|
if(edit_mode == GE_ROW)
|
|
{
|
|
for(int i = fixed_cols; i < total_cols; ++i)
|
|
{
|
|
int idx = hitems[i].id;
|
|
Ctrl * ctrl = GetCtrl(rowidx, i, true, false, false);
|
|
if(ctrl && !ctrl->Accept())
|
|
{
|
|
focused_ctrl = ctrl;
|
|
focused_ctrl_id = idx;
|
|
ctrl->SetFocus();
|
|
curpos.x = i;
|
|
return false;
|
|
}
|
|
}
|
|
}
|
|
|
|
if(row_modified)
|
|
vitems[curid.y].operation = GridOperation::UPDATE;
|
|
|
|
WhenAcceptRow();
|
|
if(cancel_accept)
|
|
{
|
|
cancel_accept = false;
|
|
return false;
|
|
}
|
|
|
|
bool removed = false;
|
|
if(newrow)
|
|
{
|
|
#ifdef LOG_CALLBACKS
|
|
LGR(2, Format("WhenInsertRow()", curid.y));
|
|
LGR(2, Format("[row: %d]", curid.y));
|
|
#endif
|
|
removed = !WhenInsertRow0();
|
|
|
|
}
|
|
else if(row_modified)
|
|
{
|
|
row_data = true;
|
|
SetModify();
|
|
|
|
#ifdef LOG_CALLBACKS
|
|
LGR(2, Format("WhenUpdateRow()", curid.y));
|
|
LGR(2, Format("[row: %d]", curid.y));
|
|
#endif
|
|
WhenUpdateRow();
|
|
}
|
|
|
|
if(!removed)
|
|
{
|
|
if(!cancel_accept && row_modified)
|
|
{
|
|
WhenAcceptedRow();
|
|
/*
|
|
if(auto_sorting)
|
|
{
|
|
GSort();
|
|
UpdateCursor();
|
|
Repaint(false, true);
|
|
}
|
|
*/
|
|
}
|
|
|
|
if(cancel_accept)
|
|
{
|
|
cancel_accept = false;
|
|
return false;
|
|
}
|
|
|
|
if(cancel_update)
|
|
CancelCtrlsData(true);
|
|
else
|
|
ClearModified();
|
|
}
|
|
}
|
|
|
|
if(newrow && (!samerow || doall))
|
|
{
|
|
newrow_inserted = false;
|
|
newrow_appended = false;
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
bool GridCtrl::CancelCtrlsData(bool all)
|
|
{
|
|
cancel_update = false;
|
|
|
|
int ie = total_cols;
|
|
int is = 1;
|
|
|
|
if(!all && edit_mode == GE_CELL)
|
|
{
|
|
is = curpos.x;
|
|
ie = is + 1;
|
|
}
|
|
|
|
for(int i = is; i < ie; i++)
|
|
{
|
|
int id = hitems[i].id;
|
|
Item &it = items[curid.y][id];
|
|
|
|
Ctrl * ctrl = it.ctrl;
|
|
if(!ctrl)
|
|
ctrl = edits[id].ctrl;
|
|
if(ctrl)
|
|
{
|
|
ctrl->Reject();
|
|
ctrl->SetData(rowbkp[id]);
|
|
|
|
if(it.modified)
|
|
{
|
|
it.modified = false;
|
|
row_modified--;
|
|
it.val = rowbkp[id];
|
|
}
|
|
}
|
|
}
|
|
|
|
if(!row_modified)
|
|
vitems[curid.y].operation = GridOperation::NONE;
|
|
|
|
return true;
|
|
}
|
|
|
|
void GridCtrl::UpdateCtrls(int opt /*= UC_CHECK_VIS | UC_SHOW | UC_CURSOR */)
|
|
{
|
|
if(!valid_cursor)
|
|
return;
|
|
|
|
if((opt & UC_CHECK_VIS) && !HasCtrls())
|
|
return;
|
|
|
|
Point cp(opt & UC_OLDCUR ? oldcur : curpos);
|
|
|
|
bool show = opt & UC_SHOW;
|
|
|
|
ctrlid.y = show ? (cp.y < 0 ? -1 : vitems[cp.y].id) : -1;
|
|
ctrlpos.y = show ? cp.y : -1;
|
|
|
|
if(cp.y < 0)
|
|
return;
|
|
|
|
Size sz = GetSize();
|
|
|
|
bool gofirst = (opt & UC_GOFIRST) && !IsCtrl(cp, false);
|
|
|
|
edit_ctrls = false;
|
|
|
|
bool nofocus = opt & UC_NOFOCUS;
|
|
|
|
focused_ctrl = NULL;
|
|
focused_ctrl_id = -1;
|
|
focused_col = -1;
|
|
|
|
for(int i = 1; i < total_cols; i++)
|
|
{
|
|
if(hitems[i].hidden)
|
|
continue;
|
|
|
|
Ctrl* ctrl = GetCtrl(cp.y, i, show == false);
|
|
|
|
if(!ctrl)
|
|
continue;
|
|
|
|
if(show)
|
|
{
|
|
if(newrow_appended || newrow_inserted)
|
|
{
|
|
if(!hitems[i].edit_insert)
|
|
continue;
|
|
}
|
|
else
|
|
{
|
|
if(!hitems[i].edit_update)
|
|
continue;
|
|
}
|
|
}
|
|
|
|
int id = hitems[i].id;
|
|
|
|
bool sync_ctrl = items[vitems[cp.y].id][id].ctrl;
|
|
bool dorect = false;
|
|
bool dorf = i == curpos.x;
|
|
|
|
if(gofirst)
|
|
{
|
|
dorf = true;
|
|
gofirst = false;
|
|
}
|
|
|
|
bool dofocus = !nofocus && !(opt & UC_HIDE) && dorf;
|
|
|
|
if(show)
|
|
{
|
|
dorect = edit_mode == GE_CELL ? dorf : (isedit || (opt & UC_CTRLS));
|
|
dorect = dorect && GetItem(cp.y, i).editable;
|
|
}
|
|
|
|
if(!sync_ctrl)
|
|
{
|
|
if(dorect)
|
|
{
|
|
Rect r = GetItemRect(ctrlpos.y, i, horz_grid, vert_grid, true, true);
|
|
|
|
if(!r.Intersects(sz))
|
|
r.Set(0, 0, 0, 0);
|
|
|
|
ctrl->SetRect(AlignRect(r, i));
|
|
ctrl->Show();
|
|
edit_ctrls = true;
|
|
}
|
|
else
|
|
{
|
|
ctrl->SetRect(0, 0, 0, 0);
|
|
ctrl->Hide();
|
|
}
|
|
}
|
|
|
|
if(dofocus && ctrl->IsShown())
|
|
{
|
|
ctrl->SetFocus();
|
|
focused_ctrl = ctrl;
|
|
focused_ctrl_id = id;
|
|
focused_ctrl_val = hitems[i].defval;
|
|
focused_col = i;
|
|
|
|
if(opt & UC_CURSOR)
|
|
SetCursor0(i, cp.y);
|
|
}
|
|
}
|
|
|
|
if(!nofocus && !focused_ctrl)
|
|
SetFocus();
|
|
|
|
if(opt & UC_CTRLS)
|
|
isedit = edit_ctrls;
|
|
|
|
if(opt & UC_CTRLS_OFF)
|
|
isedit = false;
|
|
|
|
if(!(opt & UC_SCROLL))
|
|
RebuildToolBar();
|
|
|
|
if(isedit)
|
|
popup.Close();
|
|
}
|
|
|
|
void GridCtrl::SyncCtrls(int row, int col)
|
|
{
|
|
if(!genr_ctrls)
|
|
return;
|
|
|
|
Size sz = GetSize();
|
|
|
|
int js = row < 0 ? 0 : row;
|
|
int je = row < 0 ? total_rows : row + 1;
|
|
|
|
int is = col < 0 ? 1 : col;
|
|
int ie = col < 0 ? total_cols : col + 1;
|
|
|
|
for(int j = js; j < je; j++)
|
|
{
|
|
int idy = vitems[j].id;
|
|
bool fixed_row = j < fixed_rows;
|
|
bool create_row = !fixed_row && vitems[j].editable;
|
|
|
|
for(int i = is; i < ie; i++)
|
|
{
|
|
bool fixed_col = i < fixed_cols;
|
|
bool create_col = !fixed_col && hitems[i].editable;
|
|
|
|
int idx = hitems[i].id;
|
|
|
|
Item *it = &items[idy][idx];
|
|
|
|
if(it->isjoined)
|
|
{
|
|
it = &items[it->idy][it->idx];
|
|
idx = it->idx;
|
|
}
|
|
|
|
if(!it->ctrl && create_row && create_col && it->editable && edits[idx].factory)
|
|
{
|
|
One<Ctrl> newctrl;
|
|
edits[idx].factory(newctrl);
|
|
it->ctrl = newctrl.Detach();
|
|
it->ctrl_flag = IC_FACTORY | IC_INIT | IC_OWNED;
|
|
}
|
|
|
|
if(it->ctrl && (it->ctrl_flag & IC_INIT))
|
|
{
|
|
it->ctrl->SetData(it->val);
|
|
it->ctrl->WhenAction << Proxy(WhenCtrlsAction);
|
|
holder.AddChild(it->ctrl);
|
|
it->ctrl_flag &= ~IC_INIT;
|
|
}
|
|
|
|
if(it->ctrl)
|
|
{
|
|
if(it->isjoined && it->sync_flag == sync_flag)
|
|
continue;
|
|
|
|
Rect r = GetItemRect(j, i, horz_grid, vert_grid, true, true);
|
|
AlignRect(r, i);
|
|
|
|
if(r.Intersects(sz) && !fixed_col && !fixed_row && !vitems[j].hidden && !hitems[i].hidden)
|
|
{
|
|
it->ctrl->SetRect(r);
|
|
it->ctrl->Show();
|
|
}
|
|
else if(it->ctrl->IsShown())
|
|
{
|
|
it->ctrl->SetRect(0, 0, 0, 0);
|
|
it->ctrl->Hide();
|
|
}
|
|
}
|
|
|
|
if(it->isjoined)
|
|
it->sync_flag = sync_flag;
|
|
}
|
|
}
|
|
sync_flag = 1 - sync_flag;
|
|
}
|
|
|
|
void GridCtrl::SyncSummary()
|
|
{
|
|
if(!summary)
|
|
return;
|
|
|
|
if(WhenUpdateSummary)
|
|
{
|
|
WhenUpdateSummary();
|
|
}
|
|
else
|
|
{
|
|
for(int i = fixed_cols; i < total_cols; i++)
|
|
{
|
|
Value t = 0;
|
|
|
|
int idx = hitems[i].id;
|
|
|
|
int sop = hitems[i].sop;
|
|
|
|
if(sop == SOP_NONE)
|
|
continue;
|
|
|
|
int n = 0;
|
|
|
|
for(int j = fixed_rows; j < total_rows; j++)
|
|
{
|
|
if(vitems[j].IsHidden())
|
|
continue;
|
|
|
|
if(sop == SOP_CNT)
|
|
{
|
|
++n;
|
|
continue;
|
|
}
|
|
|
|
int idy = vitems[j].id;
|
|
|
|
Value v = items[idy][idx].val;
|
|
|
|
if(IsNull(v))
|
|
continue;
|
|
|
|
ProcessSummaryValue(v);
|
|
|
|
if(n == 0 && (sop == SOP_MIN || sop == SOP_MAX))
|
|
t = v;
|
|
|
|
if(IsNumber(v))
|
|
{
|
|
switch(sop)
|
|
{
|
|
case SOP_MIN:
|
|
if(double(v) < double(t))
|
|
t = v;
|
|
break;
|
|
case SOP_MAX:
|
|
if(double(v) > double(t))
|
|
t = v;
|
|
break;
|
|
case SOP_SUM:
|
|
case SOP_AVG:
|
|
t = double(t) + double(v);
|
|
}
|
|
}
|
|
else if(IsType<Date>(v))
|
|
{
|
|
switch(sop)
|
|
{
|
|
case SOP_MIN:
|
|
if((Date) v < (Date) t)
|
|
t = v;
|
|
break;
|
|
case SOP_MAX:
|
|
if((Date) v > (Date) t)
|
|
t = v;
|
|
break;
|
|
case SOP_SUM:
|
|
case SOP_AVG:
|
|
t = v;
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
if(sop == SOP_AVG)
|
|
{
|
|
if(IsNumber(t))
|
|
t = double(t) / double(n);
|
|
}
|
|
else if(sop == SOP_CNT)
|
|
{
|
|
t = n;
|
|
}
|
|
|
|
summary[idx].val = t;
|
|
}
|
|
}
|
|
|
|
if(summary_row)
|
|
RefreshSummary();
|
|
}
|
|
|
|
void GridCtrl::UpdateSummary(bool b)
|
|
{
|
|
update_summary = b;
|
|
if(b)
|
|
SyncSummary();
|
|
}
|
|
|
|
bool GridCtrl::HasCtrls()
|
|
{
|
|
return edit_ctrls || genr_ctrls;
|
|
}
|
|
|
|
void GridCtrl::SetCtrlFocus(int col)
|
|
{
|
|
oldcur.x = curpos.x;
|
|
Ctrl * ctrl = GetCtrl(col + fixed_cols, rowidx, false, false);
|
|
focused_ctrl = ctrl;
|
|
focused_ctrl_id = hitems[col + fixed_cols].id;
|
|
ctrl->SetFocus();
|
|
curpos.x = col + fixed_cols;
|
|
}
|
|
|
|
void GridCtrl::SetCtrlFocus(Id id)
|
|
{
|
|
SetCtrlFocus(aliases.Get(id));
|
|
}
|
|
|
|
bool GridCtrl::Accept()
|
|
{
|
|
if(!EndEdit())
|
|
return false;
|
|
return Ctrl::Accept();
|
|
}
|
|
|
|
void GridCtrl::Reject()
|
|
{
|
|
CancelEdit();
|
|
Ctrl::Reject();
|
|
}
|
|
|
|
void GridCtrl::RestoreFocus()
|
|
{
|
|
if(focused_ctrl && !focused_ctrl->HasFocusDeep())
|
|
focused_ctrl->SetFocus();
|
|
}
|
|
|
|
bool GridCtrl::ShowNextCtrl()
|
|
{
|
|
if(GoRight(1, 1))
|
|
{
|
|
UpdateCtrls(UC_CHECK_VIS | UC_SHOW);
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
bool GridCtrl::ShowPrevCtrl()
|
|
{
|
|
if(GoLeft(1, 1))
|
|
{
|
|
UpdateCtrls(UC_CHECK_VIS | UC_SHOW);
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
int GridCtrl::GetFocusedCtrlIndex()
|
|
{
|
|
for(int i = 1; i < total_cols; i++)
|
|
{
|
|
int id = hitems[i].id;
|
|
|
|
Ctrl * ctrl = items[0][id].ctrl;
|
|
if(ctrl && ctrl->HasFocusDeep())
|
|
return i;
|
|
}
|
|
return -1;
|
|
}
|
|
|
|
Point GridCtrl::GetCtrlPos(Ctrl * ctrl)
|
|
{
|
|
for(int i = fixed_rows; i < total_rows; i++)
|
|
{
|
|
int idy = vitems[i].id;
|
|
for(int j = fixed_cols; j < total_cols; j++)
|
|
{
|
|
int idx = hitems[j].id;
|
|
Ctrl * ci = items[idy][idx].ctrl;
|
|
bool isedit = false;
|
|
if(!ci)
|
|
{
|
|
ci = edits[idx].ctrl;
|
|
isedit = true;
|
|
}
|
|
if(ci == ctrl || ci->HasChildDeep(ctrl))
|
|
return Point(j, isedit ? ctrlpos.y : i);
|
|
}
|
|
}
|
|
return Point(-1, -1);
|
|
}
|
|
|
|
void GridCtrl::Split(int state, bool sync)
|
|
{
|
|
if(resize_paint_mode < 2)
|
|
{
|
|
if(resize_paint_mode > 0 && state != GS_DOWN)
|
|
{
|
|
if(resizeCol) RefreshTop();
|
|
if(resizeRow) RefreshLeft();
|
|
}
|
|
|
|
if(state == GS_DOWN)
|
|
DrawLine(true, false);
|
|
else if(state == GS_MOVE)
|
|
DrawLine(true, true);
|
|
else
|
|
DrawLine(false, true);
|
|
}
|
|
|
|
if(state == GS_DOWN)
|
|
{
|
|
firstCol = firstRow = -1;
|
|
return;
|
|
}
|
|
|
|
if(state != GS_DOWN && (resize_paint_mode == 2 || state == GS_UP))
|
|
{
|
|
UpdateSizes();
|
|
UpdateHolder();
|
|
UpdateSb();
|
|
Refresh();
|
|
}
|
|
|
|
if((resize_paint_mode > 1 && state > GS_UP) || state == GS_UP)
|
|
{
|
|
SyncCtrls();
|
|
UpdateCtrls(UC_CHECK_VIS | UC_SHOW);
|
|
}
|
|
|
|
if(sync)
|
|
Sync();
|
|
}
|
|
|
|
bool GridCtrl::TabKey(bool enter_mode)
|
|
{
|
|
if(!HasFocus() && !holder.HasFocusDeep())
|
|
return false;
|
|
|
|
bool has_ctrls = HasCtrls();
|
|
|
|
if(has_ctrls)
|
|
{
|
|
bool isnext = ShowNextCtrl();
|
|
if(tab_adds_row && !isnext && curpos.y == lastVisRow)
|
|
{
|
|
DoAppend();
|
|
return true;
|
|
}
|
|
else
|
|
return focused_ctrl ? true : (genr_ctrls > 0 && !edit_ctrls) ? true : isnext;
|
|
}
|
|
|
|
if(tab_changes_row && ((enter_mode && has_ctrls) || (!enter_mode && !has_ctrls)))
|
|
{
|
|
bool isnext = false;
|
|
if(select_row)
|
|
{
|
|
isnext = GoNext();
|
|
if(!isnext && tab_adds_row)
|
|
DoAppendNoEdit();
|
|
}
|
|
else
|
|
{
|
|
isnext = GoRight();
|
|
if(!isnext && tab_adds_row)
|
|
DoAppendNoEdit();
|
|
}
|
|
ClearSelection();
|
|
|
|
if(isnext)
|
|
return true;
|
|
}
|
|
else if(!enter_mode)
|
|
return false;
|
|
|
|
if(enter_mode && !has_ctrls)
|
|
{
|
|
SwitchEdit();
|
|
return true;
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
bool GridCtrl::Key(dword key, int)
|
|
{
|
|
if(!IsReadOnly())
|
|
switch(key)
|
|
{
|
|
case K_ENTER:
|
|
ClearSelection();
|
|
WhenEnter();
|
|
#ifdef LOG_CALLBACKS
|
|
LGR(2, "WhenEnter()");
|
|
#endif
|
|
|
|
if(enter_like_tab)
|
|
return TabKey(true);
|
|
else if(!SwitchEdit())
|
|
return true;
|
|
/*
|
|
if(th.IsSorted())
|
|
{
|
|
th.Multisort();
|
|
Refresh();
|
|
}*/
|
|
|
|
return true;
|
|
case K_ESCAPE:
|
|
{
|
|
bool quit = true;
|
|
if(search_string.GetCount() > 0)
|
|
{
|
|
ClearFound();
|
|
quit = false;
|
|
}
|
|
else if(HasCtrls())
|
|
{
|
|
bool canceled = CancelEdit();
|
|
quit = !canceled;
|
|
}
|
|
if(quit)
|
|
{
|
|
WhenEscape();
|
|
return false;
|
|
}
|
|
else
|
|
return true;
|
|
}
|
|
case K_SHIFT|K_LEFT:
|
|
GoLeft();
|
|
DoShiftSelect();
|
|
return true;
|
|
case K_SHIFT|K_RIGHT:
|
|
GoRight();
|
|
DoShiftSelect();
|
|
return true;
|
|
case K_SHIFT|K_UP:
|
|
GoPrev();
|
|
DoShiftSelect();
|
|
return true;
|
|
case K_SHIFT|K_DOWN:
|
|
GoNext();
|
|
DoShiftSelect();
|
|
return true;
|
|
case K_SHIFT|K_PAGEUP:
|
|
GoPageUp();
|
|
DoShiftSelect();
|
|
return true;
|
|
case K_SHIFT|K_PAGEDOWN:
|
|
GoPageDn();
|
|
DoShiftSelect();
|
|
return true;
|
|
case K_SHIFT_HOME:
|
|
GoBegin();
|
|
DoShiftSelect();
|
|
return true;
|
|
case K_SHIFT_END:
|
|
GoEnd();
|
|
DoShiftSelect();
|
|
return true;
|
|
case K_CTRL|K_LEFT:
|
|
GoLeft();
|
|
DoCtrlSelect();
|
|
return true;
|
|
case K_CTRL|K_RIGHT:
|
|
GoRight();
|
|
DoCtrlSelect();
|
|
return true;
|
|
case K_CTRL|K_UP:
|
|
if(select_row)
|
|
break;
|
|
GoPrev();
|
|
DoCtrlSelect();
|
|
return true;
|
|
case K_CTRL|K_DOWN:
|
|
if(select_row)
|
|
break;
|
|
GoNext();
|
|
DoCtrlSelect();
|
|
return true;
|
|
case K_UP:
|
|
GoPrev();
|
|
ClearSelection();
|
|
return true;
|
|
case K_DOWN:
|
|
GoNext();
|
|
ClearSelection();
|
|
return true;
|
|
case K_LEFT:
|
|
GoLeft();
|
|
ClearSelection();
|
|
return true;
|
|
case K_RIGHT:
|
|
GoRight();
|
|
ClearSelection();
|
|
return true;
|
|
|
|
case K_HOME:
|
|
case K_CTRL_HOME:
|
|
case K_CTRL_PAGEUP:
|
|
GoBegin();
|
|
ClearSelection();
|
|
return true;
|
|
case K_END:
|
|
case K_CTRL_END:
|
|
case K_CTRL_PAGEDOWN:
|
|
GoEnd();
|
|
ClearSelection();
|
|
return true;
|
|
case K_PAGEUP:
|
|
GoPageUp();
|
|
ClearSelection();
|
|
return true;
|
|
case K_PAGEDOWN:
|
|
GoPageDn();
|
|
ClearSelection();
|
|
return true;
|
|
case K_TAB:
|
|
return TabKey(false);
|
|
case K_SHIFT|K_TAB:
|
|
if(HasCtrls())
|
|
{
|
|
bool isprev = ShowPrevCtrl();
|
|
return focused_ctrl ? true : isprev;
|
|
}
|
|
else if(tab_changes_row)
|
|
{
|
|
bool isprev = false;
|
|
if(select_row)
|
|
isprev = GoPrev();
|
|
else
|
|
isprev = GoLeft();
|
|
ClearSelection();
|
|
|
|
return isprev;
|
|
}
|
|
else
|
|
return false;
|
|
case K_CTRL|K_F:
|
|
if(searching)
|
|
{
|
|
find.SetFocus();
|
|
return true;
|
|
}
|
|
else
|
|
return false;
|
|
case K_BACKSPACE:
|
|
{
|
|
if(searching)
|
|
{
|
|
int cnt = search_string.GetCount();
|
|
if(cnt > 0)
|
|
{
|
|
search_string.Remove(cnt - 1);
|
|
find <<= search_string;
|
|
ShowMatchedRows(search_string);
|
|
}
|
|
return true;
|
|
}
|
|
else
|
|
return false;
|
|
}
|
|
case K_F3:
|
|
if(rowfnd >= 0)
|
|
{
|
|
for(int i = rowfnd + 1; i < total_rows; i++)
|
|
{
|
|
if(vitems[i].IsFound())
|
|
{
|
|
rowfnd = i;
|
|
SetCursor0(i);
|
|
CenterCursor();
|
|
WhenSearchCursor();
|
|
return true;
|
|
}
|
|
}
|
|
for(int i = fixed_rows; i < rowfnd; i++)
|
|
{
|
|
if(vitems[i].IsFound())
|
|
{
|
|
rowfnd = i;
|
|
SetCursor0(i);
|
|
CenterCursor();
|
|
WhenSearchCursor();
|
|
return true;
|
|
}
|
|
}
|
|
|
|
return true;
|
|
}
|
|
return false;
|
|
case K_CTRL_W:
|
|
WriteClipboardText(GetColumnWidths());
|
|
return true;
|
|
default:
|
|
if(searching && !isedit && Search(key))
|
|
return true;
|
|
}
|
|
|
|
return MenuBar::Scan(WhenMenuBar, key);
|
|
}
|
|
|
|
bool GridCtrl::Search(dword key)
|
|
{
|
|
//if(key & K_UP)
|
|
// return false;
|
|
|
|
if(key >= 32 && key < 65536)
|
|
{
|
|
search_string += (wchar) key;
|
|
if(!ShowMatchedRows(search_string) && search_string.GetCount() > 0)
|
|
search_string.Remove(search_string.GetCount() - 1);
|
|
else
|
|
find <<= search_string;
|
|
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
int GridCtrl::GetResizePanelHeight() const
|
|
{
|
|
return (resize_panel.GetHeight() + 2) * resize_panel_open;
|
|
}
|
|
|
|
String GridCtrl::GetColumnName(int n) const
|
|
{
|
|
return hitems[GetIdCol(n + fixed_cols)].GetName();
|
|
}
|
|
|
|
Id GridCtrl::GetColumnId(int n) const
|
|
{
|
|
return aliases.GetKey(n + fixed_cols);
|
|
}
|
|
|
|
void GridCtrl::SwapCols(int n, int m)
|
|
{
|
|
if(m == n ||
|
|
n < fixed_cols || n > total_cols - 1 ||
|
|
m < fixed_cols || m > total_cols - 1)
|
|
return;
|
|
|
|
Swap(hitems[m], hitems[n]);
|
|
UpdateCursor();
|
|
Repaint(true, false);
|
|
}
|
|
|
|
bool GridCtrl::CanMoveCol(int n, int m)
|
|
{
|
|
if(m == n || m == n - 1 ||
|
|
n < 0 || n > total_cols - 1 ||
|
|
m < 0 || m > total_cols - 1)
|
|
return false;
|
|
else
|
|
{
|
|
if(hitems[n].join > 0)
|
|
{
|
|
LG(2, "n=%d(%d) m=%d(%d)", n, hitems[n].join, m, hitems[m].join);
|
|
if(m == n - 2 && hitems[n].join == hitems[n - 1].join)
|
|
return true;
|
|
|
|
if(hitems[m].join != hitems[n].join)
|
|
return false;
|
|
}
|
|
//tu sprawdzic join
|
|
return true;
|
|
}
|
|
}
|
|
|
|
void GridCtrl::MoveCol(int n, int m)
|
|
{
|
|
LG(0, "%d->%d", n, m);
|
|
|
|
if(!CanMoveCol(n, m))
|
|
{
|
|
Repaint();
|
|
return;
|
|
}
|
|
|
|
ItemRect ir = hitems[n];
|
|
if(m > total_cols)
|
|
hitems.Add(ir);
|
|
else
|
|
hitems.Insert(m + 1, ir);
|
|
if(m > n)
|
|
hitems.Remove(n);
|
|
else
|
|
hitems.Remove(n + 1);
|
|
|
|
UpdateCursor();
|
|
Repaint(true, false);
|
|
}
|
|
|
|
bool GridCtrl::MoveRow(int n, int m, bool repaint)
|
|
{
|
|
LG(0, "%d->%d", n, m);
|
|
|
|
if(m == n || m == n - 1 ||
|
|
n < 0 || n > total_rows - 1 ||
|
|
m < -1 || m > total_rows - 1)
|
|
{
|
|
Repaint();
|
|
return false;
|
|
}
|
|
|
|
WhenMoveRow(n, m);
|
|
|
|
if(cancel_move)
|
|
{
|
|
cancel_move = false;
|
|
return false;
|
|
}
|
|
|
|
ItemRect ir = vitems[n];
|
|
if(m > total_rows)
|
|
vitems.Add(ir);
|
|
else
|
|
vitems.Insert(m + 1, ir);
|
|
if(m > n)
|
|
vitems.Remove(n);
|
|
else
|
|
vitems.Remove(n + 1);
|
|
|
|
if(repaint)
|
|
{
|
|
UpdateCursor();
|
|
Repaint(false, true);
|
|
}
|
|
|
|
SetOrder();
|
|
SetModify();
|
|
|
|
return true;
|
|
}
|
|
|
|
void GridCtrl::MoveRows(int n, bool onerow)
|
|
{
|
|
if(selected_rows && !onerow)
|
|
{
|
|
Vector<ItemRect> vi;
|
|
vi.Reserve(selected_rows);
|
|
for(int i = fixed_rows; i < total_rows; i++)
|
|
if(vitems[i].IsSelect())
|
|
{
|
|
WhenMoveRow(i, n);
|
|
if(cancel_move)
|
|
{
|
|
cancel_move = false;
|
|
return;
|
|
}
|
|
vi.Add(vitems[i]);
|
|
}
|
|
|
|
int cnt = 0;
|
|
|
|
for(int i = total_rows - 1; i >= fixed_rows; i--)
|
|
if(vitems[i].IsSelect())
|
|
{
|
|
vitems.Remove(i);
|
|
if(i < n)
|
|
cnt++;
|
|
}
|
|
|
|
vitems.Insert(n - cnt, vi);
|
|
|
|
SetOrder();
|
|
SetModify();
|
|
|
|
UpdateCursor();
|
|
Repaint(false, true);
|
|
}
|
|
else
|
|
{
|
|
MoveRow(curpos.y, n - 1);
|
|
}
|
|
}
|
|
|
|
bool GridCtrl::SwapRows(int n, int m, bool repaint)
|
|
{
|
|
if(isedit || m == n ||
|
|
n < fixed_rows || n > total_rows - 1 ||
|
|
m < fixed_rows || m > total_rows - 1)
|
|
return false;
|
|
|
|
WhenMoveRow(n, m);
|
|
|
|
if(cancel_move)
|
|
{
|
|
cancel_move = false;
|
|
return false;
|
|
}
|
|
|
|
Swap(vitems[m], vitems[n]);
|
|
if(repaint)
|
|
{
|
|
UpdateCursor();
|
|
Repaint(false, true);
|
|
}
|
|
SetOrder();
|
|
SetModify();
|
|
return true;
|
|
}
|
|
|
|
void GridCtrl::SwapUp(int cnt)
|
|
{
|
|
int yp = 0;
|
|
bool first = false;
|
|
bool repaint = false;
|
|
|
|
if(selected_rows == 0)
|
|
{
|
|
if(SwapRows(curpos.y, curpos.y - cnt))
|
|
yp = vitems[curpos.y + cnt].nTop(sby + fixed_height);
|
|
else
|
|
return;
|
|
}
|
|
else
|
|
{
|
|
for(int i = fixed_rows; i < total_rows; i++)
|
|
{
|
|
if(vitems[i].IsSelect())
|
|
{
|
|
if(!SwapRows(i, i - cnt, false))
|
|
return;
|
|
if(!first)
|
|
{
|
|
yp = vitems[i].nTop(sby + fixed_height);
|
|
first = true;
|
|
}
|
|
}
|
|
}
|
|
repaint = true;
|
|
}
|
|
|
|
if(resize_row_mode == 0 && yp < 0)
|
|
sby.Set(sby + yp);
|
|
|
|
if(repaint)
|
|
{
|
|
UpdateCursor();
|
|
Repaint(false, true);
|
|
}
|
|
}
|
|
|
|
void GridCtrl::SwapDown(int cnt)
|
|
{
|
|
int yp = 0;
|
|
bool first = false;
|
|
bool repaint = false;
|
|
|
|
if(selected_rows == 0)
|
|
{
|
|
if(SwapRows(curpos.y, curpos.y + cnt))
|
|
yp = vitems[curpos.y - cnt].nBottom(sby);
|
|
else
|
|
return;
|
|
}
|
|
else
|
|
{
|
|
for(int i = total_rows - 1; i >= fixed_rows; i--)
|
|
{
|
|
if(vitems[i].IsSelect())
|
|
{
|
|
if(!SwapRows(i, i + cnt, false))
|
|
return;
|
|
if(!first)
|
|
{
|
|
yp = vitems[i].nBottom(sby);
|
|
first = true;
|
|
}
|
|
}
|
|
}
|
|
repaint = true;
|
|
}
|
|
|
|
int cy = GetSize().cy - bar.GetSize().cy;
|
|
if(resize_row_mode == 0 && yp > cy)
|
|
sby.Set(sby + yp - cy);
|
|
|
|
if(repaint)
|
|
{
|
|
UpdateCursor();
|
|
Repaint(false, true);
|
|
}
|
|
}
|
|
|
|
void GridCtrl::MouseLeave()
|
|
{
|
|
if(live_cursor)
|
|
{
|
|
LG(2, "MouseLeave:LiveCursor");
|
|
SetCursor0(-1, -1, CU_HIGHLIGHT);
|
|
}
|
|
UpdateHighlighting(GS_BORDER, Point(0, 0));
|
|
oldSplitCol = -1;
|
|
oldSplitRow = -1;
|
|
//popup.Close();
|
|
}
|
|
|
|
void GridCtrl::MouseWheel(Point p, int zdelta, dword keyflags)
|
|
{
|
|
if(resize_row_mode == 0)
|
|
{
|
|
sby.Set(sby - zdelta / 4);
|
|
}
|
|
}
|
|
|
|
GridCtrl& GridCtrl::GridColor(Color fg)
|
|
{
|
|
fg_grid = fg;
|
|
return *this;
|
|
}
|
|
|
|
GridCtrl& GridCtrl::FocusColor(Color fg, Color bg)
|
|
{
|
|
fg_focus = fg;
|
|
bg_focus = bg;
|
|
return *this;
|
|
}
|
|
|
|
GridCtrl& GridCtrl::LiveColor(Color fg, Color bg)
|
|
{
|
|
fg_live = fg;
|
|
bg_live = bg;
|
|
return *this;
|
|
}
|
|
|
|
GridCtrl& GridCtrl::OddColor(Color fg, Color bg)
|
|
{
|
|
fg_odd = fg;
|
|
bg_odd = bg;
|
|
return *this;
|
|
}
|
|
|
|
GridCtrl& GridCtrl::EvenColor(Color fg, Color bg)
|
|
{
|
|
fg_even = fg;
|
|
bg_even = bg;
|
|
return *this;
|
|
}
|
|
|
|
GridCtrl& GridCtrl::ColoringMode(int m)
|
|
{
|
|
coloring_mode = m;
|
|
return *this;
|
|
}
|
|
|
|
void GridCtrl::ClearCursor(bool remove)
|
|
{
|
|
if(!remove && valid_cursor)
|
|
{
|
|
SetItemCursor(curpos, false, false);
|
|
RefreshRow(curpos.y, 0);
|
|
}
|
|
|
|
curpos.x = curpos.y = -1;
|
|
curid.x = curid.y = -1;
|
|
rowidx = -1;
|
|
valid_cursor = false;
|
|
}
|
|
|
|
void GridCtrl::ClearRow(int r, int column_offset)
|
|
{
|
|
if(r < 0)
|
|
r = rowidx;
|
|
else
|
|
r -= fixed_rows;
|
|
for(int i = fixed_cols + column_offset; i < total_cols; i++)
|
|
items[vitems[r].id][hitems[i].id].val = Null;
|
|
|
|
SetCtrlsData();
|
|
RefreshRow(rowidx, 0);
|
|
}
|
|
|
|
void GridCtrl::Clear(bool columns)
|
|
{
|
|
doscroll = false;
|
|
|
|
UpdateCtrls(UC_HIDE | UC_CTRLS);
|
|
|
|
int nrows = columns ? 1 : fixed_rows;
|
|
items.Remove(nrows, items.GetCount() - nrows);
|
|
vitems.Remove(nrows, vitems.GetCount() - nrows);
|
|
|
|
total_rows = nrows;
|
|
fixed_rows = nrows;
|
|
|
|
if(columns)
|
|
{
|
|
hitems.Remove(1, hitems.GetCount() - 1);
|
|
items[0].Remove(1, items[0].GetCount() - 1);
|
|
rowbkp.Remove(1, rowbkp.GetCount() - 1);
|
|
edits.Remove(1, edits.GetCount() - 1);
|
|
sortOrder.Clear();
|
|
total_cols = 1;
|
|
total_width = 0;
|
|
total_height = 0;
|
|
firstCol = -1;
|
|
lastCol = -1;
|
|
fixed_cols = 1;
|
|
coluid = 0;
|
|
hcol = -1;
|
|
sortCol = -1;
|
|
genr_ctrls = 0;
|
|
firstVisCol = fixed_cols;
|
|
lastVisCol = total_cols - 1;
|
|
}
|
|
else
|
|
{
|
|
total_height = fixed_height;
|
|
}
|
|
|
|
firstVisRow = fixed_rows;
|
|
lastVisRow = total_rows - 1;
|
|
|
|
focused_ctrl = NULL;
|
|
|
|
valid_cursor = false;
|
|
|
|
firstRow = -1;
|
|
lastRow = -1;
|
|
|
|
curpos.x = curpos.y = -1;
|
|
curid.x = curid.y = -1;
|
|
|
|
hrow = -1;
|
|
|
|
rowidx = -1;
|
|
rowuid = 0;
|
|
|
|
row_modified = 0;
|
|
|
|
UpdateSizes();
|
|
UpdateSb();
|
|
|
|
if(ready)
|
|
{
|
|
UpdateHolder();
|
|
|
|
oldpos.x = sbx;
|
|
oldpos.y = sby;
|
|
|
|
RebuildToolBar();
|
|
Refresh();
|
|
}
|
|
|
|
WhenEmpty();
|
|
WhenCursor();
|
|
|
|
doscroll = true;
|
|
}
|
|
|
|
void GridCtrl::Reset()
|
|
{
|
|
Clear(true);
|
|
}
|
|
|
|
void GridCtrl::ClearOperations()
|
|
{
|
|
for(int i = fixed_rows; i < total_rows; i++)
|
|
vitems[i].operation.Clear();
|
|
}
|
|
|
|
void GridCtrl::ClearVersions()
|
|
{
|
|
for(int i = fixed_rows; i < total_rows; i++)
|
|
vitems[i].operation.ClearVersion();
|
|
}
|
|
|
|
void GridCtrl::Begin()
|
|
{
|
|
bkp_rowidx = rowidx;
|
|
rowidx = fixed_rows;
|
|
}
|
|
|
|
void GridCtrl::End()
|
|
{
|
|
rowidx = total_rows - 1;
|
|
}
|
|
|
|
bool GridCtrl::IsEnd()
|
|
{
|
|
if(rowidx < total_rows)
|
|
return true;
|
|
else
|
|
{
|
|
rowidx = bkp_rowidx;
|
|
return false;
|
|
}
|
|
}
|
|
|
|
void GridCtrl::Next()
|
|
{
|
|
++rowidx;
|
|
}
|
|
|
|
void GridCtrl::Prev()
|
|
{
|
|
--rowidx;
|
|
}
|
|
|
|
void GridCtrl::Move(int r)
|
|
{
|
|
rowidx = r + fixed_rows;
|
|
}
|
|
|
|
bool GridCtrl::IsNext()
|
|
{
|
|
return rowidx < total_rows - 1;
|
|
}
|
|
|
|
bool GridCtrl::IsPrev()
|
|
{
|
|
return rowidx > fixed_rows;
|
|
}
|
|
|
|
bool GridCtrl::IsFirst()
|
|
{
|
|
return rowidx == fixed_rows;
|
|
}
|
|
|
|
bool GridCtrl::IsLast()
|
|
{
|
|
return rowidx == total_rows - 1;
|
|
}
|
|
|
|
int GridCtrl::SetCursor0(int n)
|
|
{
|
|
int t = curpos.y;
|
|
SetCursor0(curpos.x < 0 ? firstVisCol : curpos.x, n);
|
|
return t;
|
|
}
|
|
|
|
int GridCtrl::SetCursor(int n)
|
|
{
|
|
return SetCursor0(n + fixed_rows) - fixed_rows;
|
|
}
|
|
|
|
void GridCtrl::SetCursor(const Point& p)
|
|
{
|
|
SetCursor0(Point(p.x + fixed_cols, p.y + fixed_rows), false);
|
|
}
|
|
|
|
int GridCtrl::SetCursorId(int id)
|
|
{
|
|
id += fixed_rows;
|
|
for(int i = fixed_rows; i < total_rows; i++)
|
|
{
|
|
if(vitems[i].id == id)
|
|
return SetCursor(i - fixed_rows);
|
|
}
|
|
return -1;
|
|
}
|
|
|
|
int GridCtrl::GetCursor(bool rel) const
|
|
{
|
|
if(rel)
|
|
return valid_cursor ? vitems[curpos.y].id - fixed_rows : -1;
|
|
else
|
|
return valid_cursor ? curpos.y - fixed_rows : -1;
|
|
}
|
|
|
|
int GridCtrl::GetPrevCursor(bool rel) const
|
|
{
|
|
if(rel)
|
|
return IsValidCursor(oldcur) ? vitems[oldcur.y].id - fixed_rows : -1;
|
|
else
|
|
return IsValidCursor(oldcur) ? oldcur.y - fixed_rows : -1;
|
|
}
|
|
|
|
int GridCtrl::GetCursor(int uid) const
|
|
{
|
|
for(int i = fixed_rows; i < total_rows; i++)
|
|
if(vitems[i].uid == uid)
|
|
return i - fixed_rows;
|
|
return -1;
|
|
}
|
|
|
|
Point GridCtrl::GetCursorPos() const
|
|
{
|
|
return valid_cursor ? Point(curpos.x - fixed_cols, curpos.y - fixed_rows) : Point(-1, -1);
|
|
}
|
|
|
|
int GridCtrl::GetRowId() const
|
|
{
|
|
return valid_cursor ? vitems[curpos.y].id - fixed_rows : -1;
|
|
}
|
|
|
|
int GridCtrl::GetColId() const
|
|
{
|
|
return valid_cursor ? hitems[curpos.x].id - fixed_cols: -1;
|
|
}
|
|
|
|
int GridCtrl::GetRowId(int n) const { return vitems[n + fixed_rows].id - fixed_rows; }
|
|
int GridCtrl::GetColId(int n) const { return hitems[n + fixed_cols].id - fixed_cols; }
|
|
|
|
int GridCtrl::GetColUId() const
|
|
{
|
|
return valid_cursor ? hitems[curpos.x].uid : -1;
|
|
}
|
|
|
|
int GridCtrl::GetRowUId() const
|
|
{
|
|
return valid_cursor ? vitems[curpos.y].uid : -1;
|
|
}
|
|
|
|
int GridCtrl::FindCol(int id) const
|
|
{
|
|
for(int i = fixed_cols; i < total_cols; i++)
|
|
if(hitems[i].id == id)
|
|
return i - fixed_cols;
|
|
return -1;
|
|
}
|
|
|
|
int GridCtrl::FindCol(const Id& id) const
|
|
{
|
|
for(int i = fixed_cols; i < total_cols; i++)
|
|
if(aliases.GetKey(i) == id)
|
|
return i - fixed_cols;
|
|
return -1;
|
|
}
|
|
|
|
int GridCtrl::FindCol(const String& s) const
|
|
{
|
|
for(int i = fixed_cols; i < total_cols; i++)
|
|
if(hitems[i].GetName() == s)
|
|
return i - fixed_cols;
|
|
return -1;
|
|
}
|
|
|
|
int GridCtrl::FindRow(int id) const
|
|
{
|
|
for(int i = fixed_rows; i < total_rows; i++)
|
|
if(vitems[i].id == id)
|
|
return i - fixed_rows;
|
|
return -1;
|
|
}
|
|
|
|
int GridCtrl::GetNewRowPos()
|
|
{
|
|
return rowidx > 0 ? rowidx - fixed_rows : -1;
|
|
}
|
|
|
|
int GridCtrl::GetNewRowId()
|
|
{
|
|
return rowidx > 0 ? vitems[rowidx].id - fixed_rows : -1;
|
|
}
|
|
|
|
int GridCtrl::GetRemovedRowPos()
|
|
{
|
|
return rowidx > 0 ? rowidx - fixed_rows : -1;
|
|
}
|
|
|
|
void GridCtrl::CenterCursor()
|
|
{
|
|
if(IsEmpty() || !IsCursor())
|
|
return;
|
|
|
|
sbx.Set(hitems[curpos.x].nLeft() - GetSize().cx / 2);
|
|
sby.Set(vitems[curpos.y].nTop() - GetSize().cy / 2);
|
|
}
|
|
|
|
bool GridCtrl::Go0(int jump, bool scroll, bool goleft, bool ctrlmode)
|
|
{
|
|
if(IsEmpty())
|
|
return false;
|
|
|
|
if(!ready)
|
|
{
|
|
UpdateSizes();
|
|
UpdateSb();
|
|
}
|
|
|
|
if(jump == GO_LEFT || jump == GO_RIGHT)
|
|
{
|
|
if(select_row && !ctrlmode && !draw_focus)
|
|
{
|
|
if(jump == GO_LEFT)
|
|
sbx.Set(sbx.Get() - 5);
|
|
else
|
|
sbx.Set(sbx.Get() + 5);
|
|
return false;
|
|
}
|
|
}
|
|
|
|
if(jump == GO_PREV)
|
|
if(curpos.y >= 0 && curpos.y <= firstVisRow)
|
|
return false;
|
|
|
|
if(jump == GO_NEXT)
|
|
if(curpos.y >= 0 && curpos.y >= lastVisRow)
|
|
return false;
|
|
|
|
if(jump == GO_PAGEUP || jump == GO_PAGEDN)
|
|
{
|
|
if(jump == GO_PAGEDN && curpos.y == lastVisRow)
|
|
return false;
|
|
|
|
if(jump == GO_PAGEUP && curpos.y == firstVisRow)
|
|
return false;
|
|
|
|
if(!valid_cursor)
|
|
{
|
|
GoFirstVisible();
|
|
return true;
|
|
}
|
|
}
|
|
|
|
Size sz = GetSize();
|
|
int sy = -1;
|
|
|
|
int opt = /*ctrls*/ ctrlmode ? CU_CTRLMODE : 0;
|
|
|
|
switch(jump)
|
|
{
|
|
case GO_BEGIN:
|
|
{
|
|
if(!SetCursor0(curpos.x < 0 ? firstVisCol : curpos.x, firstVisRow, opt, 0, 1))
|
|
return false;
|
|
sy = 0;
|
|
|
|
break;
|
|
}
|
|
case GO_END:
|
|
{
|
|
if(!SetCursor0((curpos.x < 0 || goleft) ? firstVisCol : curpos.x, lastVisRow, opt, 0, -1))
|
|
return false;
|
|
if(goleft)
|
|
GoCursorLeftRight();
|
|
else
|
|
sy = total_height - fixed_height - summary_height;
|
|
|
|
break;
|
|
}
|
|
case GO_NEXT:
|
|
{
|
|
if(!SetCursor0(curpos.x < 0 ? firstVisCol : curpos.x,
|
|
curpos.y < 0 ? firstVisRow : curpos.y + 1,
|
|
opt, 0, 1))
|
|
return false;
|
|
|
|
int b = vitems[curpos.y].nBottom(sby);
|
|
int r = sz.cy - summary_height;
|
|
|
|
if(b > r)
|
|
sy = sby + b - r;
|
|
|
|
break;
|
|
}
|
|
case GO_PREV:
|
|
{
|
|
if(!SetCursor0(curpos.x < 0 ? firstVisCol : curpos.x,
|
|
curpos.y < 0 ? firstVisRow : curpos.y - 1,
|
|
opt, 0, -1))
|
|
return false;
|
|
|
|
int t = vitems[curpos.y].nTop(sby + fixed_height);
|
|
|
|
if(t < 0)
|
|
sy = sby + t;
|
|
|
|
break;
|
|
}
|
|
case GO_LEFT:
|
|
{
|
|
if(!SetCursor0(curpos.x < 0 ? firstVisCol : curpos.x - 1,
|
|
curpos.y < 0 ? firstVisRow : curpos.y,
|
|
opt, -1, 0))
|
|
return false;
|
|
|
|
break;
|
|
}
|
|
case GO_RIGHT:
|
|
{
|
|
if(!SetCursor0(curpos.x < 0 ? firstVisCol : curpos.x + 1,
|
|
curpos.y < 0 ? firstVisRow : curpos.y,
|
|
ctrlmode ? CU_CTRLMODE : 0, 1, 0))
|
|
return false;
|
|
|
|
break;
|
|
}
|
|
case GO_PAGEUP:
|
|
{
|
|
int cp = curpos.y;
|
|
int c = cp;
|
|
|
|
int yn = vitems[c].nTop() - sz.cy;
|
|
int ya = vitems[c].nTop(sby);
|
|
|
|
bool found = false;
|
|
int i;
|
|
for(i = c - 1; i >= fixed_rows; i--)
|
|
if(yn >= vitems[i].nTop() && yn < vitems[i].nBottom())
|
|
{
|
|
found = true;
|
|
break;
|
|
}
|
|
|
|
c = found ? i : firstVisRow;
|
|
|
|
if(!SetCursor0(curpos.x < 0 ? firstVisCol : curpos.x, c, opt, 0, 1))
|
|
return false;
|
|
|
|
c = curpos.y;
|
|
|
|
if(scroll && resize_row_mode == 0)
|
|
{
|
|
int yc = vitems[c].nTop();
|
|
int yt = vitems[cp].nTop(sby);
|
|
int yb = vitems[cp].nBottom(sby);
|
|
|
|
if(yt < 0 || yb > sz.cy - 1)
|
|
sby.Set(yc - sz.cy + vitems[c].nHeight());
|
|
else
|
|
sby.Set(yc - ya);
|
|
}
|
|
|
|
break;
|
|
}
|
|
case GO_PAGEDN:
|
|
{
|
|
int cp = curpos.y;
|
|
int c = cp;
|
|
|
|
int yn = vitems[c].nTop() + sz.cy;
|
|
int ya = vitems[c].nTop(sby);
|
|
|
|
bool found = false;
|
|
int i;
|
|
for(i = c + 1; i < total_rows; i++)
|
|
if(yn >= vitems[i].nTop() && yn < vitems[i].nBottom())
|
|
{
|
|
found = true;
|
|
break;
|
|
}
|
|
|
|
c = found ? i : lastVisRow;
|
|
|
|
if(!SetCursor0(curpos.x < 0 ? firstVisCol : curpos.x, c, opt, 0, -1))
|
|
return false;
|
|
|
|
c = curpos.y;
|
|
|
|
if(scroll && resize_row_mode == 0)
|
|
{
|
|
int yc = vitems[c].nTop();
|
|
int yt = vitems[cp].nTop(sby);
|
|
int yb = vitems[cp].nBottom(sby);
|
|
|
|
if(yt < 0 || yb > sz.cy - 1)
|
|
sby.Set(yc);
|
|
else
|
|
sby.Set(yc - ya);
|
|
}
|
|
|
|
break;
|
|
}
|
|
}
|
|
|
|
if(jump == GO_LEFT || jump == GO_RIGHT)
|
|
{
|
|
if(scroll)
|
|
GoCursorLeftRight();
|
|
}
|
|
else
|
|
{
|
|
if(scroll && resize_row_mode == 0 && sy >= 0)
|
|
sby.Set(sy);
|
|
}
|
|
|
|
opt = UC_CHECK_VIS;
|
|
if(isedit)
|
|
opt |= UC_SHOW;
|
|
UpdateCtrls(opt);
|
|
|
|
return true;
|
|
}
|
|
|
|
void GridCtrl::GoCursorLeftRight()
|
|
{
|
|
if(resize_col_mode == 0)
|
|
{
|
|
int l = hitems[curpos.x].nLeft(sbx + fixed_width);
|
|
int r = hitems[curpos.x].nRight(sbx);
|
|
int w = GetSize().cx;
|
|
|
|
if(l < 0)
|
|
sbx.Set(sbx + l);
|
|
else if(r > w)
|
|
sbx.Set(sbx + r - w);
|
|
}
|
|
|
|
if(resize_row_mode == 0)
|
|
{
|
|
int t = vitems[curpos.y].nTop(sby + fixed_height);
|
|
int b = vitems[curpos.y].nBottom(sby);
|
|
int h = GetSize().cy - summary_height;
|
|
|
|
if(t < 0)
|
|
sby.Set(sby + t);
|
|
else if(b > h)
|
|
sby.Set(sby + b - h);
|
|
}
|
|
}
|
|
|
|
bool GridCtrl::GoFirstVisible(bool scroll)
|
|
{
|
|
if(IsEmpty())
|
|
return false;
|
|
|
|
SetCursor0(curpos.x < 0 ? firstVisCol : curpos.x, max(firstVisRow, firstRow));
|
|
if(scroll && resize_row_mode == 0)
|
|
sby.Set(vitems[firstRow].nTop(/*fixed_height*/));
|
|
if(isedit)
|
|
UpdateCtrls();
|
|
|
|
return true;
|
|
}
|
|
|
|
bool GridCtrl::GoBegin(bool scroll) { return Go0(GO_BEGIN, scroll); }
|
|
bool GridCtrl::GoEnd(bool scroll, bool goleft) { return Go0(GO_END, scroll, goleft); }
|
|
bool GridCtrl::GoNext(bool scroll) { return Go0(GO_NEXT, scroll); }
|
|
bool GridCtrl::GoPrev(bool scroll) { return Go0(GO_PREV, scroll); }
|
|
bool GridCtrl::GoLeft(bool scroll, bool ctrlmode) { return Go0(GO_LEFT, scroll, false, ctrlmode); }
|
|
bool GridCtrl::GoRight(bool scroll, bool ctrlmode) { return Go0(GO_RIGHT, scroll, false, ctrlmode); }
|
|
bool GridCtrl::GoPageUp(bool scroll) { return Go0(GO_PAGEUP, scroll); }
|
|
bool GridCtrl::GoPageDn(bool scroll) { return Go0(GO_PAGEDN, scroll); }
|
|
|
|
Ctrl * GridCtrl::GetCtrl(const Point &p, bool check_visibility, bool hrel, bool vrel, bool check_edits)
|
|
{
|
|
return GetCtrl(p.y, p.x, check_visibility, hrel, vrel, check_edits);
|
|
}
|
|
|
|
Ctrl * GridCtrl::GetCtrl(int r, int c, bool check_visibility, bool hrel, bool vrel, bool check_edits)
|
|
{
|
|
int idx = hrel ? fixed_cols + c : hitems[c].id;
|
|
int idy = vrel ? fixed_rows + r : vitems[r].id;
|
|
Ctrl * ctrl = items[idy][idx].ctrl;
|
|
if(check_edits && !ctrl)
|
|
ctrl = edits[idx].ctrl;
|
|
if(check_visibility && ctrl && !ctrl->IsShown())
|
|
ctrl = NULL;
|
|
return ctrl;
|
|
}
|
|
|
|
Ctrl * GridCtrl::GetCtrl(int r, int c)
|
|
{
|
|
return GetCtrl(r + fixed_rows, c, true, true, false);
|
|
}
|
|
|
|
Ctrl * GridCtrl::GetCtrlAt(int r, int c)
|
|
{
|
|
return GetCtrl(r + fixed_rows, c, false, true, false);
|
|
}
|
|
|
|
Ctrl * GridCtrl::GetCtrl(int c)
|
|
{
|
|
return GetCtrl(rowidx, c, true, true, false);
|
|
}
|
|
|
|
bool GridCtrl::IsCtrl(Point &p, bool check_visibility)
|
|
{
|
|
return GetCtrl(p, check_visibility, false, false) != NULL;
|
|
}
|
|
|
|
void GridCtrl::GoTo(int r, bool setcursor, bool scroll)
|
|
{
|
|
r += fixed_rows;
|
|
|
|
if(setcursor)
|
|
if(!SetCursor0(r))
|
|
return;
|
|
|
|
if(scroll)
|
|
{
|
|
Size sz = GetSize();
|
|
sby.Set(vitems[r].nTop() + vitems[r].nHeight() / 2 - sz.cy / 2);
|
|
}
|
|
}
|
|
|
|
void GridCtrl::GoTo(int r, int c, bool setcursor, bool scroll)
|
|
{
|
|
c += fixed_cols;
|
|
r += fixed_rows;
|
|
|
|
if(setcursor)
|
|
if(!SetCursor0(c, r))
|
|
return;
|
|
|
|
if(scroll)
|
|
{
|
|
Size sz = GetSize();
|
|
sbx.Set(hitems[c].nLeft() + hitems[c].nWidth() / 2 - sz.cx / 2);
|
|
sby.Set(vitems[r].nTop() + vitems[r].nHeight() / 2 - sz.cy / 2);
|
|
}
|
|
}
|
|
|
|
|
|
int GridCtrl::GetCount() const { return total_rows - fixed_rows; }
|
|
int GridCtrl::GetFixedCount() const { return fixed_rows; }
|
|
int GridCtrl::GetTotalCount() const { return total_rows; }
|
|
|
|
int GridCtrl::GetVisibleCount() const
|
|
{
|
|
int cnt = 0;
|
|
for(int i = fixed_rows; i < total_rows; i++)
|
|
if(!vitems[i].hidden)
|
|
++cnt;
|
|
return cnt;
|
|
}
|
|
|
|
GridCtrl& GridCtrl::SetColsMin(int size)
|
|
{
|
|
for(int i = 1; i < total_cols; i++)
|
|
hitems[i].min = size;
|
|
|
|
return *this;
|
|
}
|
|
|
|
GridCtrl& GridCtrl::SetColsMax(int size)
|
|
{
|
|
for(int i = 0; i < total_rows; i++)
|
|
hitems[i].max = size;
|
|
|
|
return *this;
|
|
}
|
|
|
|
void GridCtrl::GotFocus()
|
|
{
|
|
LG(3, "GotFocus");
|
|
RestoreFocus();
|
|
if(valid_cursor)
|
|
RefreshRow(curpos.y, 0, 0);
|
|
}
|
|
|
|
void GridCtrl::LostFocus()
|
|
{
|
|
LG(3, "LostFocus");
|
|
if(valid_cursor)
|
|
RefreshRow(curpos.y, 0, 0);
|
|
popup.Close();
|
|
}
|
|
|
|
void GridCtrl::ChildGotFocus()
|
|
{
|
|
LG(3, "ChildGotFocus");
|
|
if(valid_cursor)
|
|
RefreshRow(curpos.y, 0, 0);
|
|
Ctrl::ChildGotFocus();
|
|
}
|
|
|
|
void GridCtrl::ChildLostFocus()
|
|
{
|
|
LG(3, "ChildLostFocus");
|
|
if(valid_cursor)
|
|
{
|
|
//if(focus_lost_accepting && !HasFocusDeep())
|
|
// EndEdit();
|
|
RefreshRow(curpos.y, 0, 0);
|
|
}
|
|
Ctrl::ChildLostFocus();
|
|
}
|
|
|
|
void GridCtrl::Repaint(bool do_recalc_cols /* = false*/, bool do_recalc_rows /* = false*/, int opt)
|
|
{
|
|
if(do_recalc_cols)
|
|
{
|
|
if(ready)
|
|
{
|
|
UpdateCols(true);
|
|
firstCol = fixed_cols;
|
|
}
|
|
else
|
|
recalc_cols = true;
|
|
}
|
|
|
|
if(do_recalc_rows)
|
|
{
|
|
if(ready)
|
|
{
|
|
UpdateRows(true);
|
|
firstRow = fixed_rows;
|
|
}
|
|
else
|
|
recalc_rows = true;
|
|
}
|
|
|
|
if(ready)
|
|
{
|
|
doscroll = false;
|
|
UpdateSizes();
|
|
UpdateSb();
|
|
UpdateHolder();
|
|
UpdateSummary();
|
|
if(opt & RP_UPDCTRLS)
|
|
UpdateCtrls();
|
|
SyncCtrls();
|
|
if(opt & RP_TOOLBAR)
|
|
RebuildToolBar();
|
|
doscroll = true;
|
|
Refresh();
|
|
}
|
|
}
|
|
|
|
void GridCtrl::Ready(bool b)
|
|
{
|
|
ready = b;
|
|
if(b)
|
|
Repaint(true);
|
|
}
|
|
|
|
GridCtrl& GridCtrl::ResizeColMode(int m)
|
|
{
|
|
resize_col_mode = m;
|
|
recalc_cols = true;
|
|
RefreshLayout();
|
|
return *this;
|
|
}
|
|
|
|
GridCtrl& GridCtrl::ResizeRowMode(int m)
|
|
{
|
|
resize_row_mode = m;
|
|
recalc_rows = true;
|
|
RefreshLayout();
|
|
return *this;
|
|
}
|
|
|
|
void GridCtrl::UpdateSb(bool horz, bool vert)
|
|
{
|
|
scrollbox.Width(ScrollBarSize());
|
|
|
|
if(horz)
|
|
{
|
|
sbx.SetTotal(resize_col_mode == 0 ? total_width - fixed_width : 0);
|
|
sbx.SetPage(GetSize().cx - fixed_width);
|
|
}
|
|
|
|
if(vert)
|
|
{
|
|
sby.SetTotal(resize_row_mode == 0 ? total_height - fixed_height + summary_height : 0);
|
|
sby.SetPage(GetSize().cy - fixed_height);
|
|
}
|
|
|
|
sbx.SetFrame(resize_row_mode == 0 && sby.GetTotal() > GetSize().cy - fixed_height ? scrollbox : NullFrame());
|
|
}
|
|
|
|
bool GridCtrl::SwitchEdit()
|
|
{
|
|
if(!valid_cursor)
|
|
return false;
|
|
|
|
Ctrl * ctrl = items[curid.y][curid.x].ctrl;
|
|
if(ctrl)
|
|
{
|
|
if(ctrl->HasFocusDeep())
|
|
EndEdit(true, true);
|
|
SetFocus();
|
|
rowbkp[curid.x] = ctrl->GetData();
|
|
//items[curid.y][curid.x].val = ctrl->GetData();
|
|
focused_ctrl = ctrl;
|
|
focused_ctrl_id = curid.x;
|
|
focused_ctrl_val = ctrl->GetData();
|
|
ctrl->SetFocus();
|
|
}
|
|
else
|
|
{
|
|
if(isedit)
|
|
EndEdit(true, true);
|
|
else
|
|
StartEdit();
|
|
}
|
|
return true;
|
|
}
|
|
|
|
bool GridCtrl::StartEdit()
|
|
{
|
|
if(!valid_cursor || !IsRowEditable())
|
|
return false;
|
|
|
|
WhenStartEdit();
|
|
|
|
SetCtrlsData();
|
|
UpdateCtrls(UC_SHOW | UC_CURSOR | UC_CTRLS | (goto_first_edit ? UC_GOFIRST : 0));
|
|
return true;
|
|
}
|
|
|
|
bool GridCtrl::EndEdit(bool accept, bool doall, bool remove_row)
|
|
{
|
|
if(!valid_cursor)
|
|
return true;
|
|
|
|
if(accept && !GetCtrlsData(false, doall, accept))
|
|
return false;
|
|
|
|
UpdateCtrls(UC_CTRLS);
|
|
|
|
if(!accept)
|
|
{
|
|
CancelCtrlsData();
|
|
if(newrow_inserted || newrow_appended)
|
|
{
|
|
newrow_inserted = false;
|
|
newrow_appended = false;
|
|
if(remove_row)
|
|
{
|
|
WhenCancelNewRow();
|
|
Remove0(curpos.y, 1, true, true, false);
|
|
}
|
|
}
|
|
}
|
|
WhenEndEdit();
|
|
SyncSummary();
|
|
return true;
|
|
}
|
|
|
|
void GridCtrl::Insert0(int row, int cnt /* = 1*/, bool recalc /* = true*/, bool refresh /* = true*/, int size /* = GD_ROW_HEIGHT*/)
|
|
{
|
|
int id;
|
|
|
|
if(size < 0)
|
|
size = GD_ROW_HEIGHT;
|
|
|
|
if(row < total_rows)
|
|
{
|
|
id = vitems[row].id;
|
|
for(int i = 0; i < total_rows; i++)
|
|
{
|
|
if(vitems[i].id >= id)
|
|
vitems[i].id += cnt;
|
|
}
|
|
}
|
|
else
|
|
id = total_rows;
|
|
|
|
ItemRect ir;
|
|
ir.size = size;
|
|
vitems.Insert(row, ir, cnt);
|
|
items.InsertN(id, cnt);
|
|
|
|
for(int i = 0; i < cnt; i++)
|
|
{
|
|
int nid = id + i;
|
|
int r = row + i;
|
|
vitems[r].id = nid;
|
|
vitems[r].uid = rowuid++;
|
|
vitems[r].items = &items;
|
|
vitems[r].operation = ready ? GridOperation::INSERT : GridOperation::NONE;
|
|
items[nid].SetCount(total_cols);
|
|
UpdateDefaults(nid);
|
|
rowidx = r;
|
|
total_rows++;
|
|
WhenCreateRow();
|
|
}
|
|
|
|
UpdateJoins(row, -1, cnt);
|
|
|
|
firstRow = -1;
|
|
|
|
if(recalc)
|
|
{
|
|
if(ready)
|
|
{
|
|
RecalcRows();
|
|
UpdateSizes();
|
|
|
|
if(refresh)
|
|
{
|
|
UpdateSb();
|
|
SyncSummary();
|
|
SyncCtrls();
|
|
RefreshFrom(row);
|
|
}
|
|
}
|
|
else
|
|
recalc_rows = true;
|
|
}
|
|
|
|
SetOrder();
|
|
SetModify();
|
|
}
|
|
|
|
bool GridCtrl::Remove0(int row, int cnt /* = 1*/, bool recalc /* = true*/, bool refresh /* = true*/, bool whens /* = true*/)
|
|
{
|
|
if(cnt < 0)
|
|
return false;
|
|
|
|
bool cancel = true;
|
|
int x = -1;
|
|
int y = -1;
|
|
|
|
for(int i = 0; i < cnt; i++)
|
|
{
|
|
int rid = row + i;
|
|
rowidx = remove_hides ? rid : row;
|
|
|
|
if(vitems[rowidx].locked)
|
|
continue;
|
|
|
|
int id = vitems[rowidx].id;
|
|
int op = vitems[rowidx].operation;
|
|
|
|
vitems[rowidx].operation = GridOperation::REMOVE;
|
|
|
|
if(remove_hides)
|
|
{
|
|
vitems[rowidx].hidden = true;
|
|
vitems[rowidx].tsize = vitems[rowidx].size;
|
|
vitems[rowidx].size = 0;
|
|
vitems[rowidx].nsize = 0;
|
|
//for this row in hitems selected flag should be cleared too
|
|
}
|
|
|
|
if(whens)
|
|
{
|
|
if(call_whenremoverow)
|
|
{
|
|
#ifdef LOG_CALLBACKS
|
|
LGR(2, "WhenRemoveRow()");
|
|
LGR(2, Format("[row: %d]", rowidx));
|
|
#endif
|
|
WhenRemoveRow();
|
|
}
|
|
|
|
if(cancel_remove)
|
|
{
|
|
vitems[rowidx].operation = op;
|
|
cancel_remove = false;
|
|
cancel = false;
|
|
if(i == cnt - 1)
|
|
return cancel;
|
|
else
|
|
continue;
|
|
}
|
|
if(call_whenremoverow)
|
|
WhenAcceptRow();
|
|
}
|
|
|
|
if(vitems[rowidx].IsSelect())
|
|
{
|
|
int si = 0;
|
|
for(int j = fixed_cols; j < total_cols; j++)
|
|
if(GetItem(rowidx, j).IsSelect())
|
|
si++;
|
|
|
|
selected_items -= si;
|
|
selected_rows -= 1;
|
|
}
|
|
|
|
if(!remove_hides)
|
|
{
|
|
for(int j = 0; j < total_rows; j++)
|
|
if(vitems[j].id > id)
|
|
vitems[j].id--;
|
|
}
|
|
else
|
|
vitems[rowidx].style = 0; //bo IsSelect korzysta z pola style
|
|
|
|
|
|
total_height -= vitems[rowidx].nHeight();
|
|
|
|
if(rid == ctrlid.y)
|
|
UpdateCtrls(UC_HIDE | UC_CTRLS);
|
|
|
|
bool removed = false;
|
|
|
|
if(!remove_hides)
|
|
{
|
|
total_rows--;
|
|
vitems.Remove(rowidx);
|
|
items.Remove(id);
|
|
removed = true;
|
|
}
|
|
|
|
if(rid == curpos.y)
|
|
{
|
|
x = curpos.x;
|
|
y = remove_hides ? curpos.y + cnt : curpos.y;
|
|
ClearCursor(true);
|
|
}
|
|
|
|
if(rid == oldcur.y)
|
|
{
|
|
oldcur.x = oldcur.y = -1;
|
|
}
|
|
|
|
if(whens && removed)
|
|
WhenRemovedRow();
|
|
}
|
|
|
|
if(recalc)
|
|
{
|
|
if(ready)
|
|
{
|
|
RecalcRows();
|
|
UpdateSizes();
|
|
|
|
if(refresh)
|
|
{
|
|
UpdateSb();
|
|
SyncSummary();
|
|
SyncCtrls();
|
|
RefreshFrom(row);
|
|
|
|
if(x >= 0 && y >= 0)
|
|
SetCursor0(x, max(fixed_rows, min(total_rows - 1, y)), 0, 0, -1);
|
|
|
|
if(!valid_cursor)
|
|
RebuildToolBar();
|
|
}
|
|
}
|
|
else
|
|
{
|
|
UpdateVisColRow(false);
|
|
recalc_rows = true;
|
|
}
|
|
}
|
|
|
|
firstRow = -1;
|
|
|
|
if(IsEmpty())
|
|
{
|
|
WhenEmpty();
|
|
WhenCursor();
|
|
}
|
|
|
|
SetOrder();
|
|
SetModify();
|
|
return cancel;
|
|
}
|
|
|
|
int GridCtrl::Append0(int cnt, int size, bool refresh)
|
|
{
|
|
if(size < 0)
|
|
size = GD_ROW_HEIGHT;
|
|
|
|
vitems.AddN(cnt);
|
|
items.AddN(cnt);
|
|
|
|
int j = total_rows;
|
|
int k = j;
|
|
int n = j > 0 ? vitems[j - 1].n + (int) vitems[j - 1].hidden : 0;
|
|
for(int i = 0; i < cnt; i++)
|
|
{
|
|
ItemRect &ir = vitems[j];
|
|
ir.parent = this;
|
|
ir.items = &items;
|
|
ir.size = ir.nsize = size;
|
|
ir.operation = ready ? GridOperation::INSERT : GridOperation::NONE;
|
|
|
|
if(total_rows > 0)
|
|
{
|
|
ir.pos = ir.npos = vitems[j - 1].nBottom();
|
|
ir.n = n;
|
|
}
|
|
|
|
if(size == 0)
|
|
ir.hidden = true;
|
|
else
|
|
{
|
|
lastVisRow = j;
|
|
if(firstVisRow < 0)
|
|
firstVisRow = lastVisRow;
|
|
}
|
|
|
|
items[j].SetCount(total_cols);
|
|
ir.id = j++;
|
|
ir.uid = rowuid++;
|
|
UpdateDefaults(ir.id);
|
|
rowidx = j - 1;
|
|
total_rows = j;
|
|
WhenCreateRow();
|
|
}
|
|
|
|
total_height += size * cnt;
|
|
|
|
if(refresh && ready)
|
|
{
|
|
if(resize_row_mode > 0)
|
|
UpdateRows(true);
|
|
UpdateSb();
|
|
SyncSummary();
|
|
SyncCtrls();
|
|
RefreshFrom(k);
|
|
}
|
|
|
|
SetOrder();
|
|
SetModify();
|
|
return total_rows - fixed_rows;
|
|
}
|
|
|
|
bool GridCtrl::Duplicate0(int row, int cnt, bool recalc, bool refresh)
|
|
{
|
|
int id;
|
|
int nrow = row + cnt;
|
|
|
|
if(nrow < total_rows)
|
|
{
|
|
id = vitems[nrow].id;
|
|
for(int i = 0; i < total_rows; i++)
|
|
{
|
|
if(vitems[i].id >= id)
|
|
vitems[i].id += cnt;
|
|
}
|
|
}
|
|
else
|
|
id = total_rows;
|
|
|
|
ItemRect ir;
|
|
vitems.Insert(nrow, ir, cnt);
|
|
items.InsertN(id, cnt);
|
|
|
|
int duplicated = 0;
|
|
|
|
for(int i = 0; i < cnt; i++)
|
|
{
|
|
int nid = id + i;
|
|
int r = nrow + i;
|
|
vitems[r].id = nid;
|
|
vitems[r].uid = rowuid++;
|
|
vitems[r].items = &items;
|
|
vitems[r].size = vitems[row + i].size;
|
|
items[nid].SetCount(total_cols);
|
|
|
|
int oid = vitems[row + i].id;
|
|
for(int j = 1; j < total_cols; j++)
|
|
items[nid][j].val = items[oid][j].val;
|
|
|
|
rowidx = r;
|
|
total_rows++;
|
|
WhenCreateRow();
|
|
|
|
duplicated++;
|
|
WhenDuplicateRow();
|
|
if(cancel_duplicate)
|
|
{
|
|
duplicated--;
|
|
Remove0(r, 1, false, false, false);
|
|
cancel_duplicate = false;
|
|
}
|
|
|
|
}
|
|
|
|
firstRow = -1;
|
|
|
|
if(recalc)
|
|
{
|
|
if(ready)
|
|
{
|
|
RecalcRows();
|
|
UpdateSizes();
|
|
|
|
if(refresh)
|
|
{
|
|
UpdateSb();
|
|
SyncSummary();
|
|
SyncCtrls();
|
|
RefreshFrom(nrow);
|
|
}
|
|
}
|
|
else
|
|
recalc_rows = true;
|
|
}
|
|
|
|
if(duplicated > 0)
|
|
{
|
|
SetOrder();
|
|
SetModify();
|
|
}
|
|
|
|
return duplicated > 0;
|
|
}
|
|
|
|
int GridCtrl::Append(int cnt, bool refresh, int height)
|
|
{
|
|
return Append0(cnt, height, refresh);
|
|
}
|
|
|
|
void GridCtrl::Insert(int i, int cnt)
|
|
{
|
|
Insert0(fixed_rows + i, cnt);
|
|
}
|
|
|
|
void GridCtrl::Remove(int i, int cnt)
|
|
{
|
|
Remove0(i < 0 ? rowidx : fixed_rows + i, cnt);
|
|
}
|
|
|
|
void GridCtrl::RemoveFirst(int cnt /* = 1*/)
|
|
{
|
|
Remove0(fixed_rows, min(total_rows - fixed_rows, cnt));
|
|
}
|
|
|
|
void GridCtrl::RemoveLast(int cnt /* = 1*/)
|
|
{
|
|
Remove0(total_rows - cnt, min(total_rows - fixed_rows, cnt));
|
|
}
|
|
|
|
void GridCtrl::Duplicate(int i, int cnt)
|
|
{
|
|
Duplicate0(fixed_rows + i, cnt);
|
|
}
|
|
|
|
void GridCtrl::Select(int n, int cnt /* = 1*/)
|
|
{
|
|
SelectCount(n + fixed_rows, cnt, true);
|
|
}
|
|
|
|
void GridCtrl::SelectCount(int i, int cnt, bool sel)
|
|
{
|
|
if(cnt <= 0)
|
|
return;
|
|
SelectRange(Point(fixed_cols, i), Point(total_cols - 1, i + cnt - 1), sel);
|
|
}
|
|
|
|
void GridCtrl::SelectRange(int from, int to, bool sel)
|
|
{
|
|
SelectRange(Point(fixed_cols, from), Point(total_cols - 1, to), sel);
|
|
}
|
|
|
|
void GridCtrl::ShiftSelect(int from, int to)
|
|
{
|
|
ShiftSelect(Point(fixed_cols, from), Point(total_cols - 1, to));
|
|
}
|
|
|
|
void GridCtrl::SelectRange(Point from, Point to, bool sel /* = true*/, bool fullrow /* = false*/)
|
|
{
|
|
Point f, t;
|
|
|
|
if(fullrow)
|
|
{
|
|
from.x = fixed_cols;
|
|
to.x = total_cols - 1;
|
|
}
|
|
|
|
if(from.y < to.y)
|
|
{
|
|
f = from;
|
|
t = to;
|
|
}
|
|
else
|
|
{
|
|
f = to;
|
|
t = from;
|
|
}
|
|
|
|
int ymin = f.y;
|
|
int ymax = t.y;
|
|
|
|
int xmin = f.x;
|
|
int xmax = t.x;
|
|
|
|
if(xmin > xmax)
|
|
{
|
|
int t = xmin;
|
|
xmin = xmax;
|
|
xmax = t;
|
|
}
|
|
|
|
for(int i = ymin; i <= ymax; i++)
|
|
{
|
|
ItemRect &ir = vitems[i];
|
|
int yid = ir.id;
|
|
|
|
bool is_row_selected = false;
|
|
bool do_refresh = false;
|
|
|
|
for(int j = fixed_cols; j < total_cols; j++)
|
|
{
|
|
int xid = hitems[j].id;
|
|
Item &it = items[yid][xid];
|
|
|
|
if(j >= xmin && j <= xmax)
|
|
{
|
|
if(it.IsSelect() != sel)
|
|
{
|
|
it.Select(sel);
|
|
do_refresh = true;
|
|
}
|
|
if(sel)
|
|
{
|
|
is_row_selected = true;
|
|
selected_items++;
|
|
}
|
|
else
|
|
selected_items--;
|
|
}
|
|
else if(it.IsSelect())
|
|
is_row_selected = true;
|
|
}
|
|
|
|
if(!ir.IsSelect())
|
|
{
|
|
if(is_row_selected)
|
|
selected_rows++;
|
|
}
|
|
else if(!is_row_selected)
|
|
selected_rows--;
|
|
|
|
ir.Select(is_row_selected);
|
|
|
|
if(do_refresh)
|
|
RefreshRow(i, false, false);
|
|
|
|
}
|
|
}
|
|
|
|
void GridCtrl::SelectInverse(int from, int to)
|
|
{
|
|
int nfrom = min(from, to);
|
|
int nto = max(from, to);
|
|
|
|
for(int i = nfrom ; i <= nto; i++)
|
|
{
|
|
vitems[i].Select(!vitems[i].IsSelect());
|
|
if(vitems[i].IsSelect())
|
|
selected_rows++;
|
|
else
|
|
selected_rows--;
|
|
RefreshRow(i, 0);
|
|
}
|
|
}
|
|
|
|
void GridCtrl::ShiftSelect(Point from, Point to)
|
|
{
|
|
Point f, t;
|
|
|
|
if(from.y < to.y)
|
|
{
|
|
f = from;
|
|
t = to;
|
|
}
|
|
else
|
|
{
|
|
f = to;
|
|
t = from;
|
|
}
|
|
|
|
if(select_row)
|
|
{
|
|
f.x = fixed_cols;
|
|
t.x = total_cols;
|
|
}
|
|
|
|
int ymin = f.y;
|
|
int ymax = t.y;
|
|
|
|
int xmin = f.x;
|
|
int xmax = t.x;
|
|
|
|
if(ymin == ymax && xmin > xmax)
|
|
{
|
|
int t = xmin;
|
|
xmin = xmax;
|
|
xmax = t;
|
|
}
|
|
|
|
selected_rows = 0;
|
|
selected_items = 0;
|
|
|
|
for(int i = fixed_rows; i < total_rows; i++)
|
|
{
|
|
ItemRect &ir = vitems[i];
|
|
int yid = ir.id;
|
|
|
|
bool is_row_selected = false;
|
|
bool do_refresh = false;
|
|
|
|
if((i >= ymin && i <= ymax))
|
|
{
|
|
for(int j = fixed_cols; j < total_cols; j++)
|
|
{
|
|
int xid = hitems[j].id;
|
|
|
|
bool s = true;
|
|
if(i == ymin && ymin == ymax)
|
|
s = (j >= xmin && j <= xmax);
|
|
else if(i == ymin) s = (j >= xmin);
|
|
else if(i == ymax) s = (j <= xmax);
|
|
|
|
if(items[yid][xid].IsSelect() != s)
|
|
{
|
|
items[yid][xid].Select(s);
|
|
do_refresh = true;
|
|
}
|
|
if(s)
|
|
{
|
|
is_row_selected = true;
|
|
selected_items++;
|
|
}
|
|
}
|
|
}
|
|
else
|
|
{
|
|
for(int j = fixed_cols; j < total_cols; j++)
|
|
if(items[yid][j].IsSelect())
|
|
{
|
|
items[yid][j].Select(false);
|
|
do_refresh = true;
|
|
}
|
|
}
|
|
|
|
if(is_row_selected)
|
|
selected_rows++;
|
|
|
|
ir.Select(is_row_selected);
|
|
|
|
if(do_refresh)
|
|
RefreshRow(i, false, false);
|
|
}
|
|
}
|
|
|
|
void GridCtrl::DoShiftSelect()
|
|
{
|
|
if(!shiftmode)
|
|
{
|
|
if(!IsValidCursor(oldcur))
|
|
return;
|
|
shiftpos = oldcur;
|
|
shiftmode = true;
|
|
ShiftSelect(oldcur, curpos);
|
|
}
|
|
else
|
|
ShiftSelect(shiftpos, curpos);
|
|
}
|
|
|
|
void GridCtrl::DoCtrlSelect()
|
|
{
|
|
if(!IsValidCursor(oldcur))
|
|
return;
|
|
|
|
if(shiftmode && !select_row)
|
|
{
|
|
ClearSelection();
|
|
shiftpos = oldcur;
|
|
}
|
|
|
|
if(!IsValidCursor(shiftpos))
|
|
shiftpos = oldcur;
|
|
|
|
SelectRange(shiftpos, oldcur, false, select_row);
|
|
SelectRange(shiftpos, curpos, true, select_row);
|
|
}
|
|
|
|
bool GridCtrl::IsSelected(int n, bool relative)
|
|
{
|
|
//int id = vitems[n + (relative ? fixed_rows : 0)].id;
|
|
int id = n + (relative ? fixed_rows : 0);
|
|
return vitems[id].IsSelect() || vitems[id].IsCursor();
|
|
}
|
|
|
|
bool GridCtrl::IsSelected(int n, int m, bool relative)
|
|
{
|
|
int r = relative ? fixed_rows + n : n;
|
|
int c = relative ? fixed_cols + m : m;
|
|
Item &it = GetItem(r, c);
|
|
return it.IsSelect() || it.IsCursor();
|
|
}
|
|
|
|
bool GridCtrl::IsSelected()
|
|
{
|
|
return IsSelected(rowidx, false);
|
|
}
|
|
|
|
void GridCtrl::ClearSelection()
|
|
{
|
|
LG(0, "Cleared %d", selected_rows);
|
|
shiftmode = false;
|
|
shiftpos = curpos;
|
|
if(selected_rows > 0)
|
|
{
|
|
for(int i = fixed_rows; i < total_rows; i++)
|
|
{
|
|
vitems[i].Select(0);
|
|
for(int j = fixed_cols; j < total_cols; j++)
|
|
items[i][j].Select(0);
|
|
}
|
|
|
|
Refresh();
|
|
selected_rows = 0;
|
|
selected_items = 0;
|
|
}
|
|
}
|
|
|
|
void GridCtrl::DoInsert0(bool edit, bool after)
|
|
{
|
|
if(!valid_cursor)
|
|
return;
|
|
|
|
if(!EndEdit())
|
|
return;
|
|
|
|
SetItemCursor(curpos, false, false);
|
|
RefreshRow(curpos.y, false);
|
|
curpos.y += int(after);
|
|
Insert0(curpos.y, 1, true, true, GD_ROW_HEIGHT);
|
|
int y = curpos.y;
|
|
curpos.y = -1;
|
|
valid_cursor = false;
|
|
call_whenchangecol = false;
|
|
call_whenchangerow = false;
|
|
SetCursor0(curpos.x, y > total_rows - 1 ? total_rows - 1 : y);
|
|
call_whenchangecol = true;
|
|
call_whenchangerow = true;
|
|
|
|
newrow_inserted = true;
|
|
|
|
if(edit)
|
|
StartEdit();
|
|
|
|
if(!isedit)
|
|
WhenInsertRow0();
|
|
|
|
WhenNewRow();
|
|
|
|
if(!edit)
|
|
newrow_inserted = false;
|
|
}
|
|
|
|
void GridCtrl::DoInsertBefore0(bool edit)
|
|
{
|
|
DoInsert0(edit, false);
|
|
}
|
|
|
|
void GridCtrl::DoInsertAfter0(bool edit)
|
|
{
|
|
DoInsert0(edit, true);
|
|
}
|
|
|
|
void GridCtrl::DoDuplicate0()
|
|
{
|
|
int cy = 0;
|
|
if(selected_rows == 0)
|
|
{
|
|
if(!valid_cursor)
|
|
return;
|
|
cy = curpos.y + 1;
|
|
if(!Duplicate0(curpos.y, 1, false, false))
|
|
cy = 0;
|
|
}
|
|
else if(!multi_select)
|
|
{
|
|
cy = GetMinRowSelected() + selected_rows * 2 - 1;
|
|
if(!Duplicate0(GetMinRowSelected(), selected_rows, false, false))
|
|
cy = 0;
|
|
}
|
|
|
|
if(cy > 0)
|
|
{
|
|
Repaint(false, true);
|
|
SetCursor0(curpos.x < 0 ? firstVisCol : curpos.x, max(fixed_rows, min(total_rows - 1, cy)));
|
|
}
|
|
}
|
|
|
|
void GridCtrl::DoRemove()
|
|
{
|
|
if(keep_last_row && GetCount() == 1)
|
|
return;
|
|
|
|
if(!valid_cursor && selected_rows == 0)
|
|
return;
|
|
|
|
if(ask_remove)
|
|
{
|
|
if(!PromptYesNo(Format(t_("Do you really want to delete selected %s ?"), selected_rows > 1 ? t_("rows") : t_("row"))))
|
|
return;
|
|
}
|
|
|
|
bool newrow = IsNewRow();
|
|
CancelEdit(false);
|
|
|
|
int y = curpos.y;
|
|
int ocy = curpos.y;
|
|
|
|
if(selected_rows == 0)
|
|
{
|
|
//do not call WhenRemoveRow when not new (not inserted) row
|
|
Remove0(curpos.y, 1, true, true, !newrow);
|
|
}
|
|
else
|
|
{
|
|
int not_removed = 0;
|
|
|
|
minRowSelected = GetMinRowSelected();
|
|
maxRowSelected = GetMaxRowSelected();
|
|
|
|
if(keep_last_row && (maxRowSelected - minRowSelected + 1) == GetCount())
|
|
maxRowSelected--;
|
|
|
|
LG(0, "Min:%d, Max:%d", minRowSelected, maxRowSelected);
|
|
|
|
for(int i = minRowSelected; i <= maxRowSelected; i++)
|
|
{
|
|
int rid = remove_hides ? i : minRowSelected + not_removed;
|
|
if(vitems[rid].IsSelect())
|
|
{
|
|
sel_begin = i == minRowSelected;
|
|
sel_end = i == maxRowSelected;
|
|
|
|
if(Remove0(rid, 1, false, false))
|
|
{
|
|
/* curpos.y tez sie zmienia bo gdy w whenromoverow jest woloanie innego okna to
|
|
grid traci fokus i wola sie lostfoucs, ktory wymaga poprawnego curpos.y */
|
|
if(i == ocy)
|
|
y = curpos.y = rid - 1;
|
|
}
|
|
else
|
|
not_removed++;
|
|
}
|
|
else
|
|
not_removed++;
|
|
}
|
|
RecalcRows();
|
|
//UpdateSizes();
|
|
SyncCtrls();
|
|
UpdateSb();
|
|
Refresh();
|
|
curpos.y = -1;
|
|
valid_cursor = false;
|
|
SetCursor0(curpos.x < 0 ? firstVisCol : curpos.x, max(fixed_rows, min(total_rows - 1, y)), 0, 0, -1);
|
|
shiftpos = curpos;
|
|
}
|
|
}
|
|
|
|
void GridCtrl::DoAppend0(bool edit)
|
|
{
|
|
if(!EndEdit())
|
|
return; //powinno byc zakomentowane ale wtedy goend wola endedit ale juz dla rowidx wiekszego o 1..
|
|
|
|
Append0(1, GD_ROW_HEIGHT, true);
|
|
|
|
call_whenchangecol = false;
|
|
call_whenchangerow = false;
|
|
GoEnd(true, true);
|
|
call_whenchangecol = true;
|
|
call_whenchangerow = true;
|
|
|
|
newrow_appended = true;
|
|
|
|
if(edit)
|
|
{
|
|
StartEdit();
|
|
GoCursorLeftRight();
|
|
}
|
|
|
|
if(!isedit)
|
|
WhenInsertRow0();
|
|
|
|
WhenNewRow();
|
|
|
|
if(!edit)
|
|
newrow_appended = false;
|
|
|
|
}
|
|
|
|
void GridCtrl::DoAppend() { DoAppend0(edits_in_new_row); }
|
|
void GridCtrl::DoAppendNoEdit() { DoAppend0(0); }
|
|
void GridCtrl::DoInsertBefore() { DoInsertBefore0(1); }
|
|
void GridCtrl::DoInsertBeforeNoEdit() { DoInsertBefore0(0); }
|
|
void GridCtrl::DoInsertAfter() { DoInsertAfter0(1); }
|
|
void GridCtrl::DoInsertAfterNoEdit() { DoInsertAfter0(0); }
|
|
void GridCtrl::DoDuplicate() { DoDuplicate0(); }
|
|
void GridCtrl::DoEdit() { StartEdit(); }
|
|
void GridCtrl::DoEndEdit() { EndEdit(); }
|
|
void GridCtrl::DoCancelEdit() { EndEdit(false); }
|
|
void GridCtrl::DoSwapUp() { SwapUp(); }
|
|
void GridCtrl::DoSwapDown() { SwapDown(); }
|
|
void GridCtrl::DoGoBegin() { GoBegin(); }
|
|
void GridCtrl::DoGoEnd() { GoEnd(); }
|
|
void GridCtrl::DoGoNext() { GoNext(); }
|
|
void GridCtrl::DoGoPrev() { GoPrev(); }
|
|
void GridCtrl::DoGoLeft() { GoLeft(); }
|
|
void GridCtrl::DoGoRight() { GoRight(); }
|
|
void GridCtrl::DoGoPageUp() { GoPageUp(); }
|
|
void GridCtrl::DoGoPageDn() { GoPageDn(); }
|
|
|
|
void GridCtrl::DoSelectAll()
|
|
{
|
|
SelectCount(fixed_rows, total_rows - fixed_rows);
|
|
}
|
|
|
|
GridCtrl& GridCtrl::ShowRow(int n, bool refresh)
|
|
{
|
|
if(!vitems[n].hidden)
|
|
return *this;
|
|
vitems[n].hidden = false;
|
|
vitems[n].size = vitems[n].tsize;
|
|
if(refresh)
|
|
Repaint(false, true);
|
|
|
|
return *this;
|
|
}
|
|
|
|
GridCtrl& GridCtrl::HideRow(int n, bool refresh)
|
|
{
|
|
if(n < 0)
|
|
n = rowidx;
|
|
|
|
if(vitems[n].hidden)
|
|
return *this;
|
|
vitems[n].hidden = true;
|
|
vitems[n].tsize = vitems[n].size;
|
|
vitems[n].size = 0;
|
|
if(refresh)
|
|
Repaint(false, true);
|
|
|
|
return *this;
|
|
}
|
|
|
|
GridCtrl& GridCtrl::ShowColumn(int n, bool refresh)
|
|
{
|
|
if(!hitems[n].hidden)
|
|
return *this;
|
|
hitems[n].hidden = false;
|
|
hitems[n].size = hitems[n].tsize;
|
|
if(refresh)
|
|
Repaint(true, false);
|
|
|
|
return *this;
|
|
}
|
|
|
|
GridCtrl& GridCtrl::HideColumn(int n, bool refresh)
|
|
{
|
|
if(hitems[n].hidden)
|
|
return *this;
|
|
hitems[n].hidden = true;
|
|
hitems[n].tsize = hitems[n].size;
|
|
if(refresh)
|
|
Repaint(true, false);
|
|
|
|
return *this;
|
|
}
|
|
|
|
void GridCtrl::HideRows(bool repaint)
|
|
{
|
|
bool change = false;
|
|
for(int i = fixed_rows; i < total_rows; i++)
|
|
if(!vitems[i].hidden)
|
|
{
|
|
change = true;
|
|
vitems[i].hidden = true;
|
|
vitems[i].tsize = vitems[i].size;
|
|
vitems[i].size = 0;
|
|
}
|
|
if(change || repaint)
|
|
Repaint(false, true);
|
|
}
|
|
|
|
void GridCtrl::ShowRows(bool repaint)
|
|
{
|
|
bool change = false;
|
|
for(int i = fixed_rows; i < total_rows; i++)
|
|
if(vitems[i].hidden)
|
|
{
|
|
change = true;
|
|
vitems[i].hidden = false;
|
|
vitems[i].size = vitems[i].tsize;
|
|
}
|
|
if(change || repaint)
|
|
Repaint(false, true, UC_SCROLL);
|
|
}
|
|
|
|
void GridCtrl::MenuHideColumn(int n)
|
|
{
|
|
if(hitems[n].hidden)
|
|
ShowColumn(n);
|
|
else
|
|
HideColumn(n);
|
|
}
|
|
|
|
int GridCtrl::ShowMatchedRows(const WString &f)
|
|
{
|
|
if(f.IsEmpty())
|
|
{
|
|
if(search_highlight)
|
|
ClearFound();
|
|
else
|
|
ShowRows(true);
|
|
return 0;
|
|
}
|
|
|
|
if(!search_immediate && search_highlight)
|
|
{
|
|
ClearFound(true, false);
|
|
//search_string = f;
|
|
}
|
|
|
|
int first_matched_row = -1;
|
|
|
|
int s, e;
|
|
for(int i = fixed_rows; i < total_rows; i++)
|
|
{
|
|
if(!vitems[i].clickable)
|
|
continue;
|
|
|
|
int idv = vitems[i].id;
|
|
|
|
for(int j = fixed_cols; j < total_cols; j++)
|
|
{
|
|
int idh = hitems[j].id;
|
|
Item &it = items[idv][idh];
|
|
it.Found(false);
|
|
it.fs = it.fe = 0;
|
|
|
|
if(hitems[j].hidden || !hitems[j].clickable)
|
|
continue;
|
|
|
|
if(Match(f, (WString) GetStdConvertedColumn(idh, it.val), s, e))
|
|
{
|
|
first_matched_row = i;
|
|
rowfnd = i;
|
|
goto found_first_matched_row;
|
|
}
|
|
}
|
|
}
|
|
|
|
if(first_matched_row < 0)
|
|
return 0;
|
|
|
|
found_first_matched_row:
|
|
|
|
bool change = false;
|
|
|
|
int rows = 0;
|
|
for(int i = fixed_rows; i < total_rows; i++)
|
|
{
|
|
if(!vitems[i].clickable)
|
|
continue;
|
|
|
|
bool match = false;
|
|
int idv = vitems[i].id;
|
|
for(int j = fixed_cols; j < total_cols; j++)
|
|
{
|
|
int idh = hitems[j].id;
|
|
Item &it = items[idv][idh];
|
|
it.Found(false);
|
|
it.fs = it.fe = 0;
|
|
|
|
if(hitems[j].hidden || !hitems[j].clickable)
|
|
continue;
|
|
|
|
if(Match(f, (WString) GetStdConvertedColumn(idh, it.val), s, e))
|
|
{
|
|
match = true;
|
|
it.Found(search_highlight);
|
|
it.fs = s;
|
|
it.fe = e;
|
|
|
|
if(!search_highlight)
|
|
break;
|
|
}
|
|
}
|
|
|
|
if(match)
|
|
{
|
|
rows++;
|
|
if(search_hide && vitems[i].hidden)
|
|
{
|
|
vitems[i].hidden = false;
|
|
vitems[i].size = vitems[i].tsize;
|
|
change = true;
|
|
}
|
|
|
|
if(search_highlight_first)
|
|
break;
|
|
}
|
|
else if(search_hide && !vitems[i].hidden)
|
|
{
|
|
vitems[i].hidden = true;
|
|
vitems[i].tsize = vitems[i].size;
|
|
vitems[i].size = 0;
|
|
change = true;
|
|
}
|
|
vitems[i].found = match;
|
|
}
|
|
|
|
if(rows > 0)
|
|
{
|
|
if(change || search_highlight)
|
|
{
|
|
LG(0, "Repaint %d", search_hide);
|
|
Repaint(false, search_hide, 0);
|
|
}
|
|
}
|
|
else if(search_hide)
|
|
{
|
|
for(int i = fixed_rows; i < total_rows; i++)
|
|
{
|
|
vitems[i].hidden = false;
|
|
vitems[i].size = vitems[i].tsize;
|
|
}
|
|
}
|
|
|
|
if(search_move_cursor && first_matched_row >= 0)
|
|
{
|
|
SetCursor0(first_matched_row);
|
|
CenterCursor();
|
|
WhenSearchCursor();
|
|
}
|
|
|
|
LG(0, "Matched rows %d", rows);
|
|
return rows;
|
|
}
|
|
|
|
void GridCtrl::ClearFound(bool showrows, bool clear_string)
|
|
{
|
|
for(int i = 0; i < total_rows; i++)
|
|
{
|
|
vitems[i].found = false;
|
|
for(int j = 0; j < total_cols; j++)
|
|
{
|
|
items[i][j].Found(false);
|
|
items[i][j].fs = items[i][j].fe = 0;
|
|
}
|
|
}
|
|
if(showrows)
|
|
ShowRows(true);
|
|
|
|
if(clear_string)
|
|
search_string.Clear();
|
|
|
|
WhenSearchCursor();
|
|
}
|
|
|
|
bool GridCtrl::Match(const WString &f, const WString &s, int &fs, int &fe)
|
|
{
|
|
int i = 0;
|
|
|
|
int fl = f.GetLength();
|
|
int sl = s.GetLength();
|
|
|
|
if(fl > sl)
|
|
return false;
|
|
|
|
for(int j = find_offset; j < sl; j++)
|
|
{
|
|
bool match;
|
|
if(search_case)
|
|
match = f[i] == s[j];
|
|
else
|
|
match = ToUpper(f[i]) == ToUpper(s[j]);
|
|
|
|
if(match)
|
|
{
|
|
if(++i == fl)
|
|
{
|
|
fs = j + 1 - fl;
|
|
fe = j;
|
|
return true;
|
|
}
|
|
}
|
|
else
|
|
i = 0;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
void GridCtrl::DoFind()
|
|
{
|
|
UpdateCtrls(UC_CHECK_VIS | UC_HIDE | UC_CTRLS | UC_SCROLL | UC_NOFOCUS);
|
|
ShowMatchedRows((WString) ~find);
|
|
}
|
|
|
|
bool GridCtrl::WhenInsertRow0()
|
|
{
|
|
WhenInsertRow();
|
|
if(cancel_insert)
|
|
{
|
|
WhenCancelNewRow();
|
|
Remove0(curpos.y, 1, true, true, false);
|
|
cancel_insert = false;
|
|
return false;
|
|
}
|
|
return true;
|
|
}
|
|
|
|
int GridCtrl::GetMinRowSelected()
|
|
{
|
|
int i = fixed_rows;
|
|
while(i < total_rows && !vitems[i].IsSelect()) i++;
|
|
return i > total_rows - 1 ? -1 : i;
|
|
}
|
|
|
|
int GridCtrl::GetMaxRowSelected()
|
|
{
|
|
int i = total_rows - 1;
|
|
while(i >= fixed_rows && !vitems[i].IsSelect()) i--;
|
|
return i < fixed_rows ? -1 : i;
|
|
}
|
|
|
|
void GridCtrl::CloseGrid()
|
|
{
|
|
GetTopWindow()->Close();
|
|
}
|
|
|
|
void GridCtrl::UpdateVisColRow(bool col)
|
|
{
|
|
if(col)
|
|
{
|
|
firstVisCol = fixed_cols;
|
|
lastVisCol = total_cols - 1;
|
|
|
|
for(int i = fixed_cols; i < total_cols; i++)
|
|
if(!hitems[i].hidden)
|
|
{
|
|
firstVisCol = i;
|
|
break;
|
|
}
|
|
|
|
for(int i = total_cols - 1; i >= fixed_cols; i--)
|
|
if(!hitems[i].hidden)
|
|
{
|
|
lastVisCol = i;
|
|
break;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
firstVisRow = fixed_rows;
|
|
lastVisRow = total_rows - 1;
|
|
|
|
for(int i = fixed_rows; i < total_rows; i++)
|
|
if(!vitems[i].hidden)
|
|
{
|
|
firstVisRow = i;
|
|
break;
|
|
}
|
|
|
|
for(int i = total_rows - 1; i >= fixed_rows; i--)
|
|
if(!vitems[i].hidden)
|
|
{
|
|
lastVisRow = i;
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
Point GridCtrl::GetBarOffset()
|
|
{
|
|
Size bsz = bar.GetSize();
|
|
return Point(bar.GetAlign() == BarCtrl::BAR_LEFT ? bsz.cx : 0,
|
|
bar.GetAlign() == BarCtrl::BAR_TOP ? bsz.cy : 0);
|
|
}
|
|
|
|
void GridCtrl::ClearModified()
|
|
{
|
|
row_modified = 0;
|
|
for(int i = 0; i < total_cols; ++i)
|
|
items[curid.y][i].modified = false;
|
|
}
|
|
|
|
void GridCtrl::Debug(int n)
|
|
{
|
|
if(n == 0)
|
|
{
|
|
LG("---- DEBUG 0 ----------");
|
|
LG("firstVisCol %d", firstVisCol);
|
|
LG("lastVisCol %d", lastVisCol);
|
|
LG("firstVisRow %d", firstVisRow);
|
|
LG("lastVisRow %d", lastVisRow);
|
|
LG("firstCol %d", firstCol);
|
|
LG("firstRow %d", firstRow);
|
|
LG("lastCol %d", lastCol);
|
|
LG("lastRow %d", lastRow);
|
|
LG("total_cols %d", total_cols);
|
|
LG("total_rows %d", total_rows);
|
|
LG("curpos %d, %d", curpos.x, curpos.y);
|
|
LG("sbPos %d, %d", sbx.Get(), sby.Get());
|
|
LG("sbTotal %d, %d", sbx.GetTotal(), sby.GetTotal());
|
|
LG("sbPage %d, %d", sbx.GetPage(), sby.GetPage());
|
|
LG("Size %d, %d", GetSize().cx, GetSize().cy);
|
|
LG("fixed_width %d", fixed_width);
|
|
LG("fixed_height %d", fixed_height);
|
|
LG("total_width %d", total_width);
|
|
LG("total_height %d", total_height);
|
|
LG("row_modified %d", row_modified);
|
|
LG("selected_rows %d", selected_rows);
|
|
LG("selected_items %d", selected_items);
|
|
LG("---- END --------------");
|
|
}
|
|
if(n == 1)
|
|
{
|
|
LG("---- DEBUG 1 ----------");
|
|
for(int i = 0; i < total_cols; i++)
|
|
{
|
|
LG("Col %d h:%d p:%d s:%d", i, hitems[i].hidden, hitems[i].npos, hitems[i].nsize);
|
|
//LG("ismin %d ismax %d", hitems[i].ismin, hitems[i].ismax);
|
|
}
|
|
LG("---- END --------------");
|
|
}
|
|
if(n == 2)
|
|
{
|
|
LG("---- DEBUG 2 ----------");
|
|
for(int i = 0; i < total_rows; i++)
|
|
{
|
|
LG("Row %d p:%d s:%d", i, vitems[i].npos, vitems[i].nsize);
|
|
}
|
|
LG("---- END --------------");
|
|
}
|
|
if(n == 3)
|
|
{
|
|
Point p = GetCtrlPos(focused_ctrl);
|
|
LG(2, "Focused %x (%d, %d)", focused_ctrl, p.x, p.y);
|
|
}
|
|
}
|
|
|
|
void GridCtrl::Serialize(Stream &s)
|
|
{
|
|
if(s.IsStoring())
|
|
{
|
|
s % total_cols;
|
|
for(int i = 1; i < total_cols; i++)
|
|
{
|
|
int id = hitems[i].id;
|
|
//s % String(aliases[id]);
|
|
s % id;
|
|
s % hitems[id];
|
|
}
|
|
}
|
|
else
|
|
{
|
|
int tc;
|
|
s % tc;
|
|
for(int i = 1; i < tc; i++)
|
|
{
|
|
//String alias;
|
|
//s % alias;
|
|
//int n = aliases.Find(alias);
|
|
int id;
|
|
s % id;
|
|
//if(id >= 0 && id < total_cols)
|
|
s % hitems[id];
|
|
}
|
|
}
|
|
}
|
|
|
|
void GridCtrl::JoinCells(int left, int top, int right, int bottom, bool relative)
|
|
{
|
|
int fc = relative ? fixed_cols : 0;
|
|
int fr = relative ? fixed_rows : 0;
|
|
|
|
left += fc;
|
|
top += fr;
|
|
right += fc;
|
|
bottom += fr;
|
|
|
|
int idx = hitems[left].id;
|
|
int idy = vitems[top].id;
|
|
int cx = right - left;
|
|
int cy = bottom - top;
|
|
|
|
for(int i = top; i <= bottom; ++i)
|
|
{
|
|
vitems[i].join++;
|
|
|
|
for(int j = left; j <= right; ++j)
|
|
{
|
|
Item &it = items[i][j];
|
|
|
|
it.idx = idx;
|
|
it.idy = idy;
|
|
it.cx = cx;
|
|
it.cy = cy;
|
|
it.group = join_group;
|
|
it.isjoined = true;
|
|
|
|
if(i == top)
|
|
hitems[j].join++;
|
|
}
|
|
}
|
|
|
|
JoinRect& jr = joins.Add();
|
|
jr.r.Set(left, top, right, bottom);
|
|
jr.group = join_group;
|
|
jr.idx = idx;
|
|
jr.idy = idy;
|
|
|
|
join_group++;
|
|
}
|
|
|
|
void GridCtrl::JoinFixedCells(int left, int top, int right, int bottom)
|
|
{
|
|
JoinCells(left, top, right, bottom, false);
|
|
}
|
|
|
|
void GridCtrl::JoinRow(int n, int left, int right)
|
|
{
|
|
if(n < 0)
|
|
n = rowidx;
|
|
|
|
if(left < 0)
|
|
left = fixed_cols;
|
|
else
|
|
left += fixed_cols;
|
|
|
|
if(right < 0)
|
|
right = total_cols - fixed_cols;
|
|
else
|
|
right = total_cols - fixed_cols - right;
|
|
|
|
JoinCells(left, n, right, n, false);
|
|
}
|
|
|
|
void GridCtrl::JoinRow(int left, int right)
|
|
{
|
|
JoinRow(-1, left, right);
|
|
}
|
|
|
|
/*
|
|
|
|
jr.r.top = 2;
|
|
jr.r.bottom = 6
|
|
|
|
2 -----------------------
|
|
3 -----------------------
|
|
+++++++++++++++++++++++ //insert at 4
|
|
+++++++++++++++++++++++
|
|
4 -----------------------
|
|
5 -----------------------
|
|
6 -----------------------
|
|
|
|
*/
|
|
|
|
void GridCtrl::UpdateJoins(int row, int col, int cnt)
|
|
{
|
|
if(row >= 0)
|
|
{
|
|
for(int i = 0; i < joins.GetCount(); i++)
|
|
{
|
|
JoinRect& jr = joins[i];
|
|
|
|
int top = jr.r.top;
|
|
int bottom = jr.r.bottom;
|
|
|
|
if(row > top && row < bottom) // new row is inside cell rect, idy doesn't change but cy does
|
|
{
|
|
for(int r = jr.r.top; r <= jr.r.bottom; r++)
|
|
{
|
|
for(int c = jr.r.left; c <= jr.r.right; c++)
|
|
{
|
|
if(r < row || r > row)
|
|
{
|
|
Item& it = GetItem(r, c);
|
|
it.cy += cnt;
|
|
}
|
|
else if(r == row)
|
|
{
|
|
for(int n = 0; n < cnt; n++)
|
|
{
|
|
Item& it = GetItem(r + n, c);
|
|
it.group = jr.group;
|
|
it.idx = jr.idx;
|
|
it.idy = jr.idy;
|
|
it.cx = jr.r.Width();
|
|
it.cy = jr.r.Height() + cnt;
|
|
it.isjoined = true;
|
|
|
|
if(c == jr.r.left)
|
|
vitems[r + n].join++;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
jr.r.bottom += cnt;
|
|
}
|
|
else if(row <= top) // idy changes
|
|
{
|
|
jr.idy += cnt;
|
|
|
|
for(int r = jr.r.top; r <= jr.r.bottom; r++)
|
|
{
|
|
for(int c = jr.r.left; c <= jr.r.right; c++)
|
|
{
|
|
Item& it = GetItem(r + cnt, c);
|
|
it.idy = jr.idy;
|
|
}
|
|
}
|
|
|
|
jr.r.top += cnt;
|
|
jr.r.bottom += cnt;
|
|
}
|
|
}
|
|
}
|
|
|
|
if(col >= 0)
|
|
{
|
|
for(int i = 0; i < joins.GetCount(); i++)
|
|
{
|
|
JoinRect& jr = joins[i];
|
|
|
|
int left = jr.r.left;
|
|
int right = jr.r.right;
|
|
|
|
if(col > left && col < right)
|
|
{
|
|
for(int c = jr.r.left; c <= jr.r.right; c++)
|
|
{
|
|
for(int r = jr.r.top; r <= jr.r.bottom; r++)
|
|
{
|
|
if(c < col || c > col)
|
|
{
|
|
Item& it = GetItem(r, c);
|
|
it.cx += cnt;
|
|
}
|
|
else if(c == col)
|
|
{
|
|
for(int n = 0; n < cnt; n++)
|
|
{
|
|
Item& it = GetItem(r, c + n);
|
|
it.group = jr.group;
|
|
it.idx = jr.idx;
|
|
it.idy = jr.idy;
|
|
it.cx = jr.r.Width() + cnt;
|
|
it.cy = jr.r.Height();
|
|
it.isjoined = true;
|
|
|
|
if(r == jr.r.top)
|
|
hitems[c + n].join++;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
jr.r.right += cnt;
|
|
}
|
|
else if(col <= left)
|
|
{
|
|
jr.idx += cnt;
|
|
|
|
for(int c = jr.r.left; c <= jr.r.right; c++)
|
|
{
|
|
for(int r = jr.r.top; r <= jr.r.bottom; r++)
|
|
{
|
|
Item& it = GetItem(r, c + cnt);
|
|
it.idx = jr.idx;
|
|
}
|
|
}
|
|
|
|
jr.r.left += cnt;
|
|
jr.r.right += cnt;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
/*----------------------------------------------------------------------------------------*/
|
|
|
|
void GridPopUp::Paint(Draw &w)
|
|
{
|
|
Size sz = GetSize();
|
|
if(gd->row < 0 || gd->col < 0)
|
|
gd->PaintFixed(w, false, false, 1, 1, sz.cx - 2, sz.cy - 2, val, style | GD::WRAP | GD::VCENTER, fnt);
|
|
else
|
|
gd->Paint(w, 1, 1, sz.cx - 2, sz.cy - 2, val, style | GD::WRAP | GD::VCENTER, fg, bg, fnt);
|
|
DrawBorder(w, sz, BlackBorder);
|
|
}
|
|
|
|
Point GridPopUp::Offset(Point p)
|
|
{
|
|
return p + GetScreenView().TopLeft() - ctrl->GetScreenView().TopLeft();
|
|
}
|
|
|
|
void GridPopUp::LeftDown(Point p, dword flags)
|
|
{
|
|
ctrl->LeftDown(Offset(p), flags);
|
|
}
|
|
|
|
void GridPopUp::LeftDrag(Point p, dword flags)
|
|
{
|
|
Close();
|
|
ctrl->LeftDrag(Offset(p), flags);
|
|
}
|
|
|
|
void GridPopUp::LeftDouble(Point p, dword flags)
|
|
{
|
|
ctrl->LeftDouble(Offset(p), flags);
|
|
}
|
|
|
|
void GridPopUp::RightDown(Point p, dword flags)
|
|
{
|
|
ctrl->RightDown(Offset(p), flags);
|
|
}
|
|
|
|
void GridPopUp::LeftUp(Point p, dword flags)
|
|
{
|
|
ctrl->LeftUp(Offset(p), flags);
|
|
}
|
|
|
|
void GridPopUp::MouseWheel(Point p, int zdelta, dword flags)
|
|
{
|
|
ctrl->MouseWheel(Offset(p), zdelta, flags);
|
|
}
|
|
|
|
void GridPopUp::MouseLeave()
|
|
{
|
|
ctrl->MouseLeave();
|
|
Close();
|
|
}
|
|
|
|
void GridPopUp::MouseEnter(Point p, dword flags)
|
|
{
|
|
ctrl->MouseEnter(Offset(p), flags);
|
|
}
|
|
|
|
void GridPopUp::MouseMove(Point p, dword flags)
|
|
{
|
|
ctrl->MouseMove(Offset(p), flags);
|
|
}
|
|
|
|
Image GridPopUp::CursorImage(Point p, dword flags)
|
|
{
|
|
return ctrl->CursorImage(Offset(p), flags);
|
|
}
|
|
|
|
void GridPopUp::LostFocus()
|
|
{
|
|
Close();
|
|
}
|
|
|
|
void GridPopUp::PopUp(Ctrl *owner, int x, int y, int width, int height)
|
|
{
|
|
Rect r(x, y, x + width, y + height);
|
|
if(r != GetRect())
|
|
SetRect(r);
|
|
|
|
if(!open)
|
|
{
|
|
ctrl = owner;
|
|
open = true;
|
|
Ctrl::PopUp(owner, true, false, GUI_DropShadows());
|
|
SetAlpha(230);
|
|
}
|
|
}
|
|
|
|
void GridPopUp::Close()
|
|
{
|
|
open = false;
|
|
Ctrl::Close();
|
|
}
|
|
|
|
void GridCtrl::UpdateHighlighting(int mode, Point p)
|
|
{
|
|
if(resize_paint_mode < 1 && (resizeCol || resizeRow))
|
|
return;
|
|
|
|
bool refresh = false;
|
|
|
|
if(mode == GS_UP)
|
|
{
|
|
if((p.x < 0 || p.x > GetSize().cx - 1) && hcol >= 0 && hitems[hcol].IsHighlight())
|
|
{
|
|
hitems[hcol].Highlight(0);
|
|
refresh = true;
|
|
hcol = -1;
|
|
}
|
|
}
|
|
else if(mode == GS_MOVE)
|
|
{
|
|
int col = GetMouseCol(p, true, true, false);
|
|
int row = hrow = GetMouseRow(p, false, true, true);
|
|
|
|
if(hcol >= 0 && (hcol != col || row != 0) && hitems[hcol].IsHighlight())
|
|
{
|
|
hitems[hcol].Highlight(0);
|
|
refresh = true;
|
|
}
|
|
if(col >= 0 && row == 0 && !hitems[col].IsHighlight())
|
|
{
|
|
hitems[col].Highlight(1);
|
|
hcol = col;
|
|
refresh = true;
|
|
}
|
|
}
|
|
else if(mode == GS_POPUP)
|
|
{
|
|
if(hcol >= 0)
|
|
hitems[hcol].Highlight(0);
|
|
refresh = true;
|
|
hcol = moveCol;
|
|
}
|
|
else if(mode == GS_BORDER)
|
|
{
|
|
if(hcol >= 0 && hitems[hcol].IsHighlight())
|
|
{
|
|
hitems[hcol].Highlight(0);
|
|
refresh = true;
|
|
}
|
|
}
|
|
if(refresh)
|
|
RefreshRow(0, 0, 1);
|
|
}
|
|
|
|
String GridCtrl::GetColumnWidths()
|
|
{
|
|
String s;
|
|
for(int i = fixed_cols; i < total_cols; i++)
|
|
{
|
|
s += AsString(hitems[i].nsize);
|
|
if(i < total_cols - 1)
|
|
s += " ";
|
|
}
|
|
return s;
|
|
}
|
|
|
|
void GridCtrl::ColumnWidths(const char* s)
|
|
{
|
|
Vector<String> w = UPP::Split(s, ' ');
|
|
for(int i = 0; i < min(w.GetCount(), GetColumnCount()); i++)
|
|
hitems[i + fixed_cols].Width(atoi(w[i]));
|
|
}
|
|
|
|
void GridCtrl::SetDisplay(int r, int c, GridDisplay& gd)
|
|
{
|
|
GetItem(r + fixed_rows, c + fixed_cols).SetDisplay(gd);
|
|
}
|
|
|
|
#ifdef flagGRIDSQL
|
|
void GridCtrl::FieldLayout(FieldOperator& f)
|
|
{
|
|
for(int i = 1; i < total_cols; i++)
|
|
{
|
|
if(hitems[i].hidden)
|
|
continue;
|
|
int id = hitems[i].id;
|
|
const Id& key = aliases.GetKey(id);
|
|
f(key, items[vitems[rowidx].id][id].val);
|
|
}
|
|
}
|
|
|
|
SqlSet GridCtrl::GetColumnList(bool skip_hidden) const
|
|
{
|
|
SqlSet s;
|
|
for(int i = 1; i < total_cols; i++)
|
|
{
|
|
if(skip_hidden && hitems[i].hidden)
|
|
continue;
|
|
int id = hitems[i].id;
|
|
s.Cat(SqlId(aliases.GetKey(id)));
|
|
}
|
|
return s;
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
/*----------------------------------------------------------------------------------------*/
|
|
GridFind::GridFind()
|
|
{
|
|
MultiButton::SubButton& btn = button.AddButton().Main();
|
|
btn.WhenPush = THISBACK(Push);
|
|
btn.SetMonoImage(CtrlImg::smallright());
|
|
|
|
button.SetStyle(button.StyleFrame());
|
|
button.NoDisplay();
|
|
button.AddTo(*this);
|
|
}
|
|
|
|
bool GridFind::Key(dword key, int count)
|
|
{
|
|
if(key == K_ENTER && WhenEnter)
|
|
{
|
|
WhenEnter();
|
|
return true;
|
|
}
|
|
|
|
return EditString::Key(key, count);
|
|
}
|
|
|
|
Size GridFind::GetMinSize() const
|
|
{
|
|
return button.GetMinSize();
|
|
}
|
|
|
|
void GridFind::Push()
|
|
{
|
|
MenuBar::Execute(WhenBar, GetScreenRect().TopRight());
|
|
}
|
|
|
|
/*----------------------------------------------------------------------------------------*/
|
|
void GridPopUpHeader::Paint(Draw &w)
|
|
{
|
|
Size sz = GetSize();
|
|
dword style = chameleon ? GD::CHAMELEON : 0;
|
|
Font stdfont(StdFont());
|
|
display->PaintFixed(w, 1, 1, 0, 0, sz.cx, sz.cy,
|
|
val, style, stdfont, false, true,
|
|
sortmode, sortcol, sortcnt, true);
|
|
}
|
|
|
|
void GridPopUpHeader::PopUp(Ctrl *owner, int x, int y, int width, int height)
|
|
{
|
|
SetRect(Rect(x, y, x + width, y + height));
|
|
if(open)
|
|
return;
|
|
Ctrl::PopUp(owner, true, true, GUI_DropShadows());
|
|
SetAlpha(200);
|
|
open = true;
|
|
}
|
|
|
|
void GridPopUpHeader::Close()
|
|
{
|
|
open = false;
|
|
Ctrl::Close();
|
|
}
|
|
|
|
/*----------------------------------------------------------------------------------------*/
|
|
GridButton::GridButton()
|
|
{
|
|
n = 0;
|
|
img = 0;
|
|
}
|
|
|
|
void GridButton::Paint(Draw& w)
|
|
{
|
|
static Image (*vimg[])() = {
|
|
&GridImg::Btn0N, &GridImg::Btn0H, &GridImg::Btn0P,
|
|
&GridImg::Btn1N, &GridImg::Btn1H, &GridImg::Btn1P
|
|
};
|
|
|
|
Size sz = GetSize();
|
|
w.DrawImage(0, 0, sz.cx, sz.cy, vimg[img + n * 3]);
|
|
}
|
|
|
|
void GridButton::LeftDown(Point p, dword flags)
|
|
{
|
|
img = 2;
|
|
Refresh();
|
|
}
|
|
|
|
void GridButton::LeftUp(Point p, dword flags)
|
|
{
|
|
img = 1;
|
|
Refresh();
|
|
Action();
|
|
}
|
|
|
|
void GridButton::MouseEnter(Point p, dword flags)
|
|
{
|
|
img = flags & K_MOUSELEFT ? 2 : 1;
|
|
Refresh();
|
|
}
|
|
|
|
void GridButton::MouseLeave()
|
|
{
|
|
img = 0;
|
|
Refresh();
|
|
}
|
|
|
|
void GridButton::State(int reason)
|
|
{
|
|
if(reason == CLOSE)
|
|
img = 0;
|
|
}
|
|
|
|
Size GridButton::GetStdSize() const
|
|
{
|
|
return n > 0 ? Size(14, 11) : Size(17, 17); //FIXME
|
|
}
|
|
|
|
void GridButton::SetButton(int b)
|
|
{
|
|
n = b;
|
|
}
|
|
|
|
GridResizePanel::GridResizePanel()
|
|
{
|
|
int h = max(16, Draw::GetStdFontCy()) + 5;
|
|
Height(h);
|
|
Size csz = close.GetStdSize();
|
|
Add(close.LeftPos(1, csz.cx).TopPos((h - csz.cy) / 2, csz.cy));
|
|
minsize.Clear();
|
|
close.WhenAction = Proxy(WhenClose);
|
|
}
|
|
|
|
void GridResizePanel::Paint(Draw& w)
|
|
{
|
|
Size sz = GetSize();
|
|
w.DrawRect(sz, SColorFace);
|
|
Size isz = CtrlsImg::SizeGrip().GetSize();
|
|
w.DrawImage(sz.cx - isz.cx, sz.cy - isz.cy, CtrlsImg::SizeGrip());
|
|
}
|
|
|
|
bool GridResizePanel::MouseOnGrip(const Point &p)
|
|
{
|
|
Size isz = CtrlsImg::SizeGrip().GetSize();
|
|
Size sz = GetSize();
|
|
return (p.x > sz.cx - isz.cx && p.y > sz.cy - isz.cy);
|
|
}
|
|
|
|
void GridResizePanel::SetMinSize(Size sz)
|
|
{
|
|
minsize = sz;
|
|
}
|
|
|
|
Image GridResizePanel::CursorImage(Point p, dword flags)
|
|
{
|
|
if(MouseOnGrip(p) || HasCapture())
|
|
return Image::SizeBottomRight();
|
|
return Image::Arrow();
|
|
}
|
|
|
|
void GridResizePanel::LeftDown(Point p, dword flags)
|
|
{
|
|
if(MouseOnGrip(p))
|
|
{
|
|
r = GetParent()->GetScreenRect();
|
|
pos = GetMousePos();
|
|
SetCapture();
|
|
}
|
|
}
|
|
|
|
void GridResizePanel::LeftUp(Point p, dword flags)
|
|
{
|
|
ReleaseCapture();
|
|
}
|
|
|
|
void GridResizePanel::MouseMove(Point p, dword flags)
|
|
{
|
|
if(HasCapture())
|
|
{
|
|
Point curpos = GetMousePos();
|
|
Point diff = curpos - pos;
|
|
Rect r(this->r);
|
|
r.right += diff.x;
|
|
r.bottom += diff.y;
|
|
bool setmin = false;
|
|
|
|
if(!minsize.IsEmpty())
|
|
{
|
|
if(r.right < r.left + minsize.cx)
|
|
{
|
|
r.right = r.left + minsize.cx;
|
|
setmin = true;
|
|
}
|
|
if(r.bottom < r.top + minsize.cy)
|
|
{
|
|
r.bottom = r.top + minsize.cy;
|
|
setmin = true;
|
|
}
|
|
}
|
|
if(this->r != r || setmin)
|
|
{
|
|
GetParent()->SetRect(r);
|
|
GetParent()->Sync();
|
|
}
|
|
}
|
|
}
|
|
|
|
/*----------------------------------------------------------------------------------------*/
|
|
|
|
template<> void Xmlize(XmlIO& xml, GridCtrl& g) {
|
|
Vector< Vector<Value> > v;
|
|
|
|
if(xml.IsLoading()) {
|
|
xml("data", v);
|
|
g.SetValues(v);
|
|
} else {
|
|
v = g.GetValues();
|
|
xml("data", v);
|
|
}
|
|
}
|
|
|
|
template<> void Jsonize(JsonIO& json, GridCtrl& g) {
|
|
Vector< Vector<Value> > v;
|
|
|
|
if(json.IsLoading()) {
|
|
json("data", v);
|
|
g.SetValues(v);
|
|
} else {
|
|
v = g.GetValues();
|
|
json("data", v);
|
|
}
|
|
}
|
|
|
|
/* after this assist++ sees nothing */
|
|
//$-
|
|
#define E__Addv0(I) Set(q, I - 1, p##I)
|
|
#define E__AddF0(I) \
|
|
GridCtrl& GridCtrl::Add(__List##I(E__Value)) { \
|
|
int q = GetCount(); \
|
|
__List##I(E__Addv0); \
|
|
return *this; \
|
|
}
|
|
__Expand(E__AddF0)
|
|
|
|
#define E__Addv1(I) Set(q, I - 1, p##I)
|
|
#define E__AddF1(I) \
|
|
GridCtrl::ItemRect& GridCtrl::AddRow(__List##I(E__Value)) { \
|
|
int q = GetCount(); \
|
|
ItemRect& ir = AddRow(); \
|
|
__List##I(E__Addv1); \
|
|
return ir; \
|
|
}
|
|
__Expand(E__AddF1)
|
|
|
|
}
|