|
Post by yappy on Jan 31, 2004 14:35:59 GMT
Hi peeps - need some help here.....
Gonna take some time out to nail a few XLnt bugs so if u'll be kind enuff to post any bug reports on this thread it would be a huge help - ta.
cheers
yappy
|
|
|
Post by Prospero on Feb 1, 2004 12:26:32 GMT
Okie, my two: * Tooltip quirkiness - on uncustomised XLnt, no tooltips will appear until you move the pointer over a helptext'd gadget, then that same tooltip will appear anywhere - even outside a GUI window. The tooltip text is updated appropriately when the pointer moves over another helptext'd gadget. * Textbox cursor weirdness (possibly only on small 2-line boxes?) - if you press enter to create a few blank lines, then use backspace to delete them, the cursor gets drawn outside the textbox area. See this screenshot:
|
|
|
Post by binarymoon on Feb 1, 2004 13:01:28 GMT
* Something or other has broken the gui_list_toggle command. You can't seem to toggle list items on and off now. I have attached a sample that shows this happening (or not * Feature request 1 - I want to be able to find out if any gadgets are being used. gui_input_gad would be fine if it reset when a gadget stopped being used. At the moment gui_input_gad stays at its last value even when a gadget is deselected. * Feature request 2 - I have had complaints about selecting items in a list box. Basically users are selecting items that are already selected (double clicking) only for the items to be deselected. I understand why this happens but it would be nice if you could add a toggle that stops this from happening... pretty please
|
|
|
Post by binarymoon on Feb 1, 2004 13:03:52 GMT
Oh yeah - I want multi line text boxes added back in Did you fix the things I emailed you about (tooltips etc) cos I will post them (along with fixes agin) if you want?
|
|
|
Post by RepeatUntil on Feb 1, 2004 13:04:00 GMT
- When there is 2 tabs, and you are entering some text in an input text gad: if you switch to the second tab, you still see the input text from the previous tab. (of course, this bug happens only when the input text is active with the cursor blinking inside it!). (you can test this bug in Cod2Doc)
- There was also a bug in the file requester. I corrected it (see my post on this in this forum), but it may be cool to have this correction in the official release...
|
|
|
Post by Beaker on Feb 1, 2004 14:20:48 GMT
A few things I'd like to see:
A more continous tree list structure, with no differentiation between folders(?) and items.
Programmatic selection of tree list items, with visible feedback: scroll to item, open structure, highlight item.
probly a tricky one but: more windows friendly file requester - respecting Desktop etc.
|
|
|
Post by binarymoon on Feb 1, 2004 15:12:02 GMT
Include "XSTART.BB"
Graphics 800,600,16,2
GUI_GFXSETUP()
;Make a window MyWIN=GUI_WINDOW(-1,-1,300,220,"XLnt ii")
;Set tab area GUI_WIN_TABAREA(MyWin,2,62,290,200)
;Add a Tab Gadget
tab1=GUI_TAB(MyWin,40,1,"Tab 1") tab2=GUI_TAB(MyWin,40,2,"Tab 2")
;Now add some buttons to tab 1 but1=GUI_BUTTON(MyWin,10,10,100,"Hello","",1) but2=GUI_BUTTON(MyWin,10,30,100,"Goodbye","",1)
InputText=gui_input(mywin,10,100,100,"",False,2)
;Open the Window GUI_OPENWIN(MyWin)
;And set active tab
GUI_SETTAB(MyWin,1) GUI_DEBUG=True
While Not FINISH SetBuffer BackBuffer():Cls GUI() If EV_WIN_CLOSE(MYWIN) Or KeyDown(1) FINISH=True EndIf
If ev_gad_release(but1) gui_settext(inputtext,"Hello") If ev_gad_release(but2) gui_settext(inputtext,"Goodbye") Color 255,255,255 : Text 0,16,Handle(GUI_ACTIVEGAD) Flip Wend
End
This is probably related to the text gadget having focus bug mentioned above.
|
|
|
Post by yappy on Feb 11, 2004 19:03:50 GMT
thanks guys - am working on these right now. Nothing too serious wrong by the looks of things....
|
|
|
Post by yappy on Feb 17, 2004 19:43:55 GMT
binarymoon... fixed list toggle function could you explain this a bit further please propsero... tooltips fixed, but can't get the textbox bug to happen - are you using the demo version by any chance? repeatuntil... fixed tabs/input bug beaks... see wot you mean about a more unified approach to tree functions, but changing it at this late stage might mean alot of re-writes for you lot .... i'll give it a thought tho, there may be a way of adding it seamlessly auto-show of selected items - added. Just got to figure out the auto-scroll bit, at the moment it just opens all parent nodes and re-draws the tree.
|
|
|
Post by Prospero on Feb 17, 2004 20:06:18 GMT
99% sure that I'm using the latest update version (1.3). I don't particularly want to reinstall to check because I've customised some functions and didn't keep track of the changes...
|
|
|
Post by yappy on Feb 17, 2004 20:20:31 GMT
hmm - just that i noticed that ur bottom scroll bar was missing from the text box. Could you post the textbox gadget line of code so i can make one exactly the same size - ta
|
|
|
Post by binarymoon on Feb 17, 2004 20:31:10 GMT
At the moment if you select an item in a list box then it deselects that item. I don't want this to happen. Maybe only make it happen if you have the number of selectable items set to greater than 1.
|
|
|
Post by Prospero on Feb 19, 2004 11:36:38 GMT
Here you go... this is what I use to create the textbox above: Global txtHText = GUI_TextBox(winDungArea,76,114,200,34,False,0,1,"Text to be displayed while in this field ")
|
|
|
Post by grovesy on Sept 2, 2004 12:29:35 GMT
You get an error if the cursor is in an empty textbox or textarea and you press the right arror key. I haven't tried pressing other arrow keys yet!
|
|
|
Post by GameKing on Jan 30, 2005 19:38:02 GMT
Not sure if this is a bug or if it would be feature to add!
When changing the windows colors the min, max, close and bottom Drag Handle do not change colors.
If not a bug could you please add this to next version.
Enjoy
|
|