Page 1 of 1

PB 572 b1: IDE Formdesigner display problem setting parent

Posted: Sun Feb 02, 2020 5:48 pm
by Kurzer
PB 572 b1 x64 / Windows 7 x64 SP1 classic design

IDE / formdesigner: There is a small display problem in the assignment dialog for setting a parent object. At least for the german version of PB.

Image

Greetings
Kurzer

Re: PB 572 b1: IDE Formdesigner display problem setting pare

Posted: Sun Feb 02, 2020 7:54 pm
by Sicro
I have adjusted the size of the gadgets and the window.
Under Linux, it looks good for me now. Unfortunately I can't test it under Windows.

Before the fix:
Image

After the fix:
Image

PR on GitHub: https://github.com/fantaisie-software/purebasic/pull/50

Re: PB 572 b1: IDE Formdesigner display problem setting pare

Posted: Sat Mar 07, 2020 3:03 pm
by Kurzer
PB 5.72 b2 x64:

It looks better now, but have much free space to the left.
Also the height of the comboxboxes is to big. Maybe its caused by the DPI adjusting within the FormDesigner? My desktopscale is set to 125%.

Image

Re: PB 572 b1: IDE Formdesigner display problem setting pare

Posted: Mon Mar 09, 2020 11:57 pm
by Sicro
I think it is better to always use the Dialog-Lib when it comes to cross-platform GUI creation.
In the next days I will create the window using the Dialog-Lib and post the code here for testing.

Re: PB 572 b1: IDE Formdesigner display problem setting pare

Posted: Wed Mar 11, 2020 6:55 pm
by Sicro
How it looks now under my Linux:
Image


Here is the code for testing. I hope the window always looks good now.

Code: Select all

Runtime Enumeration Window
  #WINDOW_Form_Parent
EndEnumeration

Runtime Enumeration Gadget
  #GADGET_Form_Parent_Select
  #GADGET_Form_Parent_SelectItem
  #GADGET_Form_Parent_Cancel
  #GADGET_Form_Parent_OK
EndEnumeration

XML$ = "<?xml version='1.0' encoding='UTF-8'?>" +
"<dialogs>" +
"  <window flags='#PB_Window_SystemMenu | #PB_Window_ScreenCentered' text='Übergeordnet' id='#WINDOW_Form_Parent'>" +
"    <vbox spacing='10'>" +
"      <empty/>" +
"      <gridbox colspacing='15' rowspacing='15' columns='4'>" +
"        <empty/>" +
"        <text text='Übergeordnet' flags='#PB_Text_Right'/>" +
"        <combobox height='22' width='250' id='#GADGET_Form_Parent_Select'/>" +
"        <empty/>" +
"        <empty/>" +
"        <text text='Übergeordnetes Element' flags='#PB_Text_Right'/>" +
"        <combobox height='22' width='250' id='#GADGET_Form_Parent_SelectItem'/>" +
"        <empty/>" +
"      </gridbox>" +
"      <empty/>" +
"      <hbox>" +
"        <empty/>" +
"        <button text='Abbruch' id='#GADGET_Form_Parent_Cancel'/>" +
"        <button text='OK' id='#GADGET_Form_Parent_OK'/>" +
"        <empty/>" +
"      </hbox>" +
"      <empty/>" +
"    </vbox>" +
"  </window>" +
"</dialogs>"

If ParseXML(0, XML$) And XMLStatus(0) = #PB_XML_Success
  
  If CreateDialog(0) And OpenXMLDialog(0, 0, "")
    
    For i = 0 To 2
      AddGadgetItem(#GADGET_Form_Parent_Select, -1, "Select_" + i)
      AddGadgetItem(#GADGET_Form_Parent_SelectItem, -1, "SelectItem_" + i)
    Next
    
    Repeat
      Event = WaitWindowEvent()
    Until Event = #PB_Event_CloseWindow
    
  Else
    Debug "Dialog error: " + DialogError(0)
  EndIf
Else
  Debug "XML error: " + XMLError(0) + " (Line: " + XMLErrorLine(0) + ")"
EndIf

Re: PB 572 b1: IDE Formdesigner display problem setting pare

Posted: Thu Mar 19, 2020 9:43 am
by Kurzer
Sorry Sicro,
I have unfortunately only seen your PN today.
The dialogue looks very good on my system. Image

Image

Kurzer

Re: PB 572 b1: IDE Formdesigner display problem setting pare

Posted: Fri Mar 20, 2020 7:39 pm
by Kurzer
In the current beta 3, the dialogue unfortunately looks worse again.

There are no line breaks in the labels, but the combo boxes are too high again on my 125% scaled system and also the left border to the fixed frame is too wide.

Image

According to the beta 3 announcement this bug should be fixed:
- Fix display errors in window '#WINDOW_Form_Parent' of the FormDesigner (Sicro) https://github.com/fantaisie-software/purebasic/pull/50
Greetings,
"Shorty"

Re: PB 572 b1: IDE Formdesigner display problem setting pare

Posted: Fri Mar 20, 2020 8:28 pm
by Sicro
kurzer wrote:In the current beta 3, the dialogue unfortunately looks worse again.
I have not yet found the time to integrate the Dialog-Lib variant. Tomorrow I will have time for it.
kurzer wrote:According to the beta 3 announcement this bug should be fixed:
- Fix display errors in window '#WINDOW_Form_Parent' of the FormDesigner (Sicro) https://github.com/fantaisie-software/purebasic/pull/50
The mentioned pull request on GitHub is old and has already been integrated in Beta 2.

Re: PB 572 b1: IDE Formdesigner display problem setting pare

Posted: Fri Mar 20, 2020 10:25 pm
by Kurzer
Sicro wrote:The mentioned pull request on GitHub is old and has already been integrated in Beta 2.
Oh okay, thank you for clarify this. :)

Re: PB 572 b1: IDE Formdesigner display problem setting pare

Posted: Sat Mar 21, 2020 1:23 pm
by Sicro
I have now integrated the changes and created a new pull request:
https://github.com/fantaisie-software/purebasic/pull/83

Re: PB 572 b1: IDE Formdesigner display problem setting pare

Posted: Sat Mar 21, 2020 1:38 pm
by Kurzer
Wow, that was fast. Image
Thank you very much for your contribution, Sicro.

By the way: Do you know if the proposal on GitHub to make the PureBasic IDE independent from the necessary C compilations is already being worked on?
I haven't followed it up.

Stay well!
Kurzer

Re: PB 572 b1: IDE Formdesigner display problem setting pare

Posted: Tue Mar 24, 2020 7:32 pm
by Sicro
kurzer wrote:By the way: Do you know if the proposal on GitHub to make the PureBasic IDE independent from the necessary C compilations is already being worked on?
I haven't followed it up.
The work is in progress. More off-topic via PN, please.