Warning: session_start(): open(/var/lib/php/sessions/sess_63ge2qrclui7rf1e3tg5pfi9v4, O_RDWR) failed: No space left on device (28) in /var/www/tb-usercake/models/config.php on line 51
Warning: session_start(): Failed to read session data: files (path: /var/lib/php/sessions) in /var/www/tb-usercake/models/config.php on line 51
!752
concepts.
concept GrabbedImage {
long lastScreenshotTime;
Rect lastRect;
BWImage image;
S md5;
int count;
}
p {
loadConceptsFrom("#1005951");
new L data;
for (GrabbedImage gi : sortByFieldDesc(list(GrabbedImage), "count"))
data.add(ll(gi.count, gi.md5, gi.image.getBufferedImage(), str(gi.lastRect)));
final JTable table = showTableWithImages("Auto-Shot Stuff", splitAtSlash("Count/MD5/Image/Last position"), data);
table.setRowHeight(25);
tablePopupMenu(table, voidfunc(JPopupMenu menu, final int row) {
addMenuItem(menu, "Mark on screen", r-thread {
Rect r;
pointArrowsToArea(r = parseRect(getTableLine(table, row).get(3)));
print("Marking: " + r);
});
});
gcAndPrintMemoryInfo();
}