World: r3wp
[View] discuss view related issues
older newer | first last |
Henrik 1-Jan-2006 [3655x3] | there... new 0.0.11 uploaded |
seems to work now | |
I should start working on the docs now, so people can test it out a bit... | |
Graham 1-Jan-2006 [3658] | How to set the column sizes ? |
Henrik 1-Jan-2006 [3659x3] | by making a layout manually :-) seriously I need to make that a bit easier... |
MAIN-COL sets the column that should be resizable | |
I could make a block of widths, but somehow it'll get less than managable when OUT-COLS will start to get dynamic. I'm not sure yet how to do it easily, so all columns simply have a standard width of 100 pixels. | |
Graham 1-Jan-2006 [3662x3] | repeat i length? out-cols [ insert tail lo [list-text 100] ] |
except the first column is 4x the size of the second column. | |
u must resize it somewhere. | |
Henrik 1-Jan-2006 [3665] | it does, because MAIN-COL is normally set to the first column |
Graham 1-Jan-2006 [3666] | how about using a block of widths first off ? Then optimise later on. |
Henrik 1-Jan-2006 [3667] | and it automatically expands it to the total width of the list |
Graham 1-Jan-2006 [3668] | and the width of the list is determined by what ? |
Henrik 1-Jan-2006 [3669x3] | SIZE |
you could: view layout [list-view 600x200] | |
I'll give it a go with a width block... hopefully it won't come back and take revenge later :-) | |
Graham 1-Jan-2006 [3672x2] | try using a height of 350 |
the last row is higher then the others | |
Henrik 1-Jan-2006 [3674x2] | BTW, I'm trying to make it blend in as good as I can with the rest of VID by using the same keywords and functions. |
no, the bottom portion happens to be in the same color as the last row, which isn't entirely at the bottom. that was an easy/quick fix at lists that don't add up height wise. | |
Graham 1-Jan-2006 [3676] | We don't have a resizable bsd licensed multicolumn list ... so carry on :) |
Henrik 1-Jan-2006 [3677x2] | so the background behind the list rows is simply 240.240.240 |
I made it BSD licensed, because maybe someday a thousand years into the future, when the code is good enough, it could be included officially in VID | |
Graham 1-Jan-2006 [3679] | are the row heights adjustable ... or do I have to hard code them ? |
Henrik 1-Jan-2006 [3680] | manual layout again, yes... do you need variable height like in AltME so it fits the text? |
Graham 1-Jan-2006 [3681x2] | No, don't need variable height. |
where to change the row height and font size for the rows ? | |
Henrik 1-Jan-2006 [3683x3] | also by manual layout... I think it's actually easier to create the manual layout if you want to set a lot of parameters such as: list-text 75 right bold font-size 17 which is standard LAYOUT dialect |
then you can set all parameters of the list-text face | |
this is also how LIST in VID works | |
Graham 1-Jan-2006 [3686] | I'll have to read the wikibook again :) |
Henrik 1-Jan-2006 [3687x2] | luckily I managed to write a section on LIST in the wikibook :-) |
LIST is grossly underdocumented in the original VID docs... If I had found it sooner, I could have saved 3-4 weeks of work this summer :-( | |
Graham 1-Jan-2006 [3689x2] | I've got a new version (0.0.9) version of the chat client at http://www.compkarori.com/reb/ which incorporates Henrik's list ( not used yet though ), and Allen has added his link parser :) |
http://www.compkarori.com/reb/pluginchat.rfor those not using IE. | |
Henrik 1-Jan-2006 [3691x2] | version 0.0.12 uploaded. Changes: New: Documentation! New: WIDTHS block to let you determine the widths of the columns Docs are available in makedoc2 format at: http://www.hmkdesign.dk/rebol/list-view.txtand http://www.hmkdesign.dk/rebol/list-view.html Note the new url for the source code for LIST-VIEW is http://www.hmkdesign.dk/rebol/list-view.r |
In the coming versions, I will remove the original demo and rely more on the docs. I might provide an updated demo later when the list view is in a more reliable state. | |
JaimeVargas 1-Jan-2006 [3693x2] | Henrik it will be cool if you can make list view model independant. |
What I mean by this is that list could request a model to give the data to display for the specific row. Instead of enforcing a particular model for the data representation. | |
Henrik 1-Jan-2006 [3695] | hmm... could you give an example? my brain is a bit fried right now :-) |
JaimeVargas 1-Jan-2006 [3696x6] | Right now all *data model* is a block. But you may want to be able to access a file of bytes and some particular fields in that stream. |
So, instead of forcing the conversion of the bytes stream in the block data model. The list view could interrogate the controller to extract the data from the base model. | |
So list-view will say to an intermediary function give me the first row of values. This intermediary function ask the conversion func aka the controller to extract and conver the data from the reall *data model*. The controller returns this to the list-view list-view displays the row of data. | |
So LIST-VIEW will use the MVC paradigm. (Model-View-Controler http://en.wikipedia.org/wiki/Model-view-controller) | |
This way LIST-VIEW is *data-model* independant. Programmer doesn't waste ram or cpu cycles converting all data to from *real data model* to LIST-VIEW expected *data model*. The programmer only need to write the controler part. Which is taylor for efficiency. You only need to extract the values that are visible by the LIST-VIEW at any given moment from the *real data model*. | |
The current list-view is quite nice. ;-) | |
Graham 1-Jan-2006 [3702] | are there any real life rebol widget examples doing this ? |
JaimeVargas 1-Jan-2006 [3703x2] | Nope. One of my problems with VID and RebGUI is that the gfx are to tightly couple with the data representation. So a change in data representation implies a change in the gfx code. |
It think it will be nicer if we could decouple the gfx widget code from data representation making it data model agnostic | |
older newer | first last |