From: | Quan Zongliang <quanzongliang(at)gmail(dot)com> |
---|---|
To: | "Dave Page" <dpage(at)pgadmin(dot)org> |
Cc: | "ivo nascimento" <iannsp(at)gmail(dot)com>, pgadmin-hackers <pgadmin-hackers(at)postgresql(dot)org> |
Subject: | Re: about new module to software |
Date: | 2009-01-13 06:03:17 |
Message-ID: | 20090113145735.1393.4125B4E5@gmail.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgadmin-hackers |
> - 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.
-----------------------------------------------
Quan Zongliang
quanzongliang(at)gmail(dot)com
CIT Japan: http://www.cit.co.jp
CIT China: http://www.citbj.com.cn
From | Date | Subject | |
---|---|---|---|
Next Message | Quan Zongliang | 2009-01-13 09:25:49 | Patch: database version check |
Previous Message | Hiroshi Saito | 2009-01-13 05:42:03 | Re: Position and size problem of SQL Dialog |