Re: about new module to software - Mailing list pgadmin-hackers

From Dave Page
Subject Re: about new module to software
Date
Msg-id 937d27e10901130251y77027003lc161a91be7a3d39a@mail.gmail.com
Whole thread Raw
In response to Re: about new module to software  (Quan Zongliang <quanzongliang@gmail.com>)
Responses Re: about new module to software  (Quan Zongliang <quanzongliang@gmail.com>)
List pgadmin-hackers
On Tue, Jan 13, 2009 at 6:03 AM, Quan Zongliang <quanzongliang@gmail.com> wrote:
>> - Write a custom grid cell editor for use with Enum columns. When editing such
>>   a column, the user should be presented with a combobox containing the enum
>>   values to choose from.
>
> new class had been defined with import module:
>
> class pgGridCellChioceEditor : public wxGridCellChoiceEditor
> {
> public:
>    void Clear() { m_choices.Empty(); }
>    void SetItems(const wxArrayString& items) { m_choices = items; }
>    int Append(const wxString& item) { m_choices.Add(item); return m_choices.Count()-1; }
> };
>
> It's really simple, just for easy to be operated.
> I did yesterday, without test.

Yeah - I don't think that one is too difficult. There's more to it
than you've shown of course - there's code to populate the lists and
to setup the columns to use them for example.


--
Dave Page
EnterpriseDB UK:   http://www.enterprisedb.com

pgadmin-hackers by date:

Previous
From: Quan Zongliang
Date:
Subject: Patch: database version check
Next
From: "Dave Page"
Date:
Subject: Re: More on sizing