ReadOnly ComboBoxes in dlgSelectConnection.cpp - Mailing list pgadmin-hackers

From Steffen Kuhn
Subject ReadOnly ComboBoxes in dlgSelectConnection.cpp
Date
Msg-id 4C70F259.6090709@kuhnsteffen.de
Whole thread Raw
Responses Re: ReadOnly ComboBoxes in dlgSelectConnection.cpp  (Guillaume Lelarge <guillaume@lelarge.info>)
List pgadmin-hackers
Hi ,

if pgAdmin is startet with option 'S' and there are no QuickConnect
informations in the settings
the readonly comboboxes make no sense.

I tried following code:
if (form == NULL)
{
         cbServer->SetValue(settings->Read(wxT("QuickConnect/server"),
wxEmptyString));
         if (cbServer->IsEmpty())
             cbServer->SetWindowStyleFlag(cbServer->GetWindowStyleFlag()
& ~wxCB_READONLY);

cbDatabase->SetValue(settings->Read(wxT("QuickConnect/database"),
wxEmptyString));
         if (cbDatabase->IsEmpty())

cbDatabase->SetWindowStyleFlag(cbDatabase->GetWindowStyleFlag() &
~wxCB_READONLY);

cbUsername->SetValue(settings->Read(wxT("QuickConnect/username"),
wxEmptyString));
}

but the combobox didn't change to be editable.
So find another patch attached.
Also fixed height of username combobox.

Regards
Steffen

Attachment

pgadmin-hackers by date:

Previous
From: "pgAdmin Trac"
Date:
Subject: Re: [pgAdmin III] #227: Add the new vacuum and analyze counters of pg_stat_all_tables on the statistics tab
Next
From: Steffen Kuhn
Date:
Subject: Fwd: dlgEditGridOptions