#include <wx/propgrid/property.h>
Helper class for managing choices of wxPropertyGrid properties.
Each entry can have label, value, bitmap, text colour, and background colour.
wxPGChoices uses reference counting, similar to other wxWidgets classes. This means that assignment operator and copy constructor only copy the reference and not the actual data. Use Copy() member function to create a real copy.
Public Types | |
typedef long | ValArrItem |
Public Member Functions | |
wxPGChoices () | |
Default constructor. More... | |
wxPGChoices (const wxPGChoices &a) | |
Copy constructor, uses reference counting. More... | |
wxPGChoices (size_t count, const wxString *labels, const long *values=nullptr) | |
Constructor. More... | |
wxPGChoices (const wxChar **labels, const long *values=nullptr) | |
Constructor overload taking wxChar strings. More... | |
wxPGChoices (const wxArrayString &labels, const wxArrayInt &values=wxArrayInt()) | |
Constructor. More... | |
wxPGChoices (wxPGChoicesData *data) | |
Simple interface constructor. More... | |
~wxPGChoices () | |
Destructor. More... | |
void | Add (size_t count, const wxString *labels, const long *values=nullptr) |
Adds to current. More... | |
void | Add (const wxChar **labels, const long *values=nullptr) |
Adds to current. More... | |
void | Add (const wxArrayString &arr, const wxArrayInt &arrint) |
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts. More... | |
wxPGChoiceEntry & | Add (const wxString &label, int value=wxPG_INVALID_VALUE) |
Adds a single choice item. More... | |
wxPGChoiceEntry & | Add (const wxString &label, const wxBitmap &bitmap, int value=wxPG_INVALID_VALUE) |
Adds a single item, with bitmap. More... | |
wxPGChoiceEntry & | Add (const wxPGChoiceEntry &entry) |
Adds a single item with full entry information. More... | |
wxPGChoiceEntry & | AddAsSorted (const wxString &label, int value=wxPG_INVALID_VALUE) |
Adds a single item, sorted. More... | |
void | Assign (const wxPGChoices &a) |
Assigns choices data, using reference counting. More... | |
void | AssignData (wxPGChoicesData *data) |
Assigns data from another set of choices. More... | |
void | Clear () |
Deletes all items. More... | |
wxPGChoices | Copy () const |
Returns a real copy of the choices. More... | |
void | EnsureData () |
wxPGChoicesId | GetId () const |
Gets an unsigned number identifying this list. More... | |
const wxString & | GetLabel (unsigned int ind) const |
Returns label of item. More... | |
unsigned int | GetCount () const |
Returns number of items. More... | |
int | GetValue (unsigned int ind) const |
Returns value of item. More... | |
wxArrayInt | GetValuesForStrings (const wxArrayString &strings) const |
Returns array of values matching the given strings. More... | |
wxArrayInt | GetIndicesForStrings (const wxArrayString &strings, wxArrayString *unmatched=nullptr) const |
Returns array of indices matching given strings. More... | |
int | Index (const wxString &label) const |
Returns index of item with given label. More... | |
int | Index (int val) const |
Returns index of item with given value. More... | |
wxPGChoiceEntry & | Insert (const wxString &label, int index, int value=wxPG_INVALID_VALUE) |
Inserts a single item. More... | |
wxPGChoiceEntry & | Insert (const wxPGChoiceEntry &entry, int index) |
Inserts a single item with full entry information. More... | |
bool | IsOk () const |
Returns false if this is a constant empty set of choices, which should not be modified. More... | |
const wxPGChoiceEntry & | Item (unsigned int i) const |
Returns item at given index. More... | |
wxPGChoiceEntry & | Item (unsigned int i) |
Returns item at given index. More... | |
void | RemoveAt (size_t nIndex, size_t count=1) |
Removes count items starting at position nIndex. More... | |
void | Set (size_t count, const wxString *labels, const long *values=nullptr) |
Sets contents from lists of strings and values. More... | |
void | Set (const wxChar **labels, const long *values=nullptr) |
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts. More... | |
void | Set (const wxArrayString &labels, const wxArrayInt &values=wxArrayInt()) |
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts. More... | |
void | AllocExclusive () |
Creates exclusive copy of current choices. More... | |
wxPGChoicesData * | GetData () |
Returns data, increases refcount. More... | |
wxPGChoicesData * | GetDataPtr () const |
Returns plain data ptr - no refcounting stuff is done. More... | |
wxPGChoicesData * | ExtractData () |
Changes ownership of data to you. More... | |
wxArrayString | GetLabels () const |
Returns array of choice labels. More... | |
void | operator= (const wxPGChoices &a) |
wxPGChoiceEntry & | operator[] (unsigned int i) |
const wxPGChoiceEntry & | operator[] (unsigned int i) const |
Protected Member Functions | |
void | Init () |
void | Free () |
Protected Attributes | |
wxPGChoicesData * | m_data |
typedef long wxPGChoices::ValArrItem |
wxPGChoices::wxPGChoices | ( | ) |
Default constructor.
wxPGChoices::wxPGChoices | ( | const wxPGChoices & | a | ) |
Copy constructor, uses reference counting.
To create a real copy, use Copy() member function instead.
wxPGChoices::wxPGChoices | ( | size_t | count, |
const wxString * | labels, | ||
const long * | values = nullptr |
||
) |
Constructor.
count | Number of the strings in labels array. |
labels | Labels for choices. |
values | Values for choices. If nullptr, indexes are used. Otherwise must have at least count elements. |
wxPGChoices::wxPGChoices | ( | const wxChar ** | labels, |
const long * | values = nullptr |
||
) |
Constructor overload taking wxChar strings.
This constructor is provided mostly for compatibility, prefer to use one of the other constructor overloads in the new code.
labels | Labels for choices, nullptr-terminated. |
values | Values for choices. If nullptr, indexes are used. Otherwise must have at least the same size as labels. |
wxPGChoices::wxPGChoices | ( | const wxArrayString & | labels, |
const wxArrayInt & | values = wxArrayInt() |
||
) |
Constructor.
labels | Labels for choices. |
values | Values for choices. If empty, indexes are used. Otherwise must have at least the same size as labels. |
wxPGChoices::wxPGChoices | ( | wxPGChoicesData * | data | ) |
Simple interface constructor.
wxPGChoices::~wxPGChoices | ( | ) |
Destructor.
void wxPGChoices::Add | ( | const wxArrayString & | arr, |
const wxArrayInt & | arrint | ||
) |
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
void wxPGChoices::Add | ( | const wxChar ** | labels, |
const long * | values = nullptr |
||
) |
Adds to current.
This overload is provided mostly for compatibility, prefer to use one of the other ones in the new code.
labels | Labels for added choices, nullptr-terminated. |
values | Values for added choices. If empty, relevant entry indexes are used. Otherwise must have at least the same size as labels. |
wxPGChoiceEntry& wxPGChoices::Add | ( | const wxPGChoiceEntry & | entry | ) |
Adds a single item with full entry information.
wxPGChoiceEntry& wxPGChoices::Add | ( | const wxString & | label, |
const wxBitmap & | bitmap, | ||
int | value = wxPG_INVALID_VALUE |
||
) |
Adds a single item, with bitmap.
wxPGChoiceEntry& wxPGChoices::Add | ( | const wxString & | label, |
int | value = wxPG_INVALID_VALUE |
||
) |
Adds a single choice item.
label | Label for added choice. |
value | Value for added choice. If unspecified, index is used. |
void wxPGChoices::Add | ( | size_t | count, |
const wxString * | labels, | ||
const long * | values = nullptr |
||
) |
Adds to current.
If did not have own copies, creates them now. If was empty, identical to set except that creates copies.
count | Number of the strings in labels array. |
labels | Labels for choices. |
values | Values for choices. If nullptr, indexes are used. Otherwise must have at least count elements. |
wxPGChoiceEntry& wxPGChoices::AddAsSorted | ( | const wxString & | label, |
int | value = wxPG_INVALID_VALUE |
||
) |
Adds a single item, sorted.
void wxPGChoices::AllocExclusive | ( | ) |
Creates exclusive copy of current choices.
void wxPGChoices::Assign | ( | const wxPGChoices & | a | ) |
Assigns choices data, using reference counting.
To create a real copy, use Copy() member function instead.
void wxPGChoices::AssignData | ( | wxPGChoicesData * | data | ) |
Assigns data from another set of choices.
void wxPGChoices::Clear | ( | ) |
Deletes all items.
wxPGChoices wxPGChoices::Copy | ( | ) | const |
Returns a real copy of the choices.
void wxPGChoices::EnsureData | ( | ) |
wxPGChoicesData* wxPGChoices::ExtractData | ( | ) |
Changes ownership of data to you.
|
protected |
unsigned int wxPGChoices::GetCount | ( | ) | const |
Returns number of items.
wxPGChoicesData* wxPGChoices::GetData | ( | ) |
Returns data, increases refcount.
wxPGChoicesData* wxPGChoices::GetDataPtr | ( | ) | const |
Returns plain data ptr - no refcounting stuff is done.
wxPGChoicesId wxPGChoices::GetId | ( | ) | const |
Gets an unsigned number identifying this list.
wxArrayInt wxPGChoices::GetIndicesForStrings | ( | const wxArrayString & | strings, |
wxArrayString * | unmatched = nullptr |
||
) | const |
Returns array of indices matching given strings.
Unmatching strings are added to 'unmatched', if not nullptr.
const wxString& wxPGChoices::GetLabel | ( | unsigned int | ind | ) | const |
Returns label of item.
wxArrayString wxPGChoices::GetLabels | ( | ) | const |
Returns array of choice labels.
int wxPGChoices::GetValue | ( | unsigned int | ind | ) | const |
Returns value of item.
wxArrayInt wxPGChoices::GetValuesForStrings | ( | const wxArrayString & | strings | ) | const |
Returns array of values matching the given strings.
Unmatching strings result in wxPG_INVALID_VALUE entry in array.
int wxPGChoices::Index | ( | const wxString & | label | ) | const |
Returns index of item with given label.
int wxPGChoices::Index | ( | int | val | ) | const |
Returns index of item with given value.
|
protected |
wxPGChoiceEntry& wxPGChoices::Insert | ( | const wxPGChoiceEntry & | entry, |
int | index | ||
) |
Inserts a single item with full entry information.
wxPGChoiceEntry& wxPGChoices::Insert | ( | const wxString & | label, |
int | index, | ||
int | value = wxPG_INVALID_VALUE |
||
) |
Inserts a single item.
bool wxPGChoices::IsOk | ( | ) | const |
Returns false if this is a constant empty set of choices, which should not be modified.
wxPGChoiceEntry& wxPGChoices::Item | ( | unsigned int | i | ) |
Returns item at given index.
const wxPGChoiceEntry& wxPGChoices::Item | ( | unsigned int | i | ) | const |
Returns item at given index.
void wxPGChoices::operator= | ( | const wxPGChoices & | a | ) |
wxPGChoiceEntry& wxPGChoices::operator[] | ( | unsigned int | i | ) |
const wxPGChoiceEntry& wxPGChoices::operator[] | ( | unsigned int | i | ) | const |
void wxPGChoices::RemoveAt | ( | size_t | nIndex, |
size_t | count = 1 |
||
) |
Removes count items starting at position nIndex.
void wxPGChoices::Set | ( | const wxArrayString & | labels, |
const wxArrayInt & | values = wxArrayInt() |
||
) |
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
void wxPGChoices::Set | ( | const wxChar ** | labels, |
const long * | values = nullptr |
||
) |
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
void wxPGChoices::Set | ( | size_t | count, |
const wxString * | labels, | ||
const long * | values = nullptr |
||
) |
|
protected |