From e234244eadc94b7988306a46b27ad55d12fc5330 Mon Sep 17 00:00:00 2001 From: Pietro Gagliardi Date: Sun, 8 Jun 2014 01:13:16 -0400 Subject: [PATCH] Moved the Listbox preferred size TODO to future plans because this was addressed earlier when trying to do horizontal scrolling; see the experiments/ folder for how poorly that turned out. Preferred size will need the same code. --- futureplans.md | 1 + todo.md | 1 - 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/futureplans.md b/futureplans.md index 3c452dd..3d48a84 100644 --- a/futureplans.md +++ b/futureplans.md @@ -36,6 +36,7 @@ general list: - Quit should pulse AppQuit - will probably want to bring back Event() as NewEvent() should that facility be necesary for menus, etc. - figure out why at least the 64-bit build hates being run under Application Verifier +- make sure the preferred size of a Listbox is the minimum size needed to display everything on all platforms (capped at the screen height, of course?) issues of policy: - LineEdit heights on Windows seem too big; either that or LineEdit, Button, and Label text is not vertically centered properly diff --git a/todo.md b/todo.md index a35ef73..b05886c 100644 --- a/todo.md +++ b/todo.md @@ -21,7 +21,6 @@ UNIX: ALL PLATFORMS: - make sure MouseEvent's documentation has dragging described correctly (both Windows and GTK+ do) -- make sure the preferred size of a Listbox is the minimum size needed to display everything on all platforms (capped at the screen height, of course?) - make sure the image drawn on an Area looks correct on all platforms (is not cropped incorrectly or blurred) - make all widths and heights parameters in constructors in the same place (or drop the ones in Window entirely?) - Message boxes that belong to agiven parent are still application-modal on all platforms except Mac OS X because the whole system waits... we'll need to use a channel for this, I guess :S