Merge c89b7a606e
into fea45b2d5b
This commit is contained in:
commit
25fb67d4f2
|
@ -16,6 +16,8 @@ struct uiTable {
|
||||||
uiprivScrollViewData *d;
|
uiprivScrollViewData *d;
|
||||||
int backgroundColumn;
|
int backgroundColumn;
|
||||||
uiTableModel *m;
|
uiTableModel *m;
|
||||||
|
void (*onRowDoubleClicked)(uiTable *, int, void *);
|
||||||
|
void *onRowDoubleClickedData;
|
||||||
};
|
};
|
||||||
|
|
||||||
// tablecolumn.m
|
// tablecolumn.m
|
||||||
|
|
|
@ -16,6 +16,7 @@
|
||||||
uiTableModel *uiprivM;
|
uiTableModel *uiprivM;
|
||||||
}
|
}
|
||||||
- (id)initWithFrame:(NSRect)r uiprivT:(uiTable *)t uiprivM:(uiTableModel *)m;
|
- (id)initWithFrame:(NSRect)r uiprivT:(uiTable *)t uiprivM:(uiTableModel *)m;
|
||||||
|
- (void)onDoubleAction:(id)sender;
|
||||||
@end
|
@end
|
||||||
|
|
||||||
@implementation uiprivTableView
|
@implementation uiprivTableView
|
||||||
|
@ -30,6 +31,17 @@
|
||||||
return self;
|
return self;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
- (void)onDoubleAction:(id)sender
|
||||||
|
{
|
||||||
|
uiTable *t = self->uiprivT;
|
||||||
|
NSInteger row = [self clickedRow];
|
||||||
|
|
||||||
|
if (row < 0)
|
||||||
|
return;
|
||||||
|
|
||||||
|
(*(t->onRowDoubleClicked))(t, row, t->onRowDoubleClickedData);
|
||||||
|
}
|
||||||
|
|
||||||
// TODO is this correct for overflow scrolling?
|
// TODO is this correct for overflow scrolling?
|
||||||
static void setBackgroundColor(uiprivTableView *t, NSTableRowView *rv, NSInteger row)
|
static void setBackgroundColor(uiprivTableView *t, NSTableRowView *rv, NSInteger row)
|
||||||
{
|
{
|
||||||
|
@ -170,6 +182,17 @@ static void uiTableDestroy(uiControl *c)
|
||||||
uiFreeControl(uiControl(t));
|
uiFreeControl(uiControl(t));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static void defaultOnRowDoubleClicked(uiTable *table, int row, void *data)
|
||||||
|
{
|
||||||
|
// do nothing
|
||||||
|
}
|
||||||
|
|
||||||
|
void uiTableOnRowDoubleClicked(uiTable *t, void (*f)(uiTable *, int, void *), void *data)
|
||||||
|
{
|
||||||
|
t->onRowDoubleClicked = f;
|
||||||
|
t->onRowDoubleClickedData = data;
|
||||||
|
}
|
||||||
|
|
||||||
uiTable *uiNewTable(uiTableParams *p)
|
uiTable *uiNewTable(uiTableParams *p)
|
||||||
{
|
{
|
||||||
uiTable *t;
|
uiTable *t;
|
||||||
|
@ -198,6 +221,9 @@ uiTable *uiNewTable(uiTableParams *p)
|
||||||
[t->tv setAllowsTypeSelect:YES];
|
[t->tv setAllowsTypeSelect:YES];
|
||||||
// TODO floatsGroupRows — do we even allow group rows?
|
// TODO floatsGroupRows — do we even allow group rows?
|
||||||
|
|
||||||
|
uiTableOnRowDoubleClicked(t, defaultOnRowDoubleClicked, NULL);
|
||||||
|
[t->tv setDoubleAction: @selector(onDoubleAction:)];
|
||||||
|
|
||||||
memset(&sp, 0, sizeof (uiprivScrollViewCreateParams));
|
memset(&sp, 0, sizeof (uiprivScrollViewCreateParams));
|
||||||
sp.DocumentView = t->tv;
|
sp.DocumentView = t->tv;
|
||||||
// this is what Interface Builder sets it to
|
// this is what Interface Builder sets it to
|
||||||
|
|
|
@ -98,6 +98,11 @@ static void modelSetCellValue(uiTableModelHandler *mh, uiTableModel *m, int row,
|
||||||
checkStates[row] = uiTableValueInt(val);
|
checkStates[row] = uiTableValueInt(val);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static void onRowDoubleClicked(uiTable *table, int row, void *data)
|
||||||
|
{
|
||||||
|
printf("Double clicked row %d\n", row);
|
||||||
|
}
|
||||||
|
|
||||||
static uiTableModel *m;
|
static uiTableModel *m;
|
||||||
|
|
||||||
uiBox *makePage16(void)
|
uiBox *makePage16(void)
|
||||||
|
@ -152,6 +157,8 @@ uiBox *makePage16(void)
|
||||||
uiTableAppendProgressBarColumn(t, "Progress Bar",
|
uiTableAppendProgressBarColumn(t, "Progress Bar",
|
||||||
8);
|
8);
|
||||||
|
|
||||||
|
uiTableOnRowDoubleClicked(t, onRowDoubleClicked, NULL);
|
||||||
|
|
||||||
return page16;
|
return page16;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
6
ui.h
6
ui.h
|
@ -1455,6 +1455,12 @@ _UI_EXTERN void uiTableAppendButtonColumn(uiTable *t,
|
||||||
int buttonModelColumn,
|
int buttonModelColumn,
|
||||||
int buttonClickableModelColumn);
|
int buttonClickableModelColumn);
|
||||||
|
|
||||||
|
// uiTableOnRowDoubleClicked sets a callback to be called when the user
|
||||||
|
// double clicks a table row.
|
||||||
|
_UI_EXTERN void uiTableOnRowDoubleClicked(uiTable *t,
|
||||||
|
void (*f)(uiTable *t, int row, void *data),
|
||||||
|
void *data);
|
||||||
|
|
||||||
// uiNewTable() creates a new uiTable with the specified parameters.
|
// uiNewTable() creates a new uiTable with the specified parameters.
|
||||||
_UI_EXTERN uiTable *uiNewTable(uiTableParams *params);
|
_UI_EXTERN uiTable *uiNewTable(uiTableParams *params);
|
||||||
|
|
||||||
|
|
24
unix/table.c
24
unix/table.c
|
@ -18,6 +18,8 @@ struct uiTable {
|
||||||
// TODO document this properly
|
// TODO document this properly
|
||||||
GHashTable *indeterminatePositions;
|
GHashTable *indeterminatePositions;
|
||||||
guint indeterminateTimer;
|
guint indeterminateTimer;
|
||||||
|
void (*onRowDoubleClicked)(uiTable *, int, void *);
|
||||||
|
void *onRowDoubleClickedData;
|
||||||
};
|
};
|
||||||
|
|
||||||
// use the same size as GtkFileChooserWidget's treeview
|
// use the same size as GtkFileChooserWidget's treeview
|
||||||
|
@ -494,6 +496,25 @@ static void uiTableDestroy(uiControl *c)
|
||||||
uiFreeControl(uiControl(t));
|
uiFreeControl(uiControl(t));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static void onRowDoubleClicked(GtkTreeView *tv, GtkTreePath *path, GtkTreeViewColumn *col, gpointer data)
|
||||||
|
{
|
||||||
|
uiTable *t = uiTable(data);
|
||||||
|
gint row = gtk_tree_path_get_indices(path)[0];
|
||||||
|
|
||||||
|
(*(t->onRowDoubleClicked))(t, row, t->onRowDoubleClickedData);
|
||||||
|
}
|
||||||
|
|
||||||
|
static void defaultOnRowDoubleClicked(uiTable *table, int row, void *data)
|
||||||
|
{
|
||||||
|
// do nothing
|
||||||
|
}
|
||||||
|
|
||||||
|
void uiTableOnRowDoubleClicked(uiTable *t, void (*f)(uiTable *, int, void *), void *data)
|
||||||
|
{
|
||||||
|
t->onRowDoubleClicked = f;
|
||||||
|
t->onRowDoubleClickedData = data;
|
||||||
|
}
|
||||||
|
|
||||||
uiTable *uiNewTable(uiTableParams *p)
|
uiTable *uiNewTable(uiTableParams *p)
|
||||||
{
|
{
|
||||||
uiTable *t;
|
uiTable *t;
|
||||||
|
@ -511,7 +532,10 @@ uiTable *uiNewTable(uiTableParams *p)
|
||||||
|
|
||||||
t->treeWidget = gtk_tree_view_new_with_model(GTK_TREE_MODEL(t->model));
|
t->treeWidget = gtk_tree_view_new_with_model(GTK_TREE_MODEL(t->model));
|
||||||
t->tv = GTK_TREE_VIEW(t->treeWidget);
|
t->tv = GTK_TREE_VIEW(t->treeWidget);
|
||||||
|
|
||||||
// TODO set up t->tv
|
// TODO set up t->tv
|
||||||
|
uiTableOnRowDoubleClicked(t, defaultOnRowDoubleClicked, NULL);
|
||||||
|
g_signal_connect(t->tv, "row-activated", G_CALLBACK(onRowDoubleClicked), t);
|
||||||
|
|
||||||
gtk_container_add(t->scontainer, t->treeWidget);
|
gtk_container_add(t->scontainer, t->treeWidget);
|
||||||
// and make the tree view visible; only the scrolled window's visibility is controlled by libui
|
// and make the tree view visible; only the scrolled window's visibility is controlled by libui
|
||||||
|
|
|
@ -79,6 +79,17 @@ void uiTableModelRowDeleted(uiTableModel *m, int oldIndex)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static void defaultOnRowDoubleClicked(uiTable *table, int row, void *data)
|
||||||
|
{
|
||||||
|
// do nothing
|
||||||
|
}
|
||||||
|
|
||||||
|
void uiTableOnRowDoubleClicked(uiTable *t, void (*f)(uiTable *, int, void *), void *data)
|
||||||
|
{
|
||||||
|
t->onRowDoubleClicked = f;
|
||||||
|
t->onRowDoubleClickedData = data;
|
||||||
|
}
|
||||||
|
|
||||||
uiTableModelHandler *uiprivTableModelHandler(uiTableModel *m)
|
uiTableModelHandler *uiprivTableModelHandler(uiTableModel *m)
|
||||||
{
|
{
|
||||||
return m->mh;
|
return m->mh;
|
||||||
|
@ -278,6 +289,15 @@ static BOOL onWM_NOTIFY(uiControl *c, HWND hwnd, NMHDR *nmhdr, LRESULT *lResult)
|
||||||
}
|
}
|
||||||
return TRUE;
|
return TRUE;
|
||||||
#endif
|
#endif
|
||||||
|
case NM_DBLCLK:
|
||||||
|
{
|
||||||
|
LVHITTESTINFO ht = {};
|
||||||
|
ht.pt = ((NMITEMACTIVATE *)nmhdr)->ptAction;
|
||||||
|
if (ListView_SubItemHitTest(t->hwnd, &ht) == -1)
|
||||||
|
return FALSE;
|
||||||
|
(*(t->onRowDoubleClicked))(t, ht.iItem, t->onRowDoubleClickedData);
|
||||||
|
return TRUE;
|
||||||
|
}
|
||||||
case LVN_ITEMCHANGED:
|
case LVN_ITEMCHANGED:
|
||||||
{
|
{
|
||||||
NMLISTVIEW *nm = (NMLISTVIEW *) nmhdr;
|
NMLISTVIEW *nm = (NMLISTVIEW *) nmhdr;
|
||||||
|
@ -518,5 +538,7 @@ uiTable *uiNewTable(uiTableParams *p)
|
||||||
if (SetWindowSubclass(t->hwnd, tableSubProc, 0, (DWORD_PTR) t) == FALSE)
|
if (SetWindowSubclass(t->hwnd, tableSubProc, 0, (DWORD_PTR) t) == FALSE)
|
||||||
logLastError(L"SetWindowSubclass()");
|
logLastError(L"SetWindowSubclass()");
|
||||||
|
|
||||||
|
uiTableOnRowDoubleClicked(t, defaultOnRowDoubleClicked, NULL);
|
||||||
|
|
||||||
return t;
|
return t;
|
||||||
}
|
}
|
||||||
|
|
|
@ -40,6 +40,8 @@ struct uiTable {
|
||||||
HWND edit;
|
HWND edit;
|
||||||
int editedItem;
|
int editedItem;
|
||||||
int editedSubitem;
|
int editedSubitem;
|
||||||
|
void (*onRowDoubleClicked)(uiTable *, int, void *);
|
||||||
|
void *onRowDoubleClickedData;
|
||||||
};
|
};
|
||||||
extern int uiprivTableProgress(uiTable *t, int item, int subitem, int modelColumn, LONG *pos);
|
extern int uiprivTableProgress(uiTable *t, int item, int subitem, int modelColumn, LONG *pos);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue