Re: about new module to software

Поиск
Список
Период
Сортировка
От Dave Page
Тема Re: about new module to software
Дата
Msg-id 937d27e10901130251y77027003lc161a91be7a3d39a@mail.gmail.com
обсуждение исходный текст
Ответ на Re: about new module to software  (Quan Zongliang <quanzongliang@gmail.com>)
Ответы Re: about new module to software  (Quan Zongliang <quanzongliang@gmail.com>)
Список 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 по дате отправления:

Предыдущее
От: Quan Zongliang
Дата:
Сообщение: Patch: database version check
Следующее
От: "Dave Page"
Дата:
Сообщение: Re: More on sizing